keyfactor

package
v1.0.2 Latest Latest
Warning

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

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

Documentation ¶

Index ¶

Constants ¶

This section is empty.

Variables ¶

View Source
var (
	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")

	EnvCommandUsername = "KEYFACTOR_USERNAME"

	EnvCommandPassword = "KEYFACTOR_PASSWORD"
)

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 {
	AgentApi *AgentApiService

	AgentBlueprintApi *AgentBlueprintApiService

	AgentPoolApi *AgentPoolApiService

	AuditLogApi *AuditLogApiService

	CSRGenerationApi *CSRGenerationApiService

	CertificateApi *CertificateApiService

	CertificateAuthorityApi *CertificateAuthorityApiService

	CertificateCollectionApi *CertificateCollectionApiService

	CertificateStoreApi *CertificateStoreApiService

	CertificateStoreContainerApi *CertificateStoreContainerApiService

	CertificateStoreTypeApi *CertificateStoreTypeApiService

	CustomJobTypeApi *CustomJobTypeApiService

	DeniedAlertApi *DeniedAlertApiService

	EnrollmentApi *EnrollmentApiService

	ExpirationAlertApi *ExpirationAlertApiService

	IssuedAlertApi *IssuedAlertApiService

	KeyApi *KeyApiService

	KeyRotationAlertApi *KeyRotationAlertApiService

	LicenseApi *LicenseApiService

	LogonApi *LogonApiService

	MacEnrollmentApi *MacEnrollmentApiService

	MetadataFieldApi *MetadataFieldApiService

	MonitoringApi *MonitoringApiService

	OrchestratorJobApi *OrchestratorJobApiService

	PAMProviderApi *PAMProviderApiService

	PendingAlertApi *PendingAlertApiService

	ReportsApi *ReportsApiService

	SMTPApi *SMTPApiService

	SecurityApi *SecurityApiService

	SecurityRolePermissionsApi *SecurityRolePermissionsApiService

	SecurityRolesApi *SecurityRolesApiService

	ServerApi *ServerApiService

	ServerGroupApi *ServerGroupApiService

	ServiceAccountApi *ServiceAccountApiService

	SslApi *SslApiService

	StatusApi *StatusApiService

	TemplateApi *TemplateApiService

	UserApi *UserApiService

	WorkflowApi *WorkflowApiService

	WorkflowDefinitionApi *WorkflowDefinitionApiService

	WorkflowInstanceApi *WorkflowInstanceApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Keyfactor-v1 API vv1 In most cases there should be only one, shared, APIClient.

func NewAPIClient ¶

func NewAPIClient(cfg *Configuration) *APIClient

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 AgentApiService ¶

type AgentApiService service

AgentApiService AgentApi service

func (*AgentApiService) AgentApprove ¶

AgentApprove Approve a list of agents

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentApproveRequest

func (*AgentApiService) AgentApproveExecute ¶

func (a *AgentApiService) AgentApproveExecute(r ApiAgentApproveRequest) (*http.Response, error)

Execute executes the request

func (*AgentApiService) AgentDisapprove ¶

func (a *AgentApiService) AgentDisapprove(ctx context.Context) ApiAgentDisapproveRequest

AgentDisapprove Disapprove a list of agents

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentDisapproveRequest

func (*AgentApiService) AgentDisapproveExecute ¶

func (a *AgentApiService) AgentDisapproveExecute(r ApiAgentDisapproveRequest) (*http.Response, error)

Execute executes the request

func (*AgentApiService) AgentFetchLogs ¶

func (a *AgentApiService) AgentFetchLogs(ctx context.Context, id string) ApiAgentFetchLogsRequest

AgentFetchLogs Schedules a job on the agent to retrieve log files

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Guid Id of the agent to schedule the job for.
@return ApiAgentFetchLogsRequest

func (*AgentApiService) AgentFetchLogsExecute ¶

func (a *AgentApiService) AgentFetchLogsExecute(r ApiAgentFetchLogsRequest) (*http.Response, error)

Execute executes the request

func (*AgentApiService) AgentGetAgentDetail ¶

func (a *AgentApiService) AgentGetAgentDetail(ctx context.Context, id string) ApiAgentGetAgentDetailRequest

AgentGetAgentDetail Returns details for a single agent, specified by ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Agent Id to Search
@return ApiAgentGetAgentDetailRequest

func (*AgentApiService) AgentGetAgentDetailExecute ¶

Execute executes the request

@return KeyfactorApiModelsOrchestratorsAgentResponse

func (*AgentApiService) AgentGetAgents ¶

AgentGetAgents Returns all agents according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentGetAgentsRequest

func (*AgentApiService) AgentGetAgentsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsOrchestratorsAgentResponse

func (*AgentApiService) AgentReset0 ¶

AgentReset0 Reset a list of agents

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentReset0Request

func (*AgentApiService) AgentReset0Execute ¶

func (a *AgentApiService) AgentReset0Execute(r ApiAgentReset0Request) (*http.Response, error)

Execute executes the request

func (*AgentApiService) AgentReset1 ¶

AgentReset1 Reset an agent to a new state

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Guid Id of Agent to reset
@return ApiAgentReset1Request

func (*AgentApiService) AgentReset1Execute ¶

func (a *AgentApiService) AgentReset1Execute(r ApiAgentReset1Request) (*http.Response, error)

Execute executes the request

func (*AgentApiService) AgentSetAuthCertificateReenrollment ¶

func (a *AgentApiService) AgentSetAuthCertificateReenrollment(ctx context.Context) ApiAgentSetAuthCertificateReenrollmentRequest

AgentSetAuthCertificateReenrollment Update the AuthCertificateReenrollment value for an agent to request or require (or unset the request) the agent to enroll for a new client authentication certificate on its next registration.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentSetAuthCertificateReenrollmentRequest

func (*AgentApiService) AgentSetAuthCertificateReenrollmentExecute ¶

Execute executes the request

@return KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse

type AgentBlueprintApiService ¶

type AgentBlueprintApiService service

AgentBlueprintApiService AgentBlueprintApi service

func (*AgentBlueprintApiService) AgentBlueprintApplyBlueprint ¶

AgentBlueprintApplyBlueprint Applies the selected agent blueprint to the provided agents

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentBlueprintApplyBlueprintRequest

func (*AgentBlueprintApiService) AgentBlueprintApplyBlueprintExecute ¶

func (a *AgentBlueprintApiService) AgentBlueprintApplyBlueprintExecute(r ApiAgentBlueprintApplyBlueprintRequest) (*http.Response, error)

Execute executes the request

func (*AgentBlueprintApiService) AgentBlueprintDeleteBlueprint ¶

AgentBlueprintDeleteBlueprint Deletes an agent blueprint by its Keyfactor identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor agent blueprint identifier (GUID)
@return ApiAgentBlueprintDeleteBlueprintRequest

func (*AgentBlueprintApiService) AgentBlueprintDeleteBlueprintExecute ¶

func (a *AgentBlueprintApiService) AgentBlueprintDeleteBlueprintExecute(r ApiAgentBlueprintDeleteBlueprintRequest) (*http.Response, error)

Execute executes the request

func (*AgentBlueprintApiService) AgentBlueprintGenerateBlueprint ¶

AgentBlueprintGenerateBlueprint Generates an agent blueprint from the provided agents

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentBlueprintGenerateBlueprintRequest

func (*AgentBlueprintApiService) AgentBlueprintGenerateBlueprintExecute ¶

Execute executes the request

@return KeyfactorApiModelsOrchestratorsAgentBlueprintResponse

func (*AgentBlueprintApiService) AgentBlueprintGetAgentBlueprint ¶

func (a *AgentBlueprintApiService) AgentBlueprintGetAgentBlueprint(ctx context.Context, id string) ApiAgentBlueprintGetAgentBlueprintRequest

AgentBlueprintGetAgentBlueprint Returns an agent blueprint according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Returns a single agent blueprint associated with the provided id
@return ApiAgentBlueprintGetAgentBlueprintRequest

func (*AgentBlueprintApiService) AgentBlueprintGetAgentBlueprintExecute ¶

Execute executes the request

@return KeyfactorApiModelsOrchestratorsAgentBlueprintResponse

func (*AgentBlueprintApiService) AgentBlueprintGetAgentBlueprints ¶

AgentBlueprintGetAgentBlueprints Returns all agent blueprints according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentBlueprintGetAgentBlueprintsRequest

func (*AgentBlueprintApiService) AgentBlueprintGetAgentBlueprintsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsOrchestratorsAgentBlueprintResponse

func (*AgentBlueprintApiService) AgentBlueprintGetBlueprintJobs ¶

func (a *AgentBlueprintApiService) AgentBlueprintGetBlueprintJobs(ctx context.Context, id string) ApiAgentBlueprintGetBlueprintJobsRequest

AgentBlueprintGetBlueprintJobs Gets the agent blueprint scheduled jobs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiAgentBlueprintGetBlueprintJobsRequest

func (*AgentBlueprintApiService) AgentBlueprintGetBlueprintJobsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse

func (*AgentBlueprintApiService) AgentBlueprintGetBlueprintStores ¶

func (a *AgentBlueprintApiService) AgentBlueprintGetBlueprintStores(ctx context.Context, id string) ApiAgentBlueprintGetBlueprintStoresRequest

AgentBlueprintGetBlueprintStores Gets the agent blueprint certificate stores

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiAgentBlueprintGetBlueprintStoresRequest

func (*AgentBlueprintApiService) AgentBlueprintGetBlueprintStoresExecute ¶

Execute executes the request

@return []KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse

type AgentPoolApiService ¶

type AgentPoolApiService service

AgentPoolApiService AgentPoolApi service

func (*AgentPoolApiService) AgentPoolCreateAgentPool ¶

func (a *AgentPoolApiService) AgentPoolCreateAgentPool(ctx context.Context) ApiAgentPoolCreateAgentPoolRequest

AgentPoolCreateAgentPool Creates an agent pool with the provided properties

- DiscoverAgentsCount = An integer specifying the number of agents that can perform discovery jobs - MonitorAgentsCount = An integer specifying the number of agents that can perform monitoring jobs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentPoolCreateAgentPoolRequest

func (*AgentPoolApiService) AgentPoolCreateAgentPoolExecute ¶

Execute executes the request

@return ModelsAgentsAgentPool

func (*AgentPoolApiService) AgentPoolDeleteAgentPool ¶

func (a *AgentPoolApiService) AgentPoolDeleteAgentPool(ctx context.Context, id string) ApiAgentPoolDeleteAgentPoolRequest

AgentPoolDeleteAgentPool Deletes the agent pool associated with the provided id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier (GUID) of the agent pool
@return ApiAgentPoolDeleteAgentPoolRequest

func (*AgentPoolApiService) AgentPoolDeleteAgentPoolExecute ¶

func (a *AgentPoolApiService) AgentPoolDeleteAgentPoolExecute(r ApiAgentPoolDeleteAgentPoolRequest) (*http.Response, error)

Execute executes the request

func (*AgentPoolApiService) AgentPoolGetAgentPoolById ¶

func (a *AgentPoolApiService) AgentPoolGetAgentPoolById(ctx context.Context, id string) ApiAgentPoolGetAgentPoolByIdRequest

AgentPoolGetAgentPoolById Returns a single agent pool associated with the provided id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor (GUID) identifier of the agent pool
@return ApiAgentPoolGetAgentPoolByIdRequest

func (*AgentPoolApiService) AgentPoolGetAgentPoolByIdExecute ¶

Execute executes the request

@return ModelsAgentsAgentPool

func (*AgentPoolApiService) AgentPoolGetAgentPools ¶

AgentPoolGetAgentPools Returns all agent pools according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentPoolGetAgentPoolsRequest

func (*AgentPoolApiService) AgentPoolGetAgentPoolsExecute ¶

Execute executes the request

@return []ModelsAgentsAgentPool

func (*AgentPoolApiService) AgentPoolGetDefaultAgentPoolAgents ¶

func (a *AgentPoolApiService) AgentPoolGetDefaultAgentPoolAgents(ctx context.Context) ApiAgentPoolGetDefaultAgentPoolAgentsRequest

AgentPoolGetDefaultAgentPoolAgents Returns all agents for the default agent pool

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentPoolGetDefaultAgentPoolAgentsRequest

func (*AgentPoolApiService) AgentPoolGetDefaultAgentPoolAgentsExecute ¶

Execute executes the request

@return []ModelsAgentsAgentPoolAgent

func (*AgentPoolApiService) AgentPoolUpdateAgentPool ¶

func (a *AgentPoolApiService) AgentPoolUpdateAgentPool(ctx context.Context) ApiAgentPoolUpdateAgentPoolRequest

AgentPoolUpdateAgentPool Updates an existing agent pool with the provided properties

- DiscoverAgentsCount = An integer specifying the number of agents that can perform discovery jobs - MonitorAgentsCount = An integer specifying the number of agents that can perform monitoring jobs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAgentPoolUpdateAgentPoolRequest

func (*AgentPoolApiService) AgentPoolUpdateAgentPoolExecute ¶

Execute executes the request

@return ModelsAgentsAgentPool

type ApiAgentApproveRequest ¶

type ApiAgentApproveRequest struct {
	ApiService *AgentApiService
	// contains filtered or unexported fields
}

func (ApiAgentApproveRequest) AgentIds ¶

func (r ApiAgentApproveRequest) AgentIds(agentIds []string) ApiAgentApproveRequest

List of Agent Ids to Approve

func (ApiAgentApproveRequest) Execute ¶

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

func (ApiAgentApproveRequest) XKeyfactorApiVersion ¶

func (r ApiAgentApproveRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentApproveRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentApproveRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentApproveRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentApproveRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentBlueprintApplyBlueprintRequest ¶

type ApiAgentBlueprintApplyBlueprintRequest struct {
	ApiService *AgentBlueprintApiService
	// contains filtered or unexported fields
}

func (ApiAgentBlueprintApplyBlueprintRequest) AgentIds ¶

Agents to apply the blueprints to

func (ApiAgentBlueprintApplyBlueprintRequest) Execute ¶

func (ApiAgentBlueprintApplyBlueprintRequest) TemplateId ¶

Agent blueprint to apply to the agents

func (ApiAgentBlueprintApplyBlueprintRequest) XKeyfactorApiVersion ¶

func (r ApiAgentBlueprintApplyBlueprintRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentBlueprintApplyBlueprintRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentBlueprintApplyBlueprintRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentBlueprintApplyBlueprintRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentBlueprintApplyBlueprintRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentBlueprintDeleteBlueprintRequest ¶

type ApiAgentBlueprintDeleteBlueprintRequest struct {
	ApiService *AgentBlueprintApiService
	// contains filtered or unexported fields
}

func (ApiAgentBlueprintDeleteBlueprintRequest) Execute ¶

func (ApiAgentBlueprintDeleteBlueprintRequest) XKeyfactorApiVersion ¶

func (r ApiAgentBlueprintDeleteBlueprintRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentBlueprintDeleteBlueprintRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentBlueprintDeleteBlueprintRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentBlueprintDeleteBlueprintRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentBlueprintDeleteBlueprintRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentBlueprintGenerateBlueprintRequest ¶

type ApiAgentBlueprintGenerateBlueprintRequest struct {
	ApiService *AgentBlueprintApiService
	// contains filtered or unexported fields
}

func (ApiAgentBlueprintGenerateBlueprintRequest) AgentId ¶

Agent to generate a blueprint from

func (ApiAgentBlueprintGenerateBlueprintRequest) Execute ¶

func (ApiAgentBlueprintGenerateBlueprintRequest) Name ¶

Name of the new agent blueprint

func (ApiAgentBlueprintGenerateBlueprintRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiAgentBlueprintGenerateBlueprintRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentBlueprintGenerateBlueprintRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentBlueprintGenerateBlueprintRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentBlueprintGetAgentBlueprintRequest ¶

type ApiAgentBlueprintGetAgentBlueprintRequest struct {
	ApiService *AgentBlueprintApiService
	// contains filtered or unexported fields
}

func (ApiAgentBlueprintGetAgentBlueprintRequest) Execute ¶

func (ApiAgentBlueprintGetAgentBlueprintRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiAgentBlueprintGetAgentBlueprintRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentBlueprintGetAgentBlueprintRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentBlueprintGetAgentBlueprintRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentBlueprintGetAgentBlueprintsRequest ¶

type ApiAgentBlueprintGetAgentBlueprintsRequest struct {
	ApiService *AgentBlueprintApiService
	// contains filtered or unexported fields
}

func (ApiAgentBlueprintGetAgentBlueprintsRequest) Execute ¶

func (ApiAgentBlueprintGetAgentBlueprintsRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiAgentBlueprintGetAgentBlueprintsRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiAgentBlueprintGetAgentBlueprintsRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiAgentBlueprintGetAgentBlueprintsRequest) PqSortField ¶

Field by which the results should be sorted (OperationStart, OperationEnd, UserName)

func (ApiAgentBlueprintGetAgentBlueprintsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiAgentBlueprintGetAgentBlueprintsRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentBlueprintGetAgentBlueprintsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentBlueprintGetAgentBlueprintsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentBlueprintGetBlueprintJobsRequest ¶

type ApiAgentBlueprintGetBlueprintJobsRequest struct {
	ApiService *AgentBlueprintApiService
	// contains filtered or unexported fields
}

func (ApiAgentBlueprintGetBlueprintJobsRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiAgentBlueprintGetBlueprintJobsRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiAgentBlueprintGetBlueprintJobsRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiAgentBlueprintGetBlueprintJobsRequest) PqSortField ¶

Field by which the results should be sorted (OperationStart, OperationEnd, UserName)

func (ApiAgentBlueprintGetBlueprintJobsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiAgentBlueprintGetBlueprintJobsRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentBlueprintGetBlueprintJobsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentBlueprintGetBlueprintJobsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentBlueprintGetBlueprintStoresRequest ¶

type ApiAgentBlueprintGetBlueprintStoresRequest struct {
	ApiService *AgentBlueprintApiService
	// contains filtered or unexported fields
}

func (ApiAgentBlueprintGetBlueprintStoresRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiAgentBlueprintGetBlueprintStoresRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiAgentBlueprintGetBlueprintStoresRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiAgentBlueprintGetBlueprintStoresRequest) PqSortField ¶

Field by which the results should be sorted (OperationStart, OperationEnd, UserName)

func (ApiAgentBlueprintGetBlueprintStoresRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiAgentBlueprintGetBlueprintStoresRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentBlueprintGetBlueprintStoresRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentBlueprintGetBlueprintStoresRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentDisapproveRequest ¶

type ApiAgentDisapproveRequest struct {
	ApiService *AgentApiService
	// contains filtered or unexported fields
}

func (ApiAgentDisapproveRequest) AgentIds ¶

List of Agent Ids to Disapprove

func (ApiAgentDisapproveRequest) Execute ¶

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

func (ApiAgentDisapproveRequest) XKeyfactorApiVersion ¶

func (r ApiAgentDisapproveRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentDisapproveRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentDisapproveRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentDisapproveRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentDisapproveRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentFetchLogsRequest ¶

type ApiAgentFetchLogsRequest struct {
	ApiService *AgentApiService
	// contains filtered or unexported fields
}

func (ApiAgentFetchLogsRequest) Execute ¶

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

func (ApiAgentFetchLogsRequest) XKeyfactorApiVersion ¶

func (r ApiAgentFetchLogsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentFetchLogsRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentFetchLogsRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentFetchLogsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentFetchLogsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentGetAgentDetailRequest ¶

type ApiAgentGetAgentDetailRequest struct {
	ApiService *AgentApiService
	// contains filtered or unexported fields
}

func (ApiAgentGetAgentDetailRequest) Execute ¶

func (ApiAgentGetAgentDetailRequest) XKeyfactorApiVersion ¶

func (r ApiAgentGetAgentDetailRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentGetAgentDetailRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentGetAgentDetailRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentGetAgentDetailRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentGetAgentDetailRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentGetAgentsRequest ¶

type ApiAgentGetAgentsRequest struct {
	ApiService *AgentApiService
	// contains filtered or unexported fields
}

func (ApiAgentGetAgentsRequest) Execute ¶

func (ApiAgentGetAgentsRequest) PqPageReturned ¶

func (r ApiAgentGetAgentsRequest) PqPageReturned(pqPageReturned int32) ApiAgentGetAgentsRequest

The current page within the result set to be returned

func (ApiAgentGetAgentsRequest) PqQueryString ¶

func (r ApiAgentGetAgentsRequest) PqQueryString(pqQueryString string) ApiAgentGetAgentsRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiAgentGetAgentsRequest) PqReturnLimit ¶

func (r ApiAgentGetAgentsRequest) PqReturnLimit(pqReturnLimit int32) ApiAgentGetAgentsRequest

Maximum number of records to be returned in a single call

func (ApiAgentGetAgentsRequest) PqSortAscending ¶

func (r ApiAgentGetAgentsRequest) PqSortAscending(pqSortAscending int32) ApiAgentGetAgentsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiAgentGetAgentsRequest) PqSortField ¶

func (r ApiAgentGetAgentsRequest) PqSortField(pqSortField string) ApiAgentGetAgentsRequest

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiAgentGetAgentsRequest) XKeyfactorApiVersion ¶

func (r ApiAgentGetAgentsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentGetAgentsRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentGetAgentsRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentGetAgentsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentGetAgentsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentPoolCreateAgentPoolRequest ¶

type ApiAgentPoolCreateAgentPoolRequest struct {
	ApiService *AgentPoolApiService
	// contains filtered or unexported fields
}

func (ApiAgentPoolCreateAgentPoolRequest) AgentPool ¶

Agent pool properties to be applied to the new pool

func (ApiAgentPoolCreateAgentPoolRequest) Execute ¶

func (ApiAgentPoolCreateAgentPoolRequest) XKeyfactorApiVersion ¶

func (r ApiAgentPoolCreateAgentPoolRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentPoolCreateAgentPoolRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentPoolCreateAgentPoolRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentPoolCreateAgentPoolRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentPoolCreateAgentPoolRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentPoolDeleteAgentPoolRequest ¶

type ApiAgentPoolDeleteAgentPoolRequest struct {
	ApiService *AgentPoolApiService
	// contains filtered or unexported fields
}

func (ApiAgentPoolDeleteAgentPoolRequest) Execute ¶

func (ApiAgentPoolDeleteAgentPoolRequest) XKeyfactorApiVersion ¶

func (r ApiAgentPoolDeleteAgentPoolRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentPoolDeleteAgentPoolRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentPoolDeleteAgentPoolRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentPoolDeleteAgentPoolRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentPoolDeleteAgentPoolRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentPoolGetAgentPoolByIdRequest ¶

type ApiAgentPoolGetAgentPoolByIdRequest struct {
	ApiService *AgentPoolApiService
	// contains filtered or unexported fields
}

func (ApiAgentPoolGetAgentPoolByIdRequest) Execute ¶

func (ApiAgentPoolGetAgentPoolByIdRequest) XKeyfactorApiVersion ¶

func (r ApiAgentPoolGetAgentPoolByIdRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentPoolGetAgentPoolByIdRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentPoolGetAgentPoolByIdRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentPoolGetAgentPoolByIdRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentPoolGetAgentPoolByIdRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentPoolGetAgentPoolsRequest ¶

type ApiAgentPoolGetAgentPoolsRequest struct {
	ApiService *AgentPoolApiService
	// contains filtered or unexported fields
}

func (ApiAgentPoolGetAgentPoolsRequest) Execute ¶

func (ApiAgentPoolGetAgentPoolsRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiAgentPoolGetAgentPoolsRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiAgentPoolGetAgentPoolsRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiAgentPoolGetAgentPoolsRequest) PqSortAscending ¶

func (r ApiAgentPoolGetAgentPoolsRequest) PqSortAscending(pqSortAscending int32) ApiAgentPoolGetAgentPoolsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiAgentPoolGetAgentPoolsRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiAgentPoolGetAgentPoolsRequest) XKeyfactorApiVersion ¶

func (r ApiAgentPoolGetAgentPoolsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentPoolGetAgentPoolsRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentPoolGetAgentPoolsRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentPoolGetAgentPoolsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentPoolGetAgentPoolsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentPoolGetDefaultAgentPoolAgentsRequest ¶

type ApiAgentPoolGetDefaultAgentPoolAgentsRequest struct {
	ApiService *AgentPoolApiService
	// contains filtered or unexported fields
}

func (ApiAgentPoolGetDefaultAgentPoolAgentsRequest) Execute ¶

func (ApiAgentPoolGetDefaultAgentPoolAgentsRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiAgentPoolGetDefaultAgentPoolAgentsRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiAgentPoolGetDefaultAgentPoolAgentsRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiAgentPoolGetDefaultAgentPoolAgentsRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiAgentPoolGetDefaultAgentPoolAgentsRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiAgentPoolGetDefaultAgentPoolAgentsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiAgentPoolGetDefaultAgentPoolAgentsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentPoolUpdateAgentPoolRequest ¶

type ApiAgentPoolUpdateAgentPoolRequest struct {
	ApiService *AgentPoolApiService
	// contains filtered or unexported fields
}

func (ApiAgentPoolUpdateAgentPoolRequest) AgentPool ¶

Agent pool properties to be applied to the existing pool

func (ApiAgentPoolUpdateAgentPoolRequest) Execute ¶

func (ApiAgentPoolUpdateAgentPoolRequest) XKeyfactorApiVersion ¶

func (r ApiAgentPoolUpdateAgentPoolRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentPoolUpdateAgentPoolRequest

Desired version of the api, if not provided defaults to v1

func (ApiAgentPoolUpdateAgentPoolRequest) XKeyfactorRequestedWith ¶

func (r ApiAgentPoolUpdateAgentPoolRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentPoolUpdateAgentPoolRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentReset0Request ¶

type ApiAgentReset0Request struct {
	ApiService *AgentApiService
	// contains filtered or unexported fields
}

func (ApiAgentReset0Request) AgentIds ¶

func (r ApiAgentReset0Request) AgentIds(agentIds []string) ApiAgentReset0Request

List of Agent Ids to Reset

func (ApiAgentReset0Request) Execute ¶

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

func (ApiAgentReset0Request) XKeyfactorApiVersion ¶

func (r ApiAgentReset0Request) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentReset0Request

Desired version of the api, if not provided defaults to v1

func (ApiAgentReset0Request) XKeyfactorRequestedWith ¶

func (r ApiAgentReset0Request) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentReset0Request

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentReset1Request ¶

type ApiAgentReset1Request struct {
	ApiService *AgentApiService
	// contains filtered or unexported fields
}

func (ApiAgentReset1Request) Execute ¶

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

func (ApiAgentReset1Request) XKeyfactorApiVersion ¶

func (r ApiAgentReset1Request) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAgentReset1Request

Desired version of the api, if not provided defaults to v1

func (ApiAgentReset1Request) XKeyfactorRequestedWith ¶

func (r ApiAgentReset1Request) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAgentReset1Request

Type of the request [XMLHttpRequest, APIClient]

type ApiAgentSetAuthCertificateReenrollmentRequest ¶

type ApiAgentSetAuthCertificateReenrollmentRequest struct {
	ApiService *AgentApiService
	// contains filtered or unexported fields
}

func (ApiAgentSetAuthCertificateReenrollmentRequest) AuthCertReenrollmentRequest ¶

Object containing orchestrator ids and the new status those orchestrators should have

func (ApiAgentSetAuthCertificateReenrollmentRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiAgentSetAuthCertificateReenrollmentRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiAuditLogDownloadCSVRequest ¶

type ApiAuditLogDownloadCSVRequest struct {
	ApiService *AuditLogApiService
	// contains filtered or unexported fields
}

func (ApiAuditLogDownloadCSVRequest) Execute ¶

func (ApiAuditLogDownloadCSVRequest) PqPageReturned ¶

func (r ApiAuditLogDownloadCSVRequest) PqPageReturned(pqPageReturned int32) ApiAuditLogDownloadCSVRequest

The current page within the result set to be returned

func (ApiAuditLogDownloadCSVRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiAuditLogDownloadCSVRequest) PqReturnLimit ¶

func (r ApiAuditLogDownloadCSVRequest) PqReturnLimit(pqReturnLimit int32) ApiAuditLogDownloadCSVRequest

Maximum number of records to be returned in a single call

func (ApiAuditLogDownloadCSVRequest) PqSortAscending ¶

func (r ApiAuditLogDownloadCSVRequest) PqSortAscending(pqSortAscending int32) ApiAuditLogDownloadCSVRequest

Field sort direction [0=ascending, 1=descending]

func (ApiAuditLogDownloadCSVRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiAuditLogDownloadCSVRequest) XKeyfactorApiVersion ¶

func (r ApiAuditLogDownloadCSVRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAuditLogDownloadCSVRequest

Desired version of the api, if not provided defaults to v1

func (ApiAuditLogDownloadCSVRequest) XKeyfactorRequestedWith ¶

func (r ApiAuditLogDownloadCSVRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAuditLogDownloadCSVRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAuditLogGetAuditLogRequest ¶

type ApiAuditLogGetAuditLogRequest struct {
	ApiService *AuditLogApiService
	// contains filtered or unexported fields
}

func (ApiAuditLogGetAuditLogRequest) Execute ¶

func (r ApiAuditLogGetAuditLogRequest) Execute() (map[string]interface{}, *http.Response, error)

func (ApiAuditLogGetAuditLogRequest) XKeyfactorApiVersion ¶

func (r ApiAuditLogGetAuditLogRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAuditLogGetAuditLogRequest

Desired version of the api, if not provided defaults to v1

func (ApiAuditLogGetAuditLogRequest) XKeyfactorRequestedWith ¶

func (r ApiAuditLogGetAuditLogRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAuditLogGetAuditLogRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAuditLogGetAuditLogsRequest ¶

type ApiAuditLogGetAuditLogsRequest struct {
	ApiService *AuditLogApiService
	// contains filtered or unexported fields
}

func (ApiAuditLogGetAuditLogsRequest) Execute ¶

func (ApiAuditLogGetAuditLogsRequest) PqPageReturned ¶

func (r ApiAuditLogGetAuditLogsRequest) PqPageReturned(pqPageReturned int32) ApiAuditLogGetAuditLogsRequest

The current page within the result set to be returned

func (ApiAuditLogGetAuditLogsRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiAuditLogGetAuditLogsRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiAuditLogGetAuditLogsRequest) PqSortAscending ¶

func (r ApiAuditLogGetAuditLogsRequest) PqSortAscending(pqSortAscending int32) ApiAuditLogGetAuditLogsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiAuditLogGetAuditLogsRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiAuditLogGetAuditLogsRequest) XKeyfactorApiVersion ¶

func (r ApiAuditLogGetAuditLogsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAuditLogGetAuditLogsRequest

Desired version of the api, if not provided defaults to v1

func (ApiAuditLogGetAuditLogsRequest) XKeyfactorRequestedWith ¶

func (r ApiAuditLogGetAuditLogsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAuditLogGetAuditLogsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAuditLogGetRelatedEntitiesRequest ¶

type ApiAuditLogGetRelatedEntitiesRequest struct {
	ApiService *AuditLogApiService
	// contains filtered or unexported fields
}

func (ApiAuditLogGetRelatedEntitiesRequest) Execute ¶

func (ApiAuditLogGetRelatedEntitiesRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiAuditLogGetRelatedEntitiesRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiAuditLogGetRelatedEntitiesRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiAuditLogGetRelatedEntitiesRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiAuditLogGetRelatedEntitiesRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiAuditLogGetRelatedEntitiesRequest) XKeyfactorApiVersion ¶

func (r ApiAuditLogGetRelatedEntitiesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAuditLogGetRelatedEntitiesRequest

Desired version of the api, if not provided defaults to v1

func (ApiAuditLogGetRelatedEntitiesRequest) XKeyfactorRequestedWith ¶

func (r ApiAuditLogGetRelatedEntitiesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAuditLogGetRelatedEntitiesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiAuditLogValidateAuditLogRequest ¶

type ApiAuditLogValidateAuditLogRequest struct {
	ApiService *AuditLogApiService
	// contains filtered or unexported fields
}

func (ApiAuditLogValidateAuditLogRequest) Execute ¶

func (ApiAuditLogValidateAuditLogRequest) XKeyfactorApiVersion ¶

func (r ApiAuditLogValidateAuditLogRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiAuditLogValidateAuditLogRequest

Desired version of the api, if not provided defaults to v1

func (ApiAuditLogValidateAuditLogRequest) XKeyfactorRequestedWith ¶

func (r ApiAuditLogValidateAuditLogRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiAuditLogValidateAuditLogRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCSRGenerationDeleteCSRRequest ¶

type ApiCSRGenerationDeleteCSRRequest struct {
	ApiService *CSRGenerationApiService
	// contains filtered or unexported fields
}

func (ApiCSRGenerationDeleteCSRRequest) Execute ¶

func (ApiCSRGenerationDeleteCSRRequest) XKeyfactorApiVersion ¶

func (r ApiCSRGenerationDeleteCSRRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCSRGenerationDeleteCSRRequest

Desired version of the api, if not provided defaults to v1

func (ApiCSRGenerationDeleteCSRRequest) XKeyfactorRequestedWith ¶

func (r ApiCSRGenerationDeleteCSRRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCSRGenerationDeleteCSRRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCSRGenerationDeleteCSRsRequest ¶

type ApiCSRGenerationDeleteCSRsRequest struct {
	ApiService *CSRGenerationApiService
	// contains filtered or unexported fields
}

func (ApiCSRGenerationDeleteCSRsRequest) Execute ¶

func (ApiCSRGenerationDeleteCSRsRequest) Ids ¶

Array of Keyfactor identifiers for the CSRs to be deleted

func (ApiCSRGenerationDeleteCSRsRequest) XKeyfactorApiVersion ¶

func (r ApiCSRGenerationDeleteCSRsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCSRGenerationDeleteCSRsRequest

Desired version of the api, if not provided defaults to v1

func (ApiCSRGenerationDeleteCSRsRequest) XKeyfactorRequestedWith ¶

func (r ApiCSRGenerationDeleteCSRsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCSRGenerationDeleteCSRsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCSRGenerationDownloadRequest ¶

type ApiCSRGenerationDownloadRequest struct {
	ApiService *CSRGenerationApiService
	// contains filtered or unexported fields
}

func (ApiCSRGenerationDownloadRequest) Execute ¶

func (ApiCSRGenerationDownloadRequest) XKeyfactorApiVersion ¶

func (r ApiCSRGenerationDownloadRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCSRGenerationDownloadRequest

Desired version of the api, if not provided defaults to v1

func (ApiCSRGenerationDownloadRequest) XKeyfactorRequestedWith ¶

func (r ApiCSRGenerationDownloadRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCSRGenerationDownloadRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCSRGenerationGetPendingCSRsRequest ¶

type ApiCSRGenerationGetPendingCSRsRequest struct {
	ApiService *CSRGenerationApiService
	// contains filtered or unexported fields
}

func (ApiCSRGenerationGetPendingCSRsRequest) Execute ¶

func (ApiCSRGenerationGetPendingCSRsRequest) SqPageReturned ¶

The current page within the result set to be returned

func (ApiCSRGenerationGetPendingCSRsRequest) SqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiCSRGenerationGetPendingCSRsRequest) SqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiCSRGenerationGetPendingCSRsRequest) SqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiCSRGenerationGetPendingCSRsRequest) SqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiCSRGenerationGetPendingCSRsRequest) XKeyfactorApiVersion ¶

func (r ApiCSRGenerationGetPendingCSRsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCSRGenerationGetPendingCSRsRequest

Desired version of the api, if not provided defaults to v1

func (ApiCSRGenerationGetPendingCSRsRequest) XKeyfactorRequestedWith ¶

func (r ApiCSRGenerationGetPendingCSRsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCSRGenerationGetPendingCSRsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCSRGenerationPostGenerateRequest ¶

type ApiCSRGenerationPostGenerateRequest struct {
	ApiService *CSRGenerationApiService
	// contains filtered or unexported fields
}

func (ApiCSRGenerationPostGenerateRequest) Context ¶

CSR properties used to define the request - Key type [RSA, ECC], Key sizes (ex: RSA 1024, 2048, 4096/ECC 256, 384, 521), template short name or OID

func (ApiCSRGenerationPostGenerateRequest) Execute ¶

func (ApiCSRGenerationPostGenerateRequest) XKeyfactorApiVersion ¶

func (r ApiCSRGenerationPostGenerateRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCSRGenerationPostGenerateRequest

Desired version of the api, if not provided defaults to v1

func (ApiCSRGenerationPostGenerateRequest) XKeyfactorRequestedWith ¶

func (r ApiCSRGenerationPostGenerateRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCSRGenerationPostGenerateRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateAnalyzeCertRequest ¶

type ApiCertificateAnalyzeCertRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateAnalyzeCertRequest) Execute ¶

func (ApiCertificateAnalyzeCertRequest) Request ¶

The certificate to analyze

func (ApiCertificateAnalyzeCertRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateAnalyzeCertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateAnalyzeCertRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateAnalyzeCertRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateAnalyzeCertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateAnalyzeCertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateAuthorityCreateCARequest ¶

type ApiCertificateAuthorityCreateCARequest struct {
	ApiService *CertificateAuthorityApiService
	// contains filtered or unexported fields
}

func (ApiCertificateAuthorityCreateCARequest) XKeyfactorApiVersion ¶

func (r ApiCertificateAuthorityCreateCARequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateAuthorityCreateCARequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateAuthorityCreateCARequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateAuthorityCreateCARequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateAuthorityCreateCARequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateAuthorityDeleteCARequest ¶

type ApiCertificateAuthorityDeleteCARequest struct {
	ApiService *CertificateAuthorityApiService
	// contains filtered or unexported fields
}

func (ApiCertificateAuthorityDeleteCARequest) Execute ¶

func (ApiCertificateAuthorityDeleteCARequest) XKeyfactorApiVersion ¶

func (r ApiCertificateAuthorityDeleteCARequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateAuthorityDeleteCARequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateAuthorityDeleteCARequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateAuthorityDeleteCARequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateAuthorityDeleteCARequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateAuthorityGetCaRequest ¶

type ApiCertificateAuthorityGetCaRequest struct {
	ApiService *CertificateAuthorityApiService
	// contains filtered or unexported fields
}

func (ApiCertificateAuthorityGetCaRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateAuthorityGetCaRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateAuthorityGetCaRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateAuthorityGetCaRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateAuthorityGetCaRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateAuthorityGetCaRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateAuthorityGetCasRequest ¶

type ApiCertificateAuthorityGetCasRequest struct {
	ApiService *CertificateAuthorityApiService
	// contains filtered or unexported fields
}

func (ApiCertificateAuthorityGetCasRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiCertificateAuthorityGetCasRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiCertificateAuthorityGetCasRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiCertificateAuthorityGetCasRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiCertificateAuthorityGetCasRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiCertificateAuthorityGetCasRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateAuthorityGetCasRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateAuthorityGetCasRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateAuthorityGetCasRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateAuthorityGetCasRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateAuthorityGetCasRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateAuthorityPublishCRLRequest ¶

type ApiCertificateAuthorityPublishCRLRequest struct {
	ApiService *CertificateAuthorityApiService
	// contains filtered or unexported fields
}

func (ApiCertificateAuthorityPublishCRLRequest) Crlrequest ¶

Host and logical name of the CA for which the CRL should be published

func (ApiCertificateAuthorityPublishCRLRequest) Execute ¶

func (ApiCertificateAuthorityPublishCRLRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateAuthorityPublishCRLRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateAuthorityPublishCRLRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateAuthorityPublishCRLRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateAuthorityTestCertificateAuthorityRequest ¶

type ApiCertificateAuthorityTestCertificateAuthorityRequest struct {
	ApiService *CertificateAuthorityApiService
	// contains filtered or unexported fields
}

func (ApiCertificateAuthorityTestCertificateAuthorityRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateAuthorityTestCertificateAuthorityRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateAuthorityUpdateCARequest ¶

type ApiCertificateAuthorityUpdateCARequest struct {
	ApiService *CertificateAuthorityApiService
	// contains filtered or unexported fields
}

func (ApiCertificateAuthorityUpdateCARequest) XKeyfactorApiVersion ¶

func (r ApiCertificateAuthorityUpdateCARequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateAuthorityUpdateCARequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateAuthorityUpdateCARequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateAuthorityUpdateCARequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateAuthorityUpdateCARequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateCertificateHistoryRequest ¶

type ApiCertificateCertificateHistoryRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateCertificateHistoryRequest) CollectionId ¶

The collection the certificate could be in. Defaults to no collection.

func (ApiCertificateCertificateHistoryRequest) Execute ¶

func (ApiCertificateCertificateHistoryRequest) QueryPageReturned ¶

The current page within the result set to be returned

func (ApiCertificateCertificateHistoryRequest) QueryReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiCertificateCertificateHistoryRequest) QuerySortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiCertificateCertificateHistoryRequest) QuerySortField ¶

Field by which the results should be sorted (OperationStart, OperationEnd, UserName)

func (ApiCertificateCertificateHistoryRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateCertificateHistoryRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateCertificateHistoryRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateCertificateHistoryRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateCertificateHistoryRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateCertificateHistoryRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateCollectionCopyFromExistingCollectionRequest ¶

type ApiCertificateCollectionCopyFromExistingCollectionRequest struct {
	ApiService *CertificateCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCertificateCollectionCopyFromExistingCollectionRequest) Request ¶

Information related to the certificate collection query

func (ApiCertificateCollectionCopyFromExistingCollectionRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateCollectionCopyFromExistingCollectionRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateCollectionCreateCollectionRequest ¶

type ApiCertificateCollectionCreateCollectionRequest struct {
	ApiService *CertificateCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCertificateCollectionCreateCollectionRequest) Request ¶

Information related to the certificate collection query

func (ApiCertificateCollectionCreateCollectionRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateCollectionCreateCollectionRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateCollectionGetCollection0Request ¶

type ApiCertificateCollectionGetCollection0Request struct {
	ApiService *CertificateCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCertificateCollectionGetCollection0Request) Execute ¶

func (ApiCertificateCollectionGetCollection0Request) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateCollectionGetCollection0Request) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateCollectionGetCollection1Request ¶

type ApiCertificateCollectionGetCollection1Request struct {
	ApiService *CertificateCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCertificateCollectionGetCollection1Request) Execute ¶

func (ApiCertificateCollectionGetCollection1Request) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateCollectionGetCollection1Request) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateCollectionGetCollectionsRequest ¶

type ApiCertificateCollectionGetCollectionsRequest struct {
	ApiService *CertificateCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCertificateCollectionGetCollectionsRequest) Execute ¶

func (ApiCertificateCollectionGetCollectionsRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiCertificateCollectionGetCollectionsRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiCertificateCollectionGetCollectionsRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiCertificateCollectionGetCollectionsRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiCertificateCollectionGetCollectionsRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiCertificateCollectionGetCollectionsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateCollectionGetCollectionsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateCollectionSetCollectionPermissionsRequest ¶

type ApiCertificateCollectionSetCollectionPermissionsRequest struct {
	ApiService *CertificateCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCertificateCollectionSetCollectionPermissionsRequest) CollectionPermissions ¶

The collection Permissions object ['Read', 'EditMetadata', 'Recover', 'Revoke', 'Delete']

func (ApiCertificateCollectionSetCollectionPermissionsRequest) Execute ¶

func (ApiCertificateCollectionSetCollectionPermissionsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateCollectionSetCollectionPermissionsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateCollectionUpdateCollectionRequest ¶

type ApiCertificateCollectionUpdateCollectionRequest struct {
	ApiService *CertificateCollectionApiService
	// contains filtered or unexported fields
}

func (ApiCertificateCollectionUpdateCollectionRequest) Request ¶

Information related to the certificate collection query

func (ApiCertificateCollectionUpdateCollectionRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateCollectionUpdateCollectionRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateCompareMetadataRequest ¶

type ApiCertificateCompareMetadataRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateCompareMetadataRequest) CertificateId ¶

Certificate identifier

func (ApiCertificateCompareMetadataRequest) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateCompareMetadataRequest) Execute ¶

func (ApiCertificateCompareMetadataRequest) MetadataFieldName ¶

Metadata field being compared

func (ApiCertificateCompareMetadataRequest) Value ¶

Value to compare against

func (ApiCertificateCompareMetadataRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateCompareMetadataRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateCompareMetadataRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateCompareMetadataRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateCompareMetadataRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateCompareMetadataRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateDeleteByQueryRequest ¶

type ApiCertificateDeleteByQueryRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateDeleteByQueryRequest) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateDeleteByQueryRequest) Execute ¶

func (ApiCertificateDeleteByQueryRequest) Sq ¶

Query by which certificates should be filtered for deletion

func (ApiCertificateDeleteByQueryRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateDeleteByQueryRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateDeleteByQueryRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateDeleteByQueryRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateDeleteByQueryRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateDeleteByQueryRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateDeleteCertificateRequest ¶

type ApiCertificateDeleteCertificateRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateDeleteCertificateRequest) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateDeleteCertificateRequest) Execute ¶

func (ApiCertificateDeleteCertificateRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateDeleteCertificateRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateDeleteCertificateRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateDeleteCertificateRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateDeleteCertificateRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateDeleteCertificateRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateDeleteCertificatesRequest ¶

type ApiCertificateDeleteCertificatesRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateDeleteCertificatesRequest) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateDeleteCertificatesRequest) Execute ¶

func (ApiCertificateDeleteCertificatesRequest) Ids ¶

The array of ids for certificate that are to be deleted

func (ApiCertificateDeleteCertificatesRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateDeleteCertificatesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateDeleteCertificatesRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateDeleteCertificatesRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateDeleteCertificatesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateDeleteCertificatesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateDeletePrivateKeys0Request ¶

type ApiCertificateDeletePrivateKeys0Request struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateDeletePrivateKeys0Request) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateDeletePrivateKeys0Request) Execute ¶

func (ApiCertificateDeletePrivateKeys0Request) Ids ¶

Keyfactor identifiers of the cetficiates for which the associated private keys should be deleted

func (ApiCertificateDeletePrivateKeys0Request) XKeyfactorApiVersion ¶

func (r ApiCertificateDeletePrivateKeys0Request) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateDeletePrivateKeys0Request

Desired version of the api, if not provided defaults to v1

func (ApiCertificateDeletePrivateKeys0Request) XKeyfactorRequestedWith ¶

func (r ApiCertificateDeletePrivateKeys0Request) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateDeletePrivateKeys0Request

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateDeletePrivateKeys1Request ¶

type ApiCertificateDeletePrivateKeys1Request struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateDeletePrivateKeys1Request) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateDeletePrivateKeys1Request) Execute ¶

func (ApiCertificateDeletePrivateKeys1Request) XKeyfactorApiVersion ¶

func (r ApiCertificateDeletePrivateKeys1Request) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateDeletePrivateKeys1Request

Desired version of the api, if not provided defaults to v1

func (ApiCertificateDeletePrivateKeys1Request) XKeyfactorRequestedWith ¶

func (r ApiCertificateDeletePrivateKeys1Request) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateDeletePrivateKeys1Request

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateDownloadCertificateAsyncRequest ¶

type ApiCertificateDownloadCertificateAsyncRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateDownloadCertificateAsyncRequest) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateDownloadCertificateAsyncRequest) Execute ¶

func (ApiCertificateDownloadCertificateAsyncRequest) Rq ¶

Query to filter the certificate to be recovered

func (ApiCertificateDownloadCertificateAsyncRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateDownloadCertificateAsyncRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateGetCertificateLocationsRequest ¶

type ApiCertificateGetCertificateLocationsRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateGetCertificateLocationsRequest) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateGetCertificateLocationsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateGetCertificateLocationsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateGetCertificateRequest ¶

type ApiCertificateGetCertificateRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateGetCertificateRequest) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateGetCertificateRequest) Execute ¶

func (ApiCertificateGetCertificateRequest) IncludeLocations ¶

Include locations data for the certificate to be returned

func (ApiCertificateGetCertificateRequest) IncludeMetadata ¶

Include metadata for the certificate to be returned

func (ApiCertificateGetCertificateRequest) Verbose ¶

func (ApiCertificateGetCertificateRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateGetCertificateRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateGetCertificateRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateGetCertificateRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateGetCertificateRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateGetCertificateRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateGetCertificateSecurityRequest ¶

type ApiCertificateGetCertificateSecurityRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateGetCertificateSecurityRequest) CollectionId ¶

The Id of the collection the certificate belongs in. Defaults to no collection

func (ApiCertificateGetCertificateSecurityRequest) Execute ¶

func (ApiCertificateGetCertificateSecurityRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateGetCertificateSecurityRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateGetCertificateSecurityRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateGetCertificateSecurityRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateIdentityAuditRequest ¶

type ApiCertificateIdentityAuditRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateIdentityAuditRequest) CollectionId ¶

An optional parameter for the collectin Id the certificate is in. Defaults to no collection

func (ApiCertificateIdentityAuditRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateIdentityAuditRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateIdentityAuditRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateIdentityAuditRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateIdentityAuditRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateIdentityAuditRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificatePostImportCertificateRequest ¶

type ApiCertificatePostImportCertificateRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificatePostImportCertificateRequest) Execute ¶

func (ApiCertificatePostImportCertificateRequest) Req ¶

Request containing the base 64 encoded string and related certificate information, such as certificate stores, metadata, and password

func (ApiCertificatePostImportCertificateRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificatePostImportCertificateRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificatePostImportCertificateRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificatePostImportCertificateRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateQueryCertificatesRequest ¶

type ApiCertificateQueryCertificatesRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateQueryCertificatesRequest) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateQueryCertificatesRequest) Execute ¶

func (ApiCertificateQueryCertificatesRequest) IncludeHasPrivateKey ¶

func (r ApiCertificateQueryCertificatesRequest) IncludeHasPrivateKey(includeHasPrivateKey bool) ApiCertificateQueryCertificatesRequest

Include whether the certificates to be returned have private keys stored in the Keyfactor database

func (ApiCertificateQueryCertificatesRequest) IncludeLocations ¶

Include locations data for the certificates to be returned

func (ApiCertificateQueryCertificatesRequest) IncludeMetadata ¶

Include metadata for the certificates to be returned

func (ApiCertificateQueryCertificatesRequest) PqIncludeExpired ¶

Select 'true' to include expired certificates in the results

func (ApiCertificateQueryCertificatesRequest) PqIncludeRevoked ¶

Select 'true' to include revoked certificates in the results

func (ApiCertificateQueryCertificatesRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiCertificateQueryCertificatesRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiCertificateQueryCertificatesRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiCertificateQueryCertificatesRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiCertificateQueryCertificatesRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiCertificateQueryCertificatesRequest) Verbose ¶

func (ApiCertificateQueryCertificatesRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateQueryCertificatesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateQueryCertificatesRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateQueryCertificatesRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateQueryCertificatesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateQueryCertificatesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateRecoverCertificateAsyncRequest ¶

type ApiCertificateRecoverCertificateAsyncRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateRecoverCertificateAsyncRequest) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateRecoverCertificateAsyncRequest) Execute ¶

func (ApiCertificateRecoverCertificateAsyncRequest) Rq ¶

Query to filter the certificate to be recovered

func (ApiCertificateRecoverCertificateAsyncRequest) XCertificateformat ¶

Desired format [PFX, PEM]

func (ApiCertificateRecoverCertificateAsyncRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateRecoverCertificateAsyncRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateRevokeAllRequest ¶

type ApiCertificateRevokeAllRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateRevokeAllRequest) CollectionId ¶

A collection Id to be used for permissions and part of the query to revoke certificates

func (ApiCertificateRevokeAllRequest) Execute ¶

func (ApiCertificateRevokeAllRequest) Request ¶

Contains the Keyfactor Query and revocation data

func (ApiCertificateRevokeAllRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateRevokeAllRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateRevokeAllRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateRevokeAllRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateRevokeAllRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateRevokeAllRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateRevokeRequest ¶

type ApiCertificateRevokeRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateRevokeRequest) Execute ¶

func (ApiCertificateRevokeRequest) Request ¶

Contains the Keyfactor certificate identifiers and revocation data

func (ApiCertificateRevokeRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateRevokeRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateRevokeRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateRevokeRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateRevokeRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateRevokeRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreAddCertificateRequest ¶

type ApiCertificateStoreAddCertificateRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreAddCertificateRequest) AddRequest ¶

Configuration details of the management job

func (ApiCertificateStoreAddCertificateRequest) Execute ¶

func (ApiCertificateStoreAddCertificateRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreAddCertificateRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateStoreAddCertificateRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateStoreAddCertificateRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreApprovePendingRequest ¶

type ApiCertificateStoreApprovePendingRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreApprovePendingRequest) Execute ¶

func (ApiCertificateStoreApprovePendingRequest) Keystores ¶

Certificate stores to be approved

func (ApiCertificateStoreApprovePendingRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreApprovePendingRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateStoreApprovePendingRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateStoreApprovePendingRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreConfigureDiscoveryJobRequest ¶

type ApiCertificateStoreConfigureDiscoveryJobRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreConfigureDiscoveryJobRequest) DiscoveryJobRequest ¶

Configuration properties of the discovery job

func (ApiCertificateStoreConfigureDiscoveryJobRequest) Execute ¶

func (ApiCertificateStoreConfigureDiscoveryJobRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreConfigureDiscoveryJobRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreContainerDeleteCertificateStoreContainersRequest ¶

type ApiCertificateStoreContainerDeleteCertificateStoreContainersRequest struct {
	ApiService *CertificateStoreContainerApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreContainerDeleteCertificateStoreContainersRequest) Execute ¶

func (ApiCertificateStoreContainerDeleteCertificateStoreContainersRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreContainerDeleteCertificateStoreContainersRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest ¶

type ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest struct {
	ApiService *CertificateStoreContainerApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest) Execute ¶

func (ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreCreateCertificateStoreServerRequest ¶

type ApiCertificateStoreCreateCertificateStoreServerRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreCreateCertificateStoreServerRequest) Execute ¶

func (ApiCertificateStoreCreateCertificateStoreServerRequest) Request ¶

Certificate store server to be created with the provided properties

func (ApiCertificateStoreCreateCertificateStoreServerRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreCreateCertificateStoreServerRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreDeleteCertificateStoreRequest ¶

type ApiCertificateStoreDeleteCertificateStoreRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreDeleteCertificateStoreRequest) Execute ¶

func (ApiCertificateStoreDeleteCertificateStoreRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreDeleteCertificateStoreRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreDeleteCertificateStoresRequest ¶

type ApiCertificateStoreDeleteCertificateStoresRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreDeleteCertificateStoresRequest) Execute ¶

func (ApiCertificateStoreDeleteCertificateStoresRequest) Ids ¶

Array of Keyfactor identifiers (GUID) for the certificate stores to be deleted

func (ApiCertificateStoreDeleteCertificateStoresRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreDeleteCertificateStoresRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreGetCertificateStoreInventoryRequest ¶

type ApiCertificateStoreGetCertificateStoreInventoryRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreGetCertificateStoreInventoryRequest) Execute ¶

func (ApiCertificateStoreGetCertificateStoreInventoryRequest) QueryPageReturned ¶

The current page within the result set to be returned

func (ApiCertificateStoreGetCertificateStoreInventoryRequest) QueryReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiCertificateStoreGetCertificateStoreInventoryRequest) QuerySortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiCertificateStoreGetCertificateStoreInventoryRequest) QuerySortField ¶

Field by which the results should be sorted (OperationStart, OperationEnd, UserName)

func (ApiCertificateStoreGetCertificateStoreInventoryRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreGetCertificateStoreInventoryRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreRemoveCertificateRequest ¶

type ApiCertificateStoreRemoveCertificateRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreRemoveCertificateRequest) Execute ¶

func (ApiCertificateStoreRemoveCertificateRequest) RemovalRequest ¶

Configuration details of the management job

func (ApiCertificateStoreRemoveCertificateRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreRemoveCertificateRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateStoreRemoveCertificateRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateStoreRemoveCertificateRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreScheduleForReenrollmentRequest ¶

type ApiCertificateStoreScheduleForReenrollmentRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreScheduleForReenrollmentRequest) Execute ¶

func (ApiCertificateStoreScheduleForReenrollmentRequest) Reenroll ¶

An object that contains a Keystore Id, a Agent Guid, a string SubjectName and string Alias

func (ApiCertificateStoreScheduleForReenrollmentRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreScheduleForReenrollmentRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreScheduleRequest ¶

type ApiCertificateStoreScheduleRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreScheduleRequest) Execute ¶

func (ApiCertificateStoreScheduleRequest) FutureSchedule ¶

Certificate store identifiers and the desired schedule

func (ApiCertificateStoreScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateStoreScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateStoreScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateStoreScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateStoreScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreSetPasswordRequest ¶

type ApiCertificateStoreSetPasswordRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreSetPasswordRequest) Execute ¶

func (ApiCertificateStoreSetPasswordRequest) PasswordRequest ¶

Identifier of the certificate store and the password to be applied to it

func (ApiCertificateStoreSetPasswordRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateStoreSetPasswordRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateStoreSetPasswordRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreSetPasswordRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateStoreSetPasswordRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateStoreSetPasswordRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreTypeCreateCertificateStoreTypeRequest ¶

type ApiCertificateStoreTypeCreateCertificateStoreTypeRequest struct {
	ApiService *CertificateStoreTypeApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreTypeCreateCertificateStoreTypeRequest) CertStoreType ¶

Certificate store type properties for the new type

func (ApiCertificateStoreTypeCreateCertificateStoreTypeRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreTypeCreateCertificateStoreTypeRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreTypeDeleteCertificateStoreTypeRequest ¶

type ApiCertificateStoreTypeDeleteCertificateStoreTypeRequest struct {
	ApiService *CertificateStoreTypeApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreTypeDeleteCertificateStoreTypeRequest) Execute ¶

func (ApiCertificateStoreTypeDeleteCertificateStoreTypeRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreTypeDeleteCertificateStoreTypeRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreTypeDeleteCertificateStoreTypesRequest ¶

type ApiCertificateStoreTypeDeleteCertificateStoreTypesRequest struct {
	ApiService *CertificateStoreTypeApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreTypeDeleteCertificateStoreTypesRequest) Execute ¶

func (ApiCertificateStoreTypeDeleteCertificateStoreTypesRequest) Ids ¶

Array of Keyfactor identifiers of the certificate store types to be deleted

func (ApiCertificateStoreTypeDeleteCertificateStoreTypesRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreTypeDeleteCertificateStoreTypesRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreTypeGetCertificateStoreType0Request ¶

type ApiCertificateStoreTypeGetCertificateStoreType0Request struct {
	ApiService *CertificateStoreTypeApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreTypeGetCertificateStoreType0Request) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreTypeGetCertificateStoreType0Request) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreTypeGetCertificateStoreType1Request ¶

type ApiCertificateStoreTypeGetCertificateStoreType1Request struct {
	ApiService *CertificateStoreTypeApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreTypeGetCertificateStoreType1Request) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreTypeGetCertificateStoreType1Request) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreTypeGetTypesRequest ¶

type ApiCertificateStoreTypeGetTypesRequest struct {
	ApiService *CertificateStoreTypeApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreTypeGetTypesRequest) CstqueryPageReturned ¶

func (r ApiCertificateStoreTypeGetTypesRequest) CstqueryPageReturned(cstqueryPageReturned int32) ApiCertificateStoreTypeGetTypesRequest

The current page within the result set to be returned

func (ApiCertificateStoreTypeGetTypesRequest) CstqueryQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiCertificateStoreTypeGetTypesRequest) CstqueryReturnLimit ¶

func (r ApiCertificateStoreTypeGetTypesRequest) CstqueryReturnLimit(cstqueryReturnLimit int32) ApiCertificateStoreTypeGetTypesRequest

Maximum number of records to be returned in a single call

func (ApiCertificateStoreTypeGetTypesRequest) CstquerySortAscending ¶

func (r ApiCertificateStoreTypeGetTypesRequest) CstquerySortAscending(cstquerySortAscending int32) ApiCertificateStoreTypeGetTypesRequest

Field sort direction [0=ascending, 1=descending]

func (ApiCertificateStoreTypeGetTypesRequest) CstquerySortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiCertificateStoreTypeGetTypesRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateStoreTypeGetTypesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateStoreTypeGetTypesRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreTypeGetTypesRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateStoreTypeGetTypesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateStoreTypeGetTypesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreTypeUpdateCertificateStoreTypeRequest ¶

type ApiCertificateStoreTypeUpdateCertificateStoreTypeRequest struct {
	ApiService *CertificateStoreTypeApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreTypeUpdateCertificateStoreTypeRequest) CertStoreType ¶

Certificate store type properties to be updated

func (ApiCertificateStoreTypeUpdateCertificateStoreTypeRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreTypeUpdateCertificateStoreTypeRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateStoreUpdateCertificateStoreServerRequest ¶

type ApiCertificateStoreUpdateCertificateStoreServerRequest struct {
	ApiService *CertificateStoreApiService
	// contains filtered or unexported fields
}

func (ApiCertificateStoreUpdateCertificateStoreServerRequest) Execute ¶

func (ApiCertificateStoreUpdateCertificateStoreServerRequest) Request ¶

Server to be updated with the provided properties

func (ApiCertificateStoreUpdateCertificateStoreServerRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateStoreUpdateCertificateStoreServerRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateUpdateAllMetadataRequest ¶

type ApiCertificateUpdateAllMetadataRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateUpdateAllMetadataRequest) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateUpdateAllMetadataRequest) Execute ¶

func (ApiCertificateUpdateAllMetadataRequest) MetadataUpdate ¶

Contains the Keyfactor certificate identifier and the metadata to be updated

func (ApiCertificateUpdateAllMetadataRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateUpdateAllMetadataRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateUpdateAllMetadataRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateUpdateAllMetadataRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateUpdateAllMetadataRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateUpdateAllMetadataRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateUpdateMetadataRequest ¶

type ApiCertificateUpdateMetadataRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateUpdateMetadataRequest) CollectionId ¶

Optional certificate collection identifier used to ensure user access to the certificate

func (ApiCertificateUpdateMetadataRequest) Execute ¶

func (ApiCertificateUpdateMetadataRequest) MetadataUpdate ¶

Contains the Keyfactor certificate identifier and the metadata to be updated

func (ApiCertificateUpdateMetadataRequest) XKeyfactorApiVersion ¶

func (r ApiCertificateUpdateMetadataRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCertificateUpdateMetadataRequest

Desired version of the api, if not provided defaults to v1

func (ApiCertificateUpdateMetadataRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateUpdateMetadataRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateUpdateMetadataRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCertificateValidateCertificateRequest ¶

type ApiCertificateValidateCertificateRequest struct {
	ApiService *CertificateApiService
	// contains filtered or unexported fields
}

func (ApiCertificateValidateCertificateRequest) CollectionId ¶

An optional parameter for the collectin Id the certificate is in. Defaults to no collection

func (ApiCertificateValidateCertificateRequest) Execute ¶

func (ApiCertificateValidateCertificateRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiCertificateValidateCertificateRequest) XKeyfactorRequestedWith ¶

func (r ApiCertificateValidateCertificateRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCertificateValidateCertificateRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCustomJobTypeCreateJobTypeRequest ¶

type ApiCustomJobTypeCreateJobTypeRequest struct {
	ApiService *CustomJobTypeApiService
	// contains filtered or unexported fields
}

func (ApiCustomJobTypeCreateJobTypeRequest) Execute ¶

func (ApiCustomJobTypeCreateJobTypeRequest) JobType ¶

job type properties to be applied to the new job type

func (ApiCustomJobTypeCreateJobTypeRequest) XKeyfactorApiVersion ¶

func (r ApiCustomJobTypeCreateJobTypeRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCustomJobTypeCreateJobTypeRequest

Desired version of the api, if not provided defaults to v1

func (ApiCustomJobTypeCreateJobTypeRequest) XKeyfactorRequestedWith ¶

func (r ApiCustomJobTypeCreateJobTypeRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCustomJobTypeCreateJobTypeRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCustomJobTypeDeleteJobTypeRequest ¶

type ApiCustomJobTypeDeleteJobTypeRequest struct {
	ApiService *CustomJobTypeApiService
	// contains filtered or unexported fields
}

func (ApiCustomJobTypeDeleteJobTypeRequest) Execute ¶

func (ApiCustomJobTypeDeleteJobTypeRequest) XKeyfactorApiVersion ¶

func (r ApiCustomJobTypeDeleteJobTypeRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCustomJobTypeDeleteJobTypeRequest

Desired version of the api, if not provided defaults to v1

func (ApiCustomJobTypeDeleteJobTypeRequest) XKeyfactorRequestedWith ¶

func (r ApiCustomJobTypeDeleteJobTypeRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCustomJobTypeDeleteJobTypeRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCustomJobTypeGetJobTypeByIdRequest ¶

type ApiCustomJobTypeGetJobTypeByIdRequest struct {
	ApiService *CustomJobTypeApiService
	// contains filtered or unexported fields
}

func (ApiCustomJobTypeGetJobTypeByIdRequest) Execute ¶

func (ApiCustomJobTypeGetJobTypeByIdRequest) XKeyfactorApiVersion ¶

func (r ApiCustomJobTypeGetJobTypeByIdRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCustomJobTypeGetJobTypeByIdRequest

Desired version of the api, if not provided defaults to v1

func (ApiCustomJobTypeGetJobTypeByIdRequest) XKeyfactorRequestedWith ¶

func (r ApiCustomJobTypeGetJobTypeByIdRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCustomJobTypeGetJobTypeByIdRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCustomJobTypeGetJobTypesRequest ¶

type ApiCustomJobTypeGetJobTypesRequest struct {
	ApiService *CustomJobTypeApiService
	// contains filtered or unexported fields
}

func (ApiCustomJobTypeGetJobTypesRequest) Execute ¶

func (ApiCustomJobTypeGetJobTypesRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiCustomJobTypeGetJobTypesRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiCustomJobTypeGetJobTypesRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiCustomJobTypeGetJobTypesRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiCustomJobTypeGetJobTypesRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiCustomJobTypeGetJobTypesRequest) XKeyfactorApiVersion ¶

func (r ApiCustomJobTypeGetJobTypesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCustomJobTypeGetJobTypesRequest

Desired version of the api, if not provided defaults to v1

func (ApiCustomJobTypeGetJobTypesRequest) XKeyfactorRequestedWith ¶

func (r ApiCustomJobTypeGetJobTypesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCustomJobTypeGetJobTypesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiCustomJobTypeUpdateJobTypeRequest ¶

type ApiCustomJobTypeUpdateJobTypeRequest struct {
	ApiService *CustomJobTypeApiService
	// contains filtered or unexported fields
}

func (ApiCustomJobTypeUpdateJobTypeRequest) Execute ¶

func (ApiCustomJobTypeUpdateJobTypeRequest) JobType ¶

job type properties to be applied to the existing job type

func (ApiCustomJobTypeUpdateJobTypeRequest) XKeyfactorApiVersion ¶

func (r ApiCustomJobTypeUpdateJobTypeRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiCustomJobTypeUpdateJobTypeRequest

Desired version of the api, if not provided defaults to v1

func (ApiCustomJobTypeUpdateJobTypeRequest) XKeyfactorRequestedWith ¶

func (r ApiCustomJobTypeUpdateJobTypeRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiCustomJobTypeUpdateJobTypeRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiDeniedAlertAddDeniedAlertRequest ¶

type ApiDeniedAlertAddDeniedAlertRequest struct {
	ApiService *DeniedAlertApiService
	// contains filtered or unexported fields
}

func (ApiDeniedAlertAddDeniedAlertRequest) Req ¶

Information for the new alert

func (ApiDeniedAlertAddDeniedAlertRequest) XKeyfactorApiVersion ¶

func (r ApiDeniedAlertAddDeniedAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiDeniedAlertAddDeniedAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiDeniedAlertAddDeniedAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiDeniedAlertAddDeniedAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiDeniedAlertAddDeniedAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiDeniedAlertDeleteDeniedAlertRequest ¶

type ApiDeniedAlertDeleteDeniedAlertRequest struct {
	ApiService *DeniedAlertApiService
	// contains filtered or unexported fields
}

func (ApiDeniedAlertDeleteDeniedAlertRequest) Execute ¶

func (ApiDeniedAlertDeleteDeniedAlertRequest) XKeyfactorApiVersion ¶

func (r ApiDeniedAlertDeleteDeniedAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiDeniedAlertDeleteDeniedAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiDeniedAlertDeleteDeniedAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiDeniedAlertDeleteDeniedAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiDeniedAlertDeleteDeniedAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiDeniedAlertEditDeniedAlertRequest ¶

type ApiDeniedAlertEditDeniedAlertRequest struct {
	ApiService *DeniedAlertApiService
	// contains filtered or unexported fields
}

func (ApiDeniedAlertEditDeniedAlertRequest) Req ¶

Information for the denied alert

func (ApiDeniedAlertEditDeniedAlertRequest) XKeyfactorApiVersion ¶

func (r ApiDeniedAlertEditDeniedAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiDeniedAlertEditDeniedAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiDeniedAlertEditDeniedAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiDeniedAlertEditDeniedAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiDeniedAlertEditDeniedAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiDeniedAlertGetDeniedAlertRequest ¶

type ApiDeniedAlertGetDeniedAlertRequest struct {
	ApiService *DeniedAlertApiService
	// contains filtered or unexported fields
}

func (ApiDeniedAlertGetDeniedAlertRequest) XKeyfactorApiVersion ¶

func (r ApiDeniedAlertGetDeniedAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiDeniedAlertGetDeniedAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiDeniedAlertGetDeniedAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiDeniedAlertGetDeniedAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiDeniedAlertGetDeniedAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiDeniedAlertGetDeniedAlertsRequest ¶

type ApiDeniedAlertGetDeniedAlertsRequest struct {
	ApiService *DeniedAlertApiService
	// contains filtered or unexported fields
}

func (ApiDeniedAlertGetDeniedAlertsRequest) PagedQueryPageReturned ¶

func (r ApiDeniedAlertGetDeniedAlertsRequest) PagedQueryPageReturned(pagedQueryPageReturned int32) ApiDeniedAlertGetDeniedAlertsRequest

The current page within the result set to be returned

func (ApiDeniedAlertGetDeniedAlertsRequest) PagedQueryQueryString ¶

func (r ApiDeniedAlertGetDeniedAlertsRequest) PagedQueryQueryString(pagedQueryQueryString string) ApiDeniedAlertGetDeniedAlertsRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiDeniedAlertGetDeniedAlertsRequest) PagedQueryReturnLimit ¶

func (r ApiDeniedAlertGetDeniedAlertsRequest) PagedQueryReturnLimit(pagedQueryReturnLimit int32) ApiDeniedAlertGetDeniedAlertsRequest

Maximum number of records to be returned in a single call

func (ApiDeniedAlertGetDeniedAlertsRequest) PagedQuerySortAscending ¶

func (r ApiDeniedAlertGetDeniedAlertsRequest) PagedQuerySortAscending(pagedQuerySortAscending int32) ApiDeniedAlertGetDeniedAlertsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiDeniedAlertGetDeniedAlertsRequest) PagedQuerySortField ¶

func (r ApiDeniedAlertGetDeniedAlertsRequest) PagedQuerySortField(pagedQuerySortField string) ApiDeniedAlertGetDeniedAlertsRequest

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiDeniedAlertGetDeniedAlertsRequest) XKeyfactorApiVersion ¶

func (r ApiDeniedAlertGetDeniedAlertsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiDeniedAlertGetDeniedAlertsRequest

Desired version of the api, if not provided defaults to v1

func (ApiDeniedAlertGetDeniedAlertsRequest) XKeyfactorRequestedWith ¶

func (r ApiDeniedAlertGetDeniedAlertsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiDeniedAlertGetDeniedAlertsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiEnrollmentAddToExistingCertStoresRequest ¶

type ApiEnrollmentAddToExistingCertStoresRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiEnrollmentAddToExistingCertStoresRequest) Request ¶

The request to create the management jobs, which includes the request Id of the new pfx and the Id of the existing certificate

func (ApiEnrollmentAddToExistingCertStoresRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiEnrollmentAddToExistingCertStoresRequest) XKeyfactorRequestedWith ¶

func (r ApiEnrollmentAddToExistingCertStoresRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiEnrollmentAddToExistingCertStoresRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiEnrollmentAvailableRenewalIdRequest ¶

type ApiEnrollmentAvailableRenewalIdRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiEnrollmentAvailableRenewalIdRequest) CollectionId ¶

The collection id for the given certificate

func (ApiEnrollmentAvailableRenewalIdRequest) Execute ¶

func (ApiEnrollmentAvailableRenewalIdRequest) XKeyfactorApiVersion ¶

func (r ApiEnrollmentAvailableRenewalIdRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiEnrollmentAvailableRenewalIdRequest

Desired version of the api, if not provided defaults to v1

func (ApiEnrollmentAvailableRenewalIdRequest) XKeyfactorRequestedWith ¶

func (r ApiEnrollmentAvailableRenewalIdRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiEnrollmentAvailableRenewalIdRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiEnrollmentAvailableRenewalThumbprintRequest ¶

type ApiEnrollmentAvailableRenewalThumbprintRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiEnrollmentAvailableRenewalThumbprintRequest) CollectionId ¶

The collection id for the given certificate

func (ApiEnrollmentAvailableRenewalThumbprintRequest) Execute ¶

func (ApiEnrollmentAvailableRenewalThumbprintRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiEnrollmentAvailableRenewalThumbprintRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiEnrollmentGetMyCSRContextRequest ¶

type ApiEnrollmentGetMyCSRContextRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiEnrollmentGetMyCSRContextRequest) Execute ¶

func (ApiEnrollmentGetMyCSRContextRequest) XKeyfactorApiVersion ¶

func (r ApiEnrollmentGetMyCSRContextRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiEnrollmentGetMyCSRContextRequest

Desired version of the api, if not provided defaults to v1

func (ApiEnrollmentGetMyCSRContextRequest) XKeyfactorRequestedWith ¶

func (r ApiEnrollmentGetMyCSRContextRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiEnrollmentGetMyCSRContextRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiEnrollmentGetMyPFXContextRequest ¶

type ApiEnrollmentGetMyPFXContextRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiEnrollmentGetMyPFXContextRequest) Execute ¶

func (ApiEnrollmentGetMyPFXContextRequest) XKeyfactorApiVersion ¶

func (r ApiEnrollmentGetMyPFXContextRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiEnrollmentGetMyPFXContextRequest

Desired version of the api, if not provided defaults to v1

func (ApiEnrollmentGetMyPFXContextRequest) XKeyfactorRequestedWith ¶

func (r ApiEnrollmentGetMyPFXContextRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiEnrollmentGetMyPFXContextRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiEnrollmentGetTemplateEnrollmentSettingsRequest ¶

type ApiEnrollmentGetTemplateEnrollmentSettingsRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiEnrollmentGetTemplateEnrollmentSettingsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiEnrollmentGetTemplateEnrollmentSettingsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiEnrollmentInstallPFXToCertStoreRequest ¶

type ApiEnrollmentInstallPFXToCertStoreRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiEnrollmentInstallPFXToCertStoreRequest) Request ¶

The request to create the management jobs, which includes the request Id of the new pfx and the Ids and management job properties of the cert stores to add the pfx to

func (ApiEnrollmentInstallPFXToCertStoreRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiEnrollmentInstallPFXToCertStoreRequest) XKeyfactorRequestedWith ¶

func (r ApiEnrollmentInstallPFXToCertStoreRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiEnrollmentInstallPFXToCertStoreRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiEnrollmentPostCSREnrollRequest ¶

type ApiEnrollmentPostCSREnrollRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiEnrollmentPostCSREnrollRequest) Execute ¶

func (ApiEnrollmentPostCSREnrollRequest) Request ¶

Information needed to perform the CSR Enrollment

func (ApiEnrollmentPostCSREnrollRequest) XCertificateformat ¶

func (r ApiEnrollmentPostCSREnrollRequest) XCertificateformat(xCertificateformat string) ApiEnrollmentPostCSREnrollRequest

Desired format [PEM, DER]

func (ApiEnrollmentPostCSREnrollRequest) XKeyfactorApiVersion ¶

func (r ApiEnrollmentPostCSREnrollRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiEnrollmentPostCSREnrollRequest

Desired version of the api, if not provided defaults to v1

func (ApiEnrollmentPostCSREnrollRequest) XKeyfactorRequestedWith ¶

func (r ApiEnrollmentPostCSREnrollRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiEnrollmentPostCSREnrollRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiEnrollmentPostPFXEnrollRequest ¶

type ApiEnrollmentPostPFXEnrollRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiEnrollmentPostPFXEnrollRequest) Execute ¶

func (ApiEnrollmentPostPFXEnrollRequest) Request ¶

The information needed to perform the PFX Enrollment

func (ApiEnrollmentPostPFXEnrollRequest) XCertificateformat ¶

func (r ApiEnrollmentPostPFXEnrollRequest) XCertificateformat(xCertificateformat string) ApiEnrollmentPostPFXEnrollRequest

Desired format [PFX, Zip, STORE]

func (ApiEnrollmentPostPFXEnrollRequest) XKeyfactorApiVersion ¶

func (r ApiEnrollmentPostPFXEnrollRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiEnrollmentPostPFXEnrollRequest

Desired version of the api, if not provided defaults to v1

func (ApiEnrollmentPostPFXEnrollRequest) XKeyfactorRequestedWith ¶

func (r ApiEnrollmentPostPFXEnrollRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiEnrollmentPostPFXEnrollRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiEnrollmentPostParsedCSRRequest ¶

type ApiEnrollmentPostParsedCSRRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiEnrollmentPostParsedCSRRequest) Csr ¶

CSR to be parsed

func (ApiEnrollmentPostParsedCSRRequest) Execute ¶

func (ApiEnrollmentPostParsedCSRRequest) XKeyfactorApiVersion ¶

func (r ApiEnrollmentPostParsedCSRRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiEnrollmentPostParsedCSRRequest

Desired version of the api, if not provided defaults to v1

func (ApiEnrollmentPostParsedCSRRequest) XKeyfactorRequestedWith ¶

func (r ApiEnrollmentPostParsedCSRRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiEnrollmentPostParsedCSRRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiEnrollmentRenewRequest ¶

type ApiEnrollmentRenewRequest struct {
	ApiService *EnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiEnrollmentRenewRequest) CollectionId ¶

func (r ApiEnrollmentRenewRequest) CollectionId(collectionId int32) ApiEnrollmentRenewRequest

The collection id for the given certificate

func (ApiEnrollmentRenewRequest) Execute ¶

func (ApiEnrollmentRenewRequest) Request ¶

The information needed to perform the renewal

func (ApiEnrollmentRenewRequest) XKeyfactorApiVersion ¶

func (r ApiEnrollmentRenewRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiEnrollmentRenewRequest

Desired version of the api, if not provided defaults to v1

func (ApiEnrollmentRenewRequest) XKeyfactorRequestedWith ¶

func (r ApiEnrollmentRenewRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiEnrollmentRenewRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiExpirationAlertAddExpirationAlertRequest ¶

type ApiExpirationAlertAddExpirationAlertRequest struct {
	ApiService *ExpirationAlertApiService
	// contains filtered or unexported fields
}

func (ApiExpirationAlertAddExpirationAlertRequest) Req ¶

Information for the new alert

func (ApiExpirationAlertAddExpirationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiExpirationAlertAddExpirationAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiExpirationAlertAddExpirationAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiExpirationAlertAddExpirationAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiExpirationAlertDeleteExpirationAlertRequest ¶

type ApiExpirationAlertDeleteExpirationAlertRequest struct {
	ApiService *ExpirationAlertApiService
	// contains filtered or unexported fields
}

func (ApiExpirationAlertDeleteExpirationAlertRequest) Execute ¶

func (ApiExpirationAlertDeleteExpirationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiExpirationAlertDeleteExpirationAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiExpirationAlertEditExpirationAlertRequest ¶

type ApiExpirationAlertEditExpirationAlertRequest struct {
	ApiService *ExpirationAlertApiService
	// contains filtered or unexported fields
}

func (ApiExpirationAlertEditExpirationAlertRequest) Req ¶

Information for the expiration alert

func (ApiExpirationAlertEditExpirationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiExpirationAlertEditExpirationAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiExpirationAlertEditScheduleRequest ¶

type ApiExpirationAlertEditScheduleRequest struct {
	ApiService *ExpirationAlertApiService
	// contains filtered or unexported fields
}

func (ApiExpirationAlertEditScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiExpirationAlertEditScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiExpirationAlertEditScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiExpirationAlertEditScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiExpirationAlertEditScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiExpirationAlertEditScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiExpirationAlertGetExpirationAlertRequest ¶

type ApiExpirationAlertGetExpirationAlertRequest struct {
	ApiService *ExpirationAlertApiService
	// contains filtered or unexported fields
}

func (ApiExpirationAlertGetExpirationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiExpirationAlertGetExpirationAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiExpirationAlertGetExpirationAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiExpirationAlertGetExpirationAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiExpirationAlertGetExpirationAlertsRequest ¶

type ApiExpirationAlertGetExpirationAlertsRequest struct {
	ApiService *ExpirationAlertApiService
	// contains filtered or unexported fields
}

func (ApiExpirationAlertGetExpirationAlertsRequest) PagedQueryPageReturned ¶

The current page within the result set to be returned

func (ApiExpirationAlertGetExpirationAlertsRequest) PagedQueryQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiExpirationAlertGetExpirationAlertsRequest) PagedQueryReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiExpirationAlertGetExpirationAlertsRequest) PagedQuerySortAscending ¶

func (r ApiExpirationAlertGetExpirationAlertsRequest) PagedQuerySortAscending(pagedQuerySortAscending int32) ApiExpirationAlertGetExpirationAlertsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiExpirationAlertGetExpirationAlertsRequest) PagedQuerySortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiExpirationAlertGetExpirationAlertsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiExpirationAlertGetExpirationAlertsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiExpirationAlertGetScheduleRequest ¶

type ApiExpirationAlertGetScheduleRequest struct {
	ApiService *ExpirationAlertApiService
	// contains filtered or unexported fields
}

func (ApiExpirationAlertGetScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiExpirationAlertGetScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiExpirationAlertGetScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiExpirationAlertGetScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiExpirationAlertGetScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiExpirationAlertGetScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiExpirationAlertTestAllExpirationAlertRequest ¶

type ApiExpirationAlertTestAllExpirationAlertRequest struct {
	ApiService *ExpirationAlertApiService
	// contains filtered or unexported fields
}

func (ApiExpirationAlertTestAllExpirationAlertRequest) ExpirationAlertTestRequest ¶

Information about the expiration alert test

func (ApiExpirationAlertTestAllExpirationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiExpirationAlertTestAllExpirationAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiExpirationAlertTestExpirationAlertRequest ¶

type ApiExpirationAlertTestExpirationAlertRequest struct {
	ApiService *ExpirationAlertApiService
	// contains filtered or unexported fields
}

func (ApiExpirationAlertTestExpirationAlertRequest) ExpirationAlertTestRequest ¶

Information about the expiration alert test

func (ApiExpirationAlertTestExpirationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiExpirationAlertTestExpirationAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiIssuedAlertAddIssuedAlertRequest ¶

type ApiIssuedAlertAddIssuedAlertRequest struct {
	ApiService *IssuedAlertApiService
	// contains filtered or unexported fields
}

func (ApiIssuedAlertAddIssuedAlertRequest) Req ¶

Information for the new alert

func (ApiIssuedAlertAddIssuedAlertRequest) XKeyfactorApiVersion ¶

func (r ApiIssuedAlertAddIssuedAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiIssuedAlertAddIssuedAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiIssuedAlertAddIssuedAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiIssuedAlertAddIssuedAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiIssuedAlertAddIssuedAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiIssuedAlertDeleteIssuedAlertRequest ¶

type ApiIssuedAlertDeleteIssuedAlertRequest struct {
	ApiService *IssuedAlertApiService
	// contains filtered or unexported fields
}

func (ApiIssuedAlertDeleteIssuedAlertRequest) Execute ¶

func (ApiIssuedAlertDeleteIssuedAlertRequest) XKeyfactorApiVersion ¶

func (r ApiIssuedAlertDeleteIssuedAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiIssuedAlertDeleteIssuedAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiIssuedAlertDeleteIssuedAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiIssuedAlertDeleteIssuedAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiIssuedAlertDeleteIssuedAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiIssuedAlertEditIssuedAlertRequest ¶

type ApiIssuedAlertEditIssuedAlertRequest struct {
	ApiService *IssuedAlertApiService
	// contains filtered or unexported fields
}

func (ApiIssuedAlertEditIssuedAlertRequest) Req ¶

Information for the issued alert

func (ApiIssuedAlertEditIssuedAlertRequest) XKeyfactorApiVersion ¶

func (r ApiIssuedAlertEditIssuedAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiIssuedAlertEditIssuedAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiIssuedAlertEditIssuedAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiIssuedAlertEditIssuedAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiIssuedAlertEditIssuedAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiIssuedAlertEditScheduleRequest ¶

type ApiIssuedAlertEditScheduleRequest struct {
	ApiService *IssuedAlertApiService
	// contains filtered or unexported fields
}

func (ApiIssuedAlertEditScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiIssuedAlertEditScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiIssuedAlertEditScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiIssuedAlertEditScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiIssuedAlertEditScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiIssuedAlertEditScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiIssuedAlertGetIssuedAlertRequest ¶

type ApiIssuedAlertGetIssuedAlertRequest struct {
	ApiService *IssuedAlertApiService
	// contains filtered or unexported fields
}

func (ApiIssuedAlertGetIssuedAlertRequest) XKeyfactorApiVersion ¶

func (r ApiIssuedAlertGetIssuedAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiIssuedAlertGetIssuedAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiIssuedAlertGetIssuedAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiIssuedAlertGetIssuedAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiIssuedAlertGetIssuedAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiIssuedAlertGetIssuedAlertsRequest ¶

type ApiIssuedAlertGetIssuedAlertsRequest struct {
	ApiService *IssuedAlertApiService
	// contains filtered or unexported fields
}

func (ApiIssuedAlertGetIssuedAlertsRequest) PagedQueryPageReturned ¶

func (r ApiIssuedAlertGetIssuedAlertsRequest) PagedQueryPageReturned(pagedQueryPageReturned int32) ApiIssuedAlertGetIssuedAlertsRequest

The current page within the result set to be returned

func (ApiIssuedAlertGetIssuedAlertsRequest) PagedQueryQueryString ¶

func (r ApiIssuedAlertGetIssuedAlertsRequest) PagedQueryQueryString(pagedQueryQueryString string) ApiIssuedAlertGetIssuedAlertsRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiIssuedAlertGetIssuedAlertsRequest) PagedQueryReturnLimit ¶

func (r ApiIssuedAlertGetIssuedAlertsRequest) PagedQueryReturnLimit(pagedQueryReturnLimit int32) ApiIssuedAlertGetIssuedAlertsRequest

Maximum number of records to be returned in a single call

func (ApiIssuedAlertGetIssuedAlertsRequest) PagedQuerySortAscending ¶

func (r ApiIssuedAlertGetIssuedAlertsRequest) PagedQuerySortAscending(pagedQuerySortAscending int32) ApiIssuedAlertGetIssuedAlertsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiIssuedAlertGetIssuedAlertsRequest) PagedQuerySortField ¶

func (r ApiIssuedAlertGetIssuedAlertsRequest) PagedQuerySortField(pagedQuerySortField string) ApiIssuedAlertGetIssuedAlertsRequest

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiIssuedAlertGetIssuedAlertsRequest) XKeyfactorApiVersion ¶

func (r ApiIssuedAlertGetIssuedAlertsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiIssuedAlertGetIssuedAlertsRequest

Desired version of the api, if not provided defaults to v1

func (ApiIssuedAlertGetIssuedAlertsRequest) XKeyfactorRequestedWith ¶

func (r ApiIssuedAlertGetIssuedAlertsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiIssuedAlertGetIssuedAlertsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiIssuedAlertGetScheduleRequest ¶

type ApiIssuedAlertGetScheduleRequest struct {
	ApiService *IssuedAlertApiService
	// contains filtered or unexported fields
}

func (ApiIssuedAlertGetScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiIssuedAlertGetScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiIssuedAlertGetScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiIssuedAlertGetScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiIssuedAlertGetScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiIssuedAlertGetScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyDeleteUnmanagedKeyRequest ¶

type ApiKeyDeleteUnmanagedKeyRequest struct {
	ApiService *KeyApiService
	// contains filtered or unexported fields
}

func (ApiKeyDeleteUnmanagedKeyRequest) Execute ¶

func (ApiKeyDeleteUnmanagedKeyRequest) XKeyfactorApiVersion ¶

func (r ApiKeyDeleteUnmanagedKeyRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiKeyDeleteUnmanagedKeyRequest

Desired version of the api, if not provided defaults to v1

func (ApiKeyDeleteUnmanagedKeyRequest) XKeyfactorRequestedWith ¶

func (r ApiKeyDeleteUnmanagedKeyRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiKeyDeleteUnmanagedKeyRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyDeleteUnmanagedKeysRequest ¶

type ApiKeyDeleteUnmanagedKeysRequest struct {
	ApiService *KeyApiService
	// contains filtered or unexported fields
}

func (ApiKeyDeleteUnmanagedKeysRequest) Execute ¶

func (ApiKeyDeleteUnmanagedKeysRequest) Ids ¶

Keyfactor identifers of the Keys to be deleted

func (ApiKeyDeleteUnmanagedKeysRequest) XKeyfactorApiVersion ¶

func (r ApiKeyDeleteUnmanagedKeysRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiKeyDeleteUnmanagedKeysRequest

Desired version of the api, if not provided defaults to v1

func (ApiKeyDeleteUnmanagedKeysRequest) XKeyfactorRequestedWith ¶

func (r ApiKeyDeleteUnmanagedKeysRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiKeyDeleteUnmanagedKeysRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyGenerateKeyRequest ¶

type ApiKeyGenerateKeyRequest struct {
	ApiService *KeyApiService
	// contains filtered or unexported fields
}

func (ApiKeyGenerateKeyRequest) Execute ¶

func (ApiKeyGenerateKeyRequest) GenerationRequest ¶

Object containing information about the key to be generated

func (ApiKeyGenerateKeyRequest) XKeyfactorApiVersion ¶

func (r ApiKeyGenerateKeyRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiKeyGenerateKeyRequest

Desired version of the api, if not provided defaults to v1

func (ApiKeyGenerateKeyRequest) XKeyfactorRequestedWith ¶

func (r ApiKeyGenerateKeyRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiKeyGenerateKeyRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyGetMyKeyRequest ¶

type ApiKeyGetMyKeyRequest struct {
	ApiService *KeyApiService
	// contains filtered or unexported fields
}

func (ApiKeyGetMyKeyRequest) Execute ¶

func (ApiKeyGetMyKeyRequest) IncludePrivateKey ¶

func (r ApiKeyGetMyKeyRequest) IncludePrivateKey(includePrivateKey bool) ApiKeyGetMyKeyRequest

Whether or not to include the private key. If true, you must supply the X-Keyfactor-Key-Passphrase header

func (ApiKeyGetMyKeyRequest) XKeyfactorApiVersion ¶

func (r ApiKeyGetMyKeyRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiKeyGetMyKeyRequest

Desired version of the api, if not provided defaults to v1

func (ApiKeyGetMyKeyRequest) XKeyfactorKeyPassphrase ¶

func (r ApiKeyGetMyKeyRequest) XKeyfactorKeyPassphrase(xKeyfactorKeyPassphrase string) ApiKeyGetMyKeyRequest

Key password

func (ApiKeyGetMyKeyRequest) XKeyfactorRequestedWith ¶

func (r ApiKeyGetMyKeyRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiKeyGetMyKeyRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyGetUnmanagedKeyRequest ¶

type ApiKeyGetUnmanagedKeyRequest struct {
	ApiService *KeyApiService
	// contains filtered or unexported fields
}

func (ApiKeyGetUnmanagedKeyRequest) Execute ¶

func (ApiKeyGetUnmanagedKeyRequest) XKeyfactorApiVersion ¶

func (r ApiKeyGetUnmanagedKeyRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiKeyGetUnmanagedKeyRequest

Desired version of the api, if not provided defaults to v1

func (ApiKeyGetUnmanagedKeyRequest) XKeyfactorRequestedWith ¶

func (r ApiKeyGetUnmanagedKeyRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiKeyGetUnmanagedKeyRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyGetUnmanagedKeysRequest ¶

type ApiKeyGetUnmanagedKeysRequest struct {
	ApiService *KeyApiService
	// contains filtered or unexported fields
}

func (ApiKeyGetUnmanagedKeysRequest) Execute ¶

func (ApiKeyGetUnmanagedKeysRequest) PqPageReturned ¶

func (r ApiKeyGetUnmanagedKeysRequest) PqPageReturned(pqPageReturned int32) ApiKeyGetUnmanagedKeysRequest

The current page within the result set to be returned

func (ApiKeyGetUnmanagedKeysRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiKeyGetUnmanagedKeysRequest) PqReturnLimit ¶

func (r ApiKeyGetUnmanagedKeysRequest) PqReturnLimit(pqReturnLimit int32) ApiKeyGetUnmanagedKeysRequest

Maximum number of records to be returned in a single call

func (ApiKeyGetUnmanagedKeysRequest) PqSortAscending ¶

func (r ApiKeyGetUnmanagedKeysRequest) PqSortAscending(pqSortAscending int32) ApiKeyGetUnmanagedKeysRequest

Field sort direction [0=ascending, 1=descending]

func (ApiKeyGetUnmanagedKeysRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiKeyGetUnmanagedKeysRequest) XKeyfactorApiVersion ¶

func (r ApiKeyGetUnmanagedKeysRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiKeyGetUnmanagedKeysRequest

Desired version of the api, if not provided defaults to v1

func (ApiKeyGetUnmanagedKeysRequest) XKeyfactorRequestedWith ¶

func (r ApiKeyGetUnmanagedKeysRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiKeyGetUnmanagedKeysRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyRotationAlertAddKeyRotationAlertRequest ¶

type ApiKeyRotationAlertAddKeyRotationAlertRequest struct {
	ApiService *KeyRotationAlertApiService
	// contains filtered or unexported fields
}

func (ApiKeyRotationAlertAddKeyRotationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiKeyRotationAlertAddKeyRotationAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyRotationAlertDeleteKeyRotationAlertRequest ¶

type ApiKeyRotationAlertDeleteKeyRotationAlertRequest struct {
	ApiService *KeyRotationAlertApiService
	// contains filtered or unexported fields
}

func (ApiKeyRotationAlertDeleteKeyRotationAlertRequest) Execute ¶

func (ApiKeyRotationAlertDeleteKeyRotationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiKeyRotationAlertDeleteKeyRotationAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyRotationAlertEditKeyRotationAlertRequest ¶

type ApiKeyRotationAlertEditKeyRotationAlertRequest struct {
	ApiService *KeyRotationAlertApiService
	// contains filtered or unexported fields
}

func (ApiKeyRotationAlertEditKeyRotationAlertRequest) Req ¶

Information for the key rotation alert

func (ApiKeyRotationAlertEditKeyRotationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiKeyRotationAlertEditKeyRotationAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyRotationAlertEditScheduleRequest ¶

type ApiKeyRotationAlertEditScheduleRequest struct {
	ApiService *KeyRotationAlertApiService
	// contains filtered or unexported fields
}

func (ApiKeyRotationAlertEditScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiKeyRotationAlertEditScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiKeyRotationAlertEditScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiKeyRotationAlertEditScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiKeyRotationAlertEditScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiKeyRotationAlertEditScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyRotationAlertGetKeyRotationAlertRequest ¶

type ApiKeyRotationAlertGetKeyRotationAlertRequest struct {
	ApiService *KeyRotationAlertApiService
	// contains filtered or unexported fields
}

func (ApiKeyRotationAlertGetKeyRotationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiKeyRotationAlertGetKeyRotationAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyRotationAlertGetKeyRotationAlertsRequest ¶

type ApiKeyRotationAlertGetKeyRotationAlertsRequest struct {
	ApiService *KeyRotationAlertApiService
	// contains filtered or unexported fields
}

func (ApiKeyRotationAlertGetKeyRotationAlertsRequest) PagedQueryPageReturned ¶

The current page within the result set to be returned

func (ApiKeyRotationAlertGetKeyRotationAlertsRequest) PagedQueryQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiKeyRotationAlertGetKeyRotationAlertsRequest) PagedQueryReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiKeyRotationAlertGetKeyRotationAlertsRequest) PagedQuerySortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiKeyRotationAlertGetKeyRotationAlertsRequest) PagedQuerySortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiKeyRotationAlertGetKeyRotationAlertsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiKeyRotationAlertGetKeyRotationAlertsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyRotationAlertGetScheduleRequest ¶

type ApiKeyRotationAlertGetScheduleRequest struct {
	ApiService *KeyRotationAlertApiService
	// contains filtered or unexported fields
}

func (ApiKeyRotationAlertGetScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiKeyRotationAlertGetScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiKeyRotationAlertGetScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiKeyRotationAlertGetScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiKeyRotationAlertGetScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiKeyRotationAlertGetScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyRotationAlertTestAllKeyRotationAlertRequest ¶

type ApiKeyRotationAlertTestAllKeyRotationAlertRequest struct {
	ApiService *KeyRotationAlertApiService
	// contains filtered or unexported fields
}

func (ApiKeyRotationAlertTestAllKeyRotationAlertRequest) KeyRotationAlertTestRequest ¶

Information about the key rotation alert test

func (ApiKeyRotationAlertTestAllKeyRotationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiKeyRotationAlertTestAllKeyRotationAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyRotationAlertTestKeyRotationAlertRequest ¶

type ApiKeyRotationAlertTestKeyRotationAlertRequest struct {
	ApiService *KeyRotationAlertApiService
	// contains filtered or unexported fields
}

func (ApiKeyRotationAlertTestKeyRotationAlertRequest) KeyRotationAlertTestRequest ¶

Parameters used to test the alert

func (ApiKeyRotationAlertTestKeyRotationAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiKeyRotationAlertTestKeyRotationAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiKeyUpdateRequest ¶

type ApiKeyUpdateRequest struct {
	ApiService *KeyApiService
	// contains filtered or unexported fields
}

func (ApiKeyUpdateRequest) Execute ¶

func (ApiKeyUpdateRequest) KeyUpdateRequest ¶

func (r ApiKeyUpdateRequest) KeyUpdateRequest(keyUpdateRequest ModelsSSHKeysKeyUpdateRequest) ApiKeyUpdateRequest

Updated state of the SSH key

func (ApiKeyUpdateRequest) XKeyfactorApiVersion ¶

func (r ApiKeyUpdateRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiKeyUpdateRequest

Desired version of the api, if not provided defaults to v1

func (ApiKeyUpdateRequest) XKeyfactorRequestedWith ¶

func (r ApiKeyUpdateRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiKeyUpdateRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiLicenseGetCurrentLicenseRequest ¶

type ApiLicenseGetCurrentLicenseRequest struct {
	ApiService *LicenseApiService
	// contains filtered or unexported fields
}

func (ApiLicenseGetCurrentLicenseRequest) Execute ¶

func (ApiLicenseGetCurrentLicenseRequest) XKeyfactorApiVersion ¶

func (r ApiLicenseGetCurrentLicenseRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiLicenseGetCurrentLicenseRequest

Desired version of the api, if not provided defaults to v1

func (ApiLicenseGetCurrentLicenseRequest) XKeyfactorRequestedWith ¶

func (r ApiLicenseGetCurrentLicenseRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiLicenseGetCurrentLicenseRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiLogonCreateLogonRequest ¶

type ApiLogonCreateLogonRequest struct {
	ApiService *LogonApiService
	// contains filtered or unexported fields
}

func (ApiLogonCreateLogonRequest) Execute ¶

func (ApiLogonCreateLogonRequest) Logon ¶

Logon properties to be applied to the new logon

func (ApiLogonCreateLogonRequest) XKeyfactorApiVersion ¶

func (r ApiLogonCreateLogonRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiLogonCreateLogonRequest

Desired version of the api, if not provided defaults to v1

func (ApiLogonCreateLogonRequest) XKeyfactorRequestedWith ¶

func (r ApiLogonCreateLogonRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiLogonCreateLogonRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiLogonDeleteRequest ¶

type ApiLogonDeleteRequest struct {
	ApiService *LogonApiService
	// contains filtered or unexported fields
}

func (ApiLogonDeleteRequest) Execute ¶

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

func (ApiLogonDeleteRequest) XKeyfactorApiVersion ¶

func (r ApiLogonDeleteRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiLogonDeleteRequest

Desired version of the api, if not provided defaults to v1

func (ApiLogonDeleteRequest) XKeyfactorRequestedWith ¶

func (r ApiLogonDeleteRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiLogonDeleteRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiLogonGetLogonRequest ¶

type ApiLogonGetLogonRequest struct {
	ApiService *LogonApiService
	// contains filtered or unexported fields
}

func (ApiLogonGetLogonRequest) Execute ¶

func (ApiLogonGetLogonRequest) XKeyfactorApiVersion ¶

func (r ApiLogonGetLogonRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiLogonGetLogonRequest

Desired version of the api, if not provided defaults to v1

func (ApiLogonGetLogonRequest) XKeyfactorRequestedWith ¶

func (r ApiLogonGetLogonRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiLogonGetLogonRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiLogonLogonAccessRequest ¶

type ApiLogonLogonAccessRequest struct {
	ApiService *LogonApiService
	// contains filtered or unexported fields
}

func (ApiLogonLogonAccessRequest) Execute ¶

func (ApiLogonLogonAccessRequest) Logon ¶

Users to add the existing logon

func (ApiLogonLogonAccessRequest) XKeyfactorApiVersion ¶

func (r ApiLogonLogonAccessRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiLogonLogonAccessRequest

Desired version of the api, if not provided defaults to v1

func (ApiLogonLogonAccessRequest) XKeyfactorRequestedWith ¶

func (r ApiLogonLogonAccessRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiLogonLogonAccessRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiLogonQueryLogonsRequest ¶

type ApiLogonQueryLogonsRequest struct {
	ApiService *LogonApiService
	// contains filtered or unexported fields
}

func (ApiLogonQueryLogonsRequest) Execute ¶

func (ApiLogonQueryLogonsRequest) PqPageReturned ¶

func (r ApiLogonQueryLogonsRequest) PqPageReturned(pqPageReturned int32) ApiLogonQueryLogonsRequest

The current page within the result set to be returned

func (ApiLogonQueryLogonsRequest) PqQueryString ¶

func (r ApiLogonQueryLogonsRequest) PqQueryString(pqQueryString string) ApiLogonQueryLogonsRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiLogonQueryLogonsRequest) PqReturnLimit ¶

func (r ApiLogonQueryLogonsRequest) PqReturnLimit(pqReturnLimit int32) ApiLogonQueryLogonsRequest

Maximum number of records to be returned in a single call

func (ApiLogonQueryLogonsRequest) PqSortAscending ¶

func (r ApiLogonQueryLogonsRequest) PqSortAscending(pqSortAscending int32) ApiLogonQueryLogonsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiLogonQueryLogonsRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiLogonQueryLogonsRequest) XKeyfactorApiVersion ¶

func (r ApiLogonQueryLogonsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiLogonQueryLogonsRequest

Desired version of the api, if not provided defaults to v1

func (ApiLogonQueryLogonsRequest) XKeyfactorRequestedWith ¶

func (r ApiLogonQueryLogonsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiLogonQueryLogonsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiMacEnrollmentEditMacEnrollmentRequest ¶

type ApiMacEnrollmentEditMacEnrollmentRequest struct {
	ApiService *MacEnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiMacEnrollmentEditMacEnrollmentRequest) Execute ¶

func (ApiMacEnrollmentEditMacEnrollmentRequest) MacEnrollmentSettings ¶

func (ApiMacEnrollmentEditMacEnrollmentRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMacEnrollmentEditMacEnrollmentRequest) XKeyfactorRequestedWith ¶

func (r ApiMacEnrollmentEditMacEnrollmentRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMacEnrollmentEditMacEnrollmentRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiMacEnrollmentMacEnrollmentRequest ¶

type ApiMacEnrollmentMacEnrollmentRequest struct {
	ApiService *MacEnrollmentApiService
	// contains filtered or unexported fields
}

func (ApiMacEnrollmentMacEnrollmentRequest) XKeyfactorApiVersion ¶

func (r ApiMacEnrollmentMacEnrollmentRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiMacEnrollmentMacEnrollmentRequest

Desired version of the api, if not provided defaults to v1

func (ApiMacEnrollmentMacEnrollmentRequest) XKeyfactorRequestedWith ¶

func (r ApiMacEnrollmentMacEnrollmentRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMacEnrollmentMacEnrollmentRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiMetadataFieldCreateMetadataFieldRequest ¶

type ApiMetadataFieldCreateMetadataFieldRequest struct {
	ApiService *MetadataFieldApiService
	// contains filtered or unexported fields
}

func (ApiMetadataFieldCreateMetadataFieldRequest) Execute ¶

func (ApiMetadataFieldCreateMetadataFieldRequest) MetadataFieldType ¶

Properties of the metadata field type to be created

func (ApiMetadataFieldCreateMetadataFieldRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMetadataFieldCreateMetadataFieldRequest) XKeyfactorRequestedWith ¶

func (r ApiMetadataFieldCreateMetadataFieldRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMetadataFieldCreateMetadataFieldRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiMetadataFieldDeleteMetadataFieldRequest ¶

type ApiMetadataFieldDeleteMetadataFieldRequest struct {
	ApiService *MetadataFieldApiService
	// contains filtered or unexported fields
}

func (ApiMetadataFieldDeleteMetadataFieldRequest) Execute ¶

func (ApiMetadataFieldDeleteMetadataFieldRequest) Force ¶

Forces deletion of the metadata field type even if in-use

func (ApiMetadataFieldDeleteMetadataFieldRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMetadataFieldDeleteMetadataFieldRequest) XKeyfactorRequestedWith ¶

func (r ApiMetadataFieldDeleteMetadataFieldRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMetadataFieldDeleteMetadataFieldRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiMetadataFieldDeleteMetadataFieldsRequest ¶

type ApiMetadataFieldDeleteMetadataFieldsRequest struct {
	ApiService *MetadataFieldApiService
	// contains filtered or unexported fields
}

func (ApiMetadataFieldDeleteMetadataFieldsRequest) Execute ¶

func (ApiMetadataFieldDeleteMetadataFieldsRequest) Force ¶

Forces deletion of the metadata field type even if in-use

func (ApiMetadataFieldDeleteMetadataFieldsRequest) Ids ¶

Array of Keyfactor identifiers for metadata field types to be deleted

func (ApiMetadataFieldDeleteMetadataFieldsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMetadataFieldDeleteMetadataFieldsRequest) XKeyfactorRequestedWith ¶

func (r ApiMetadataFieldDeleteMetadataFieldsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMetadataFieldDeleteMetadataFieldsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiMetadataFieldGetAllMetadataFieldsRequest ¶

type ApiMetadataFieldGetAllMetadataFieldsRequest struct {
	ApiService *MetadataFieldApiService
	// contains filtered or unexported fields
}

func (ApiMetadataFieldGetAllMetadataFieldsRequest) Execute ¶

func (ApiMetadataFieldGetAllMetadataFieldsRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiMetadataFieldGetAllMetadataFieldsRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiMetadataFieldGetAllMetadataFieldsRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiMetadataFieldGetAllMetadataFieldsRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiMetadataFieldGetAllMetadataFieldsRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiMetadataFieldGetAllMetadataFieldsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMetadataFieldGetAllMetadataFieldsRequest) XKeyfactorRequestedWith ¶

func (r ApiMetadataFieldGetAllMetadataFieldsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMetadataFieldGetAllMetadataFieldsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiMetadataFieldGetMetadataField0Request ¶

type ApiMetadataFieldGetMetadataField0Request struct {
	ApiService *MetadataFieldApiService
	// contains filtered or unexported fields
}

func (ApiMetadataFieldGetMetadataField0Request) Execute ¶

func (ApiMetadataFieldGetMetadataField0Request) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMetadataFieldGetMetadataField0Request) XKeyfactorRequestedWith ¶

func (r ApiMetadataFieldGetMetadataField0Request) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMetadataFieldGetMetadataField0Request

Type of the request [XMLHttpRequest, APIClient]

type ApiMetadataFieldGetMetadataField1Request ¶

type ApiMetadataFieldGetMetadataField1Request struct {
	ApiService *MetadataFieldApiService
	// contains filtered or unexported fields
}

func (ApiMetadataFieldGetMetadataField1Request) Execute ¶

func (ApiMetadataFieldGetMetadataField1Request) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMetadataFieldGetMetadataField1Request) XKeyfactorRequestedWith ¶

func (r ApiMetadataFieldGetMetadataField1Request) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMetadataFieldGetMetadataField1Request

Type of the request [XMLHttpRequest, APIClient]

type ApiMetadataFieldGetMetadataFieldInUseRequest ¶

type ApiMetadataFieldGetMetadataFieldInUseRequest struct {
	ApiService *MetadataFieldApiService
	// contains filtered or unexported fields
}

func (ApiMetadataFieldGetMetadataFieldInUseRequest) Execute ¶

func (ApiMetadataFieldGetMetadataFieldInUseRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMetadataFieldGetMetadataFieldInUseRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiMetadataFieldUpdateMetadataFieldRequest ¶

type ApiMetadataFieldUpdateMetadataFieldRequest struct {
	ApiService *MetadataFieldApiService
	// contains filtered or unexported fields
}

func (ApiMetadataFieldUpdateMetadataFieldRequest) Execute ¶

func (ApiMetadataFieldUpdateMetadataFieldRequest) MetadataFieldType ¶

Properties of the metadata field type to be updated

func (ApiMetadataFieldUpdateMetadataFieldRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMetadataFieldUpdateMetadataFieldRequest) XKeyfactorRequestedWith ¶

func (r ApiMetadataFieldUpdateMetadataFieldRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMetadataFieldUpdateMetadataFieldRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiMonitoringAddRevocationMonitoringRequest ¶

type ApiMonitoringAddRevocationMonitoringRequest struct {
	ApiService *MonitoringApiService
	// contains filtered or unexported fields
}

func (ApiMonitoringAddRevocationMonitoringRequest) Endpoint ¶

Information for the new endpoint

func (ApiMonitoringAddRevocationMonitoringRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMonitoringAddRevocationMonitoringRequest) XKeyfactorRequestedWith ¶

func (r ApiMonitoringAddRevocationMonitoringRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMonitoringAddRevocationMonitoringRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiMonitoringDeleteRevocationMonitoringRequest ¶

type ApiMonitoringDeleteRevocationMonitoringRequest struct {
	ApiService *MonitoringApiService
	// contains filtered or unexported fields
}

func (ApiMonitoringDeleteRevocationMonitoringRequest) Execute ¶

func (ApiMonitoringDeleteRevocationMonitoringRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMonitoringDeleteRevocationMonitoringRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiMonitoringEditRevocationMonitoringRequest ¶

type ApiMonitoringEditRevocationMonitoringRequest struct {
	ApiService *MonitoringApiService
	// contains filtered or unexported fields
}

func (ApiMonitoringEditRevocationMonitoringRequest) Endpoint ¶

Information for the endpoint

func (ApiMonitoringEditRevocationMonitoringRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMonitoringEditRevocationMonitoringRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiMonitoringGetRevocationMonitoringEndpointsRequest ¶

type ApiMonitoringGetRevocationMonitoringEndpointsRequest struct {
	ApiService *MonitoringApiService
	// contains filtered or unexported fields
}

func (ApiMonitoringGetRevocationMonitoringEndpointsRequest) PagedQueryPageReturned ¶

The current page within the result set to be returned

func (ApiMonitoringGetRevocationMonitoringEndpointsRequest) PagedQueryQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiMonitoringGetRevocationMonitoringEndpointsRequest) PagedQueryReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiMonitoringGetRevocationMonitoringEndpointsRequest) PagedQuerySortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiMonitoringGetRevocationMonitoringEndpointsRequest) PagedQuerySortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiMonitoringGetRevocationMonitoringEndpointsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMonitoringGetRevocationMonitoringEndpointsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiMonitoringGetRevocationMonitoringRequest ¶

type ApiMonitoringGetRevocationMonitoringRequest struct {
	ApiService *MonitoringApiService
	// contains filtered or unexported fields
}

func (ApiMonitoringGetRevocationMonitoringRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMonitoringGetRevocationMonitoringRequest) XKeyfactorRequestedWith ¶

func (r ApiMonitoringGetRevocationMonitoringRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMonitoringGetRevocationMonitoringRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiMonitoringResolveOCSPRequest ¶

type ApiMonitoringResolveOCSPRequest struct {
	ApiService *MonitoringApiService
	// contains filtered or unexported fields
}

func (ApiMonitoringResolveOCSPRequest) Endpoint ¶

Information for the new endpoint

func (ApiMonitoringResolveOCSPRequest) XKeyfactorApiVersion ¶

func (r ApiMonitoringResolveOCSPRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiMonitoringResolveOCSPRequest

Desired version of the api, if not provided defaults to v1

func (ApiMonitoringResolveOCSPRequest) XKeyfactorRequestedWith ¶

func (r ApiMonitoringResolveOCSPRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiMonitoringResolveOCSPRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiMonitoringTestAllRevocationMonitoringAlertRequest ¶

type ApiMonitoringTestAllRevocationMonitoringAlertRequest struct {
	ApiService *MonitoringApiService
	// contains filtered or unexported fields
}

func (ApiMonitoringTestAllRevocationMonitoringAlertRequest) RevocationMonitoringAlertTestRequest ¶

Information about the revocation monitoring alert test

func (ApiMonitoringTestAllRevocationMonitoringAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMonitoringTestAllRevocationMonitoringAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiMonitoringTestRevocationMonitoringAlertRequest ¶

type ApiMonitoringTestRevocationMonitoringAlertRequest struct {
	ApiService *MonitoringApiService
	// contains filtered or unexported fields
}

func (ApiMonitoringTestRevocationMonitoringAlertRequest) RevocationMonitoringAlertTestRequest ¶

Information about the revocation monitoring alert test

func (ApiMonitoringTestRevocationMonitoringAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiMonitoringTestRevocationMonitoringAlertRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiOrchestratorJobAcknowledgeJobsRequest ¶

type ApiOrchestratorJobAcknowledgeJobsRequest struct {
	ApiService *OrchestratorJobApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorJobAcknowledgeJobsRequest) Execute ¶

func (ApiOrchestratorJobAcknowledgeJobsRequest) Req ¶

Information to identify the jobs to acknowledge, either a query or a list of job identifiers

func (ApiOrchestratorJobAcknowledgeJobsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiOrchestratorJobAcknowledgeJobsRequest) XKeyfactorRequestedWith ¶

func (r ApiOrchestratorJobAcknowledgeJobsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiOrchestratorJobAcknowledgeJobsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiOrchestratorJobGetCustomJobResultDataRequest ¶

type ApiOrchestratorJobGetCustomJobResultDataRequest struct {
	ApiService *OrchestratorJobApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorJobGetCustomJobResultDataRequest) JobHistoryId ¶

Identifier of the job history record to retrieve

func (ApiOrchestratorJobGetCustomJobResultDataRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiOrchestratorJobGetCustomJobResultDataRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiOrchestratorJobGetJobHistoryRequest ¶

type ApiOrchestratorJobGetJobHistoryRequest struct {
	ApiService *OrchestratorJobApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorJobGetJobHistoryRequest) Execute ¶

func (ApiOrchestratorJobGetJobHistoryRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiOrchestratorJobGetJobHistoryRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiOrchestratorJobGetJobHistoryRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiOrchestratorJobGetJobHistoryRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiOrchestratorJobGetJobHistoryRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiOrchestratorJobGetJobHistoryRequest) XKeyfactorApiVersion ¶

func (r ApiOrchestratorJobGetJobHistoryRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiOrchestratorJobGetJobHistoryRequest

Desired version of the api, if not provided defaults to v1

func (ApiOrchestratorJobGetJobHistoryRequest) XKeyfactorRequestedWith ¶

func (r ApiOrchestratorJobGetJobHistoryRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiOrchestratorJobGetJobHistoryRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiOrchestratorJobGetScheduledJobsRequest ¶

type ApiOrchestratorJobGetScheduledJobsRequest struct {
	ApiService *OrchestratorJobApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorJobGetScheduledJobsRequest) Execute ¶

func (ApiOrchestratorJobGetScheduledJobsRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiOrchestratorJobGetScheduledJobsRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiOrchestratorJobGetScheduledJobsRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiOrchestratorJobGetScheduledJobsRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiOrchestratorJobGetScheduledJobsRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiOrchestratorJobGetScheduledJobsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiOrchestratorJobGetScheduledJobsRequest) XKeyfactorRequestedWith ¶

func (r ApiOrchestratorJobGetScheduledJobsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiOrchestratorJobGetScheduledJobsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiOrchestratorJobRescheduleJobsRequest ¶

type ApiOrchestratorJobRescheduleJobsRequest struct {
	ApiService *OrchestratorJobApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorJobRescheduleJobsRequest) Execute ¶

func (ApiOrchestratorJobRescheduleJobsRequest) Req ¶

Information to identify the jobs to reschedule, either a query or a list of job identifiers

func (ApiOrchestratorJobRescheduleJobsRequest) XKeyfactorApiVersion ¶

func (r ApiOrchestratorJobRescheduleJobsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiOrchestratorJobRescheduleJobsRequest

Desired version of the api, if not provided defaults to v1

func (ApiOrchestratorJobRescheduleJobsRequest) XKeyfactorRequestedWith ¶

func (r ApiOrchestratorJobRescheduleJobsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiOrchestratorJobRescheduleJobsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiOrchestratorJobScheduleBulkJobRequest ¶

type ApiOrchestratorJobScheduleBulkJobRequest struct {
	ApiService *OrchestratorJobApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorJobScheduleBulkJobRequest) Execute ¶

func (ApiOrchestratorJobScheduleBulkJobRequest) Req ¶

Information to use to schedule the jobs, including the type of custom job, agents to use, and job-specific parameters.

func (ApiOrchestratorJobScheduleBulkJobRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiOrchestratorJobScheduleBulkJobRequest) XKeyfactorRequestedWith ¶

func (r ApiOrchestratorJobScheduleBulkJobRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiOrchestratorJobScheduleBulkJobRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiOrchestratorJobScheduleJobRequest ¶

type ApiOrchestratorJobScheduleJobRequest struct {
	ApiService *OrchestratorJobApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorJobScheduleJobRequest) Execute ¶

func (ApiOrchestratorJobScheduleJobRequest) Req ¶

Information to use to schedule the job, including the type of custom job, agent to use, and job-specific parameters.

func (ApiOrchestratorJobScheduleJobRequest) XKeyfactorApiVersion ¶

func (r ApiOrchestratorJobScheduleJobRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiOrchestratorJobScheduleJobRequest

Desired version of the api, if not provided defaults to v1

func (ApiOrchestratorJobScheduleJobRequest) XKeyfactorRequestedWith ¶

func (r ApiOrchestratorJobScheduleJobRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiOrchestratorJobScheduleJobRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiOrchestratorJobUnscheduleJobsRequest ¶

type ApiOrchestratorJobUnscheduleJobsRequest struct {
	ApiService *OrchestratorJobApiService
	// contains filtered or unexported fields
}

func (ApiOrchestratorJobUnscheduleJobsRequest) Execute ¶

func (ApiOrchestratorJobUnscheduleJobsRequest) Req ¶

Information to identify the orchestrator jobs to unschedule, either a query or a list of job identifiers

func (ApiOrchestratorJobUnscheduleJobsRequest) XKeyfactorApiVersion ¶

func (r ApiOrchestratorJobUnscheduleJobsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiOrchestratorJobUnscheduleJobsRequest

Desired version of the api, if not provided defaults to v1

func (ApiOrchestratorJobUnscheduleJobsRequest) XKeyfactorRequestedWith ¶

func (r ApiOrchestratorJobUnscheduleJobsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiOrchestratorJobUnscheduleJobsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPAMProviderCreatePamProviderRequest ¶ added in v0.2.0

type ApiPAMProviderCreatePamProviderRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

func (ApiPAMProviderCreatePamProviderRequest) Execute ¶ added in v0.2.0

func (ApiPAMProviderCreatePamProviderRequest) Provider ¶ added in v0.2.0

PAM provider properties to be used

func (ApiPAMProviderCreatePamProviderRequest) XKeyfactorApiVersion ¶ added in v0.2.0

func (r ApiPAMProviderCreatePamProviderRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPAMProviderCreatePamProviderRequest

Desired version of the api, if not provided defaults to v1

func (ApiPAMProviderCreatePamProviderRequest) XKeyfactorRequestedWith ¶ added in v0.2.0

func (r ApiPAMProviderCreatePamProviderRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPAMProviderCreatePamProviderRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPAMProviderCreatePamProviderTypeRequest ¶

type ApiPAMProviderCreatePamProviderTypeRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

func (ApiPAMProviderCreatePamProviderTypeRequest) Execute ¶

func (ApiPAMProviderCreatePamProviderTypeRequest) Type_ ¶

PAM provider type properties to be used

func (ApiPAMProviderCreatePamProviderTypeRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiPAMProviderCreatePamProviderTypeRequest) XKeyfactorRequestedWith ¶

func (r ApiPAMProviderCreatePamProviderTypeRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPAMProviderCreatePamProviderTypeRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPAMProviderDeletePamProviderRequest ¶

type ApiPAMProviderDeletePamProviderRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

func (ApiPAMProviderDeletePamProviderRequest) Execute ¶

func (ApiPAMProviderDeletePamProviderRequest) XKeyfactorApiVersion ¶

func (r ApiPAMProviderDeletePamProviderRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPAMProviderDeletePamProviderRequest

Desired version of the api, if not provided defaults to v1

func (ApiPAMProviderDeletePamProviderRequest) XKeyfactorRequestedWith ¶

func (r ApiPAMProviderDeletePamProviderRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPAMProviderDeletePamProviderRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPAMProviderGetPamProviderRequest ¶ added in v0.2.0

type ApiPAMProviderGetPamProviderRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

func (ApiPAMProviderGetPamProviderRequest) Execute ¶ added in v0.2.0

func (ApiPAMProviderGetPamProviderRequest) XKeyfactorApiVersion ¶ added in v0.2.0

func (r ApiPAMProviderGetPamProviderRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPAMProviderGetPamProviderRequest

Desired version of the api, if not provided defaults to v1

func (ApiPAMProviderGetPamProviderRequest) XKeyfactorRequestedWith ¶ added in v0.2.0

func (r ApiPAMProviderGetPamProviderRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPAMProviderGetPamProviderRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPAMProviderGetPamProviderTypesRequest ¶ added in v0.2.0

type ApiPAMProviderGetPamProviderTypesRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

func (ApiPAMProviderGetPamProviderTypesRequest) Execute ¶ added in v0.2.0

func (ApiPAMProviderGetPamProviderTypesRequest) XKeyfactorApiVersion ¶ added in v0.2.0

Desired version of the api, if not provided defaults to v1

func (ApiPAMProviderGetPamProviderTypesRequest) XKeyfactorRequestedWith ¶ added in v0.2.0

func (r ApiPAMProviderGetPamProviderTypesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPAMProviderGetPamProviderTypesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPAMProviderGetPamProvidersRequest ¶ added in v0.2.0

type ApiPAMProviderGetPamProvidersRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

func (ApiPAMProviderGetPamProvidersRequest) Execute ¶ added in v0.2.0

func (ApiPAMProviderGetPamProvidersRequest) PqPageReturned ¶ added in v0.2.0

The current page within the result set to be returned

func (ApiPAMProviderGetPamProvidersRequest) PqQueryString ¶ added in v0.2.0

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiPAMProviderGetPamProvidersRequest) PqReturnLimit ¶ added in v0.2.0

Maximum number of records to be returned in a single call

func (ApiPAMProviderGetPamProvidersRequest) PqSortAscending ¶ added in v0.2.0

Field sort direction [0=ascending, 1=descending]

func (ApiPAMProviderGetPamProvidersRequest) PqSortField ¶ added in v0.2.0

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiPAMProviderGetPamProvidersRequest) XKeyfactorApiVersion ¶ added in v0.2.0

func (r ApiPAMProviderGetPamProvidersRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPAMProviderGetPamProvidersRequest

Desired version of the api, if not provided defaults to v1

func (ApiPAMProviderGetPamProvidersRequest) XKeyfactorRequestedWith ¶ added in v0.2.0

func (r ApiPAMProviderGetPamProvidersRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPAMProviderGetPamProvidersRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPAMProviderUpdatePamProviderRequest ¶ added in v0.2.0

type ApiPAMProviderUpdatePamProviderRequest struct {
	ApiService *PAMProviderApiService
	// contains filtered or unexported fields
}

func (ApiPAMProviderUpdatePamProviderRequest) Execute ¶ added in v0.2.0

func (ApiPAMProviderUpdatePamProviderRequest) Provider ¶ added in v0.2.0

PAM provider properties to be used

func (ApiPAMProviderUpdatePamProviderRequest) XKeyfactorApiVersion ¶ added in v0.2.0

func (r ApiPAMProviderUpdatePamProviderRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPAMProviderUpdatePamProviderRequest

Desired version of the api, if not provided defaults to v1

func (ApiPAMProviderUpdatePamProviderRequest) XKeyfactorRequestedWith ¶ added in v0.2.0

func (r ApiPAMProviderUpdatePamProviderRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPAMProviderUpdatePamProviderRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPendingAlertAddPendingAlertRequest ¶

type ApiPendingAlertAddPendingAlertRequest struct {
	ApiService *PendingAlertApiService
	// contains filtered or unexported fields
}

func (ApiPendingAlertAddPendingAlertRequest) Req ¶

Information for the new alert

func (ApiPendingAlertAddPendingAlertRequest) XKeyfactorApiVersion ¶

func (r ApiPendingAlertAddPendingAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPendingAlertAddPendingAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiPendingAlertAddPendingAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiPendingAlertAddPendingAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPendingAlertAddPendingAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPendingAlertDeletePendingAlertRequest ¶

type ApiPendingAlertDeletePendingAlertRequest struct {
	ApiService *PendingAlertApiService
	// contains filtered or unexported fields
}

func (ApiPendingAlertDeletePendingAlertRequest) Execute ¶

func (ApiPendingAlertDeletePendingAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiPendingAlertDeletePendingAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiPendingAlertDeletePendingAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPendingAlertDeletePendingAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPendingAlertEditPendingAlertRequest ¶

type ApiPendingAlertEditPendingAlertRequest struct {
	ApiService *PendingAlertApiService
	// contains filtered or unexported fields
}

func (ApiPendingAlertEditPendingAlertRequest) Req ¶

Information for the pending alert

func (ApiPendingAlertEditPendingAlertRequest) XKeyfactorApiVersion ¶

func (r ApiPendingAlertEditPendingAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPendingAlertEditPendingAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiPendingAlertEditPendingAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiPendingAlertEditPendingAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPendingAlertEditPendingAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPendingAlertEditScheduleRequest ¶

type ApiPendingAlertEditScheduleRequest struct {
	ApiService *PendingAlertApiService
	// contains filtered or unexported fields
}

func (ApiPendingAlertEditScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiPendingAlertEditScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPendingAlertEditScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiPendingAlertEditScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiPendingAlertEditScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPendingAlertEditScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPendingAlertGetPendingAlertRequest ¶

type ApiPendingAlertGetPendingAlertRequest struct {
	ApiService *PendingAlertApiService
	// contains filtered or unexported fields
}

func (ApiPendingAlertGetPendingAlertRequest) XKeyfactorApiVersion ¶

func (r ApiPendingAlertGetPendingAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPendingAlertGetPendingAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiPendingAlertGetPendingAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiPendingAlertGetPendingAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPendingAlertGetPendingAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPendingAlertGetPendingAlertsRequest ¶

type ApiPendingAlertGetPendingAlertsRequest struct {
	ApiService *PendingAlertApiService
	// contains filtered or unexported fields
}

func (ApiPendingAlertGetPendingAlertsRequest) PagedQueryPageReturned ¶

func (r ApiPendingAlertGetPendingAlertsRequest) PagedQueryPageReturned(pagedQueryPageReturned int32) ApiPendingAlertGetPendingAlertsRequest

The current page within the result set to be returned

func (ApiPendingAlertGetPendingAlertsRequest) PagedQueryQueryString ¶

func (r ApiPendingAlertGetPendingAlertsRequest) PagedQueryQueryString(pagedQueryQueryString string) ApiPendingAlertGetPendingAlertsRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiPendingAlertGetPendingAlertsRequest) PagedQueryReturnLimit ¶

func (r ApiPendingAlertGetPendingAlertsRequest) PagedQueryReturnLimit(pagedQueryReturnLimit int32) ApiPendingAlertGetPendingAlertsRequest

Maximum number of records to be returned in a single call

func (ApiPendingAlertGetPendingAlertsRequest) PagedQuerySortAscending ¶

func (r ApiPendingAlertGetPendingAlertsRequest) PagedQuerySortAscending(pagedQuerySortAscending int32) ApiPendingAlertGetPendingAlertsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiPendingAlertGetPendingAlertsRequest) PagedQuerySortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiPendingAlertGetPendingAlertsRequest) XKeyfactorApiVersion ¶

func (r ApiPendingAlertGetPendingAlertsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPendingAlertGetPendingAlertsRequest

Desired version of the api, if not provided defaults to v1

func (ApiPendingAlertGetPendingAlertsRequest) XKeyfactorRequestedWith ¶

func (r ApiPendingAlertGetPendingAlertsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPendingAlertGetPendingAlertsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPendingAlertGetScheduleRequest ¶

type ApiPendingAlertGetScheduleRequest struct {
	ApiService *PendingAlertApiService
	// contains filtered or unexported fields
}

func (ApiPendingAlertGetScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiPendingAlertGetScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPendingAlertGetScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiPendingAlertGetScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiPendingAlertGetScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPendingAlertGetScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPendingAlertTestAllPendingAlertRequest ¶

type ApiPendingAlertTestAllPendingAlertRequest struct {
	ApiService *PendingAlertApiService
	// contains filtered or unexported fields
}

func (ApiPendingAlertTestAllPendingAlertRequest) Req ¶

Information for the pending alert

func (ApiPendingAlertTestAllPendingAlertRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiPendingAlertTestAllPendingAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiPendingAlertTestAllPendingAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPendingAlertTestAllPendingAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiPendingAlertTestPendingAlertRequest ¶

type ApiPendingAlertTestPendingAlertRequest struct {
	ApiService *PendingAlertApiService
	// contains filtered or unexported fields
}

func (ApiPendingAlertTestPendingAlertRequest) Req ¶

Information for the pending alert

func (ApiPendingAlertTestPendingAlertRequest) XKeyfactorApiVersion ¶

func (r ApiPendingAlertTestPendingAlertRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiPendingAlertTestPendingAlertRequest

Desired version of the api, if not provided defaults to v1

func (ApiPendingAlertTestPendingAlertRequest) XKeyfactorRequestedWith ¶

func (r ApiPendingAlertTestPendingAlertRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiPendingAlertTestPendingAlertRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsCreateCustomReportRequest ¶

type ApiReportsCreateCustomReportRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsCreateCustomReportRequest) Execute ¶

func (ApiReportsCreateCustomReportRequest) Request ¶

Report Information

func (ApiReportsCreateCustomReportRequest) XKeyfactorApiVersion ¶

func (r ApiReportsCreateCustomReportRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsCreateCustomReportRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsCreateCustomReportRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsCreateCustomReportRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsCreateCustomReportRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsCreateReportScheduleRequest ¶

type ApiReportsCreateReportScheduleRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsCreateReportScheduleRequest) Execute ¶

func (ApiReportsCreateReportScheduleRequest) Schedule ¶

Report Schedule

func (ApiReportsCreateReportScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiReportsCreateReportScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsCreateReportScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsCreateReportScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsCreateReportScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsCreateReportScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsDeleteReportRequest ¶

type ApiReportsDeleteReportRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsDeleteReportRequest) Execute ¶

func (ApiReportsDeleteReportRequest) XKeyfactorApiVersion ¶

func (r ApiReportsDeleteReportRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsDeleteReportRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsDeleteReportRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsDeleteReportRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsDeleteReportRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsDeleteReportScheduleRequest ¶

type ApiReportsDeleteReportScheduleRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsDeleteReportScheduleRequest) Execute ¶

func (ApiReportsDeleteReportScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiReportsDeleteReportScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsDeleteReportScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsDeleteReportScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsDeleteReportScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsDeleteReportScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsGetCustomReportRequest ¶

type ApiReportsGetCustomReportRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsGetCustomReportRequest) Execute ¶

func (ApiReportsGetCustomReportRequest) XKeyfactorApiVersion ¶

func (r ApiReportsGetCustomReportRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsGetCustomReportRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsGetCustomReportRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsGetCustomReportRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsGetCustomReportRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsGetReportParametersRequest ¶

type ApiReportsGetReportParametersRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsGetReportParametersRequest) Execute ¶

func (ApiReportsGetReportParametersRequest) XKeyfactorApiVersion ¶

func (r ApiReportsGetReportParametersRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsGetReportParametersRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsGetReportParametersRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsGetReportParametersRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsGetReportParametersRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsGetReportRequest ¶

type ApiReportsGetReportRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsGetReportRequest) Execute ¶

func (ApiReportsGetReportRequest) XKeyfactorApiVersion ¶

func (r ApiReportsGetReportRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsGetReportRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsGetReportRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsGetReportRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsGetReportRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsGetReportScheduleRequest ¶

type ApiReportsGetReportScheduleRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsGetReportScheduleRequest) Execute ¶

func (ApiReportsGetReportScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiReportsGetReportScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsGetReportScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsGetReportScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsGetReportScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsGetReportScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsGetReportSchedulesRequest ¶

type ApiReportsGetReportSchedulesRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsGetReportSchedulesRequest) Execute ¶

func (ApiReportsGetReportSchedulesRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiReportsGetReportSchedulesRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiReportsGetReportSchedulesRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiReportsGetReportSchedulesRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiReportsGetReportSchedulesRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiReportsGetReportSchedulesRequest) XKeyfactorApiVersion ¶

func (r ApiReportsGetReportSchedulesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsGetReportSchedulesRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsGetReportSchedulesRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsGetReportSchedulesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsGetReportSchedulesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsQueryCustomReportsRequest ¶

type ApiReportsQueryCustomReportsRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsQueryCustomReportsRequest) Execute ¶

func (ApiReportsQueryCustomReportsRequest) QueryPageReturned ¶

func (r ApiReportsQueryCustomReportsRequest) QueryPageReturned(queryPageReturned int32) ApiReportsQueryCustomReportsRequest

The current page within the result set to be returned

func (ApiReportsQueryCustomReportsRequest) QueryQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiReportsQueryCustomReportsRequest) QueryReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiReportsQueryCustomReportsRequest) QuerySortAscending ¶

func (r ApiReportsQueryCustomReportsRequest) QuerySortAscending(querySortAscending int32) ApiReportsQueryCustomReportsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiReportsQueryCustomReportsRequest) QuerySortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiReportsQueryCustomReportsRequest) XKeyfactorApiVersion ¶

func (r ApiReportsQueryCustomReportsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsQueryCustomReportsRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsQueryCustomReportsRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsQueryCustomReportsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsQueryCustomReportsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsQueryReportsRequest ¶

type ApiReportsQueryReportsRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsQueryReportsRequest) Execute ¶

func (ApiReportsQueryReportsRequest) QueryPageReturned ¶

func (r ApiReportsQueryReportsRequest) QueryPageReturned(queryPageReturned int32) ApiReportsQueryReportsRequest

The current page within the result set to be returned

func (ApiReportsQueryReportsRequest) QueryQueryString ¶

func (r ApiReportsQueryReportsRequest) QueryQueryString(queryQueryString string) ApiReportsQueryReportsRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiReportsQueryReportsRequest) QueryReturnLimit ¶

func (r ApiReportsQueryReportsRequest) QueryReturnLimit(queryReturnLimit int32) ApiReportsQueryReportsRequest

Maximum number of records to be returned in a single call

func (ApiReportsQueryReportsRequest) QuerySortAscending ¶

func (r ApiReportsQueryReportsRequest) QuerySortAscending(querySortAscending int32) ApiReportsQueryReportsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiReportsQueryReportsRequest) QuerySortField ¶

func (r ApiReportsQueryReportsRequest) QuerySortField(querySortField string) ApiReportsQueryReportsRequest

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiReportsQueryReportsRequest) XKeyfactorApiVersion ¶

func (r ApiReportsQueryReportsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsQueryReportsRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsQueryReportsRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsQueryReportsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsQueryReportsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsUpdateCustomReportRequest ¶

type ApiReportsUpdateCustomReportRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsUpdateCustomReportRequest) Execute ¶

func (ApiReportsUpdateCustomReportRequest) Request ¶

Report Information

func (ApiReportsUpdateCustomReportRequest) XKeyfactorApiVersion ¶

func (r ApiReportsUpdateCustomReportRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsUpdateCustomReportRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsUpdateCustomReportRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsUpdateCustomReportRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsUpdateCustomReportRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsUpdateReportParametersRequest ¶

type ApiReportsUpdateReportParametersRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsUpdateReportParametersRequest) Execute ¶

func (ApiReportsUpdateReportParametersRequest) Request ¶

A List of the parameters to be updated

func (ApiReportsUpdateReportParametersRequest) XKeyfactorApiVersion ¶

func (r ApiReportsUpdateReportParametersRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsUpdateReportParametersRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsUpdateReportParametersRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsUpdateReportParametersRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsUpdateReportParametersRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsUpdateReportRequest ¶

type ApiReportsUpdateReportRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsUpdateReportRequest) Execute ¶

func (ApiReportsUpdateReportRequest) Request ¶

This object is used to update the Favorite, In Navigator and the Remove Duplicates if the 'Uses Collections' is true.

func (ApiReportsUpdateReportRequest) XKeyfactorApiVersion ¶

func (r ApiReportsUpdateReportRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsUpdateReportRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsUpdateReportRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsUpdateReportRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsUpdateReportRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiReportsUpdateReportScheduleRequest ¶

type ApiReportsUpdateReportScheduleRequest struct {
	ApiService *ReportsApiService
	// contains filtered or unexported fields
}

func (ApiReportsUpdateReportScheduleRequest) Execute ¶

func (ApiReportsUpdateReportScheduleRequest) Schedule ¶

Report Schedule

func (ApiReportsUpdateReportScheduleRequest) XKeyfactorApiVersion ¶

func (r ApiReportsUpdateReportScheduleRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiReportsUpdateReportScheduleRequest

Desired version of the api, if not provided defaults to v1

func (ApiReportsUpdateReportScheduleRequest) XKeyfactorRequestedWith ¶

func (r ApiReportsUpdateReportScheduleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiReportsUpdateReportScheduleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSMTPSMTPRequest ¶

type ApiSMTPSMTPRequest struct {
	ApiService *SMTPApiService
	// contains filtered or unexported fields
}

func (ApiSMTPSMTPRequest) Execute ¶

func (ApiSMTPSMTPRequest) XKeyfactorApiVersion ¶

func (r ApiSMTPSMTPRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSMTPSMTPRequest

Desired version of the api, if not provided defaults to v1

func (ApiSMTPSMTPRequest) XKeyfactorRequestedWith ¶

func (r ApiSMTPSMTPRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSMTPSMTPRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSMTPTestSMTPRequest ¶

type ApiSMTPTestSMTPRequest struct {
	ApiService *SMTPApiService
	// contains filtered or unexported fields
}

func (ApiSMTPTestSMTPRequest) Execute ¶

func (ApiSMTPTestSMTPRequest) SmtpProfile ¶

func (ApiSMTPTestSMTPRequest) XKeyfactorApiVersion ¶

func (r ApiSMTPTestSMTPRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSMTPTestSMTPRequest

Desired version of the api, if not provided defaults to v1

func (ApiSMTPTestSMTPRequest) XKeyfactorRequestedWith ¶

func (r ApiSMTPTestSMTPRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSMTPTestSMTPRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSMTPUpdateSMTPRequest ¶

type ApiSMTPUpdateSMTPRequest struct {
	ApiService *SMTPApiService
	// contains filtered or unexported fields
}

func (ApiSMTPUpdateSMTPRequest) Execute ¶

func (ApiSMTPUpdateSMTPRequest) SmtpProfile ¶

func (ApiSMTPUpdateSMTPRequest) XKeyfactorApiVersion ¶

func (r ApiSMTPUpdateSMTPRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSMTPUpdateSMTPRequest

Desired version of the api, if not provided defaults to v1

func (ApiSMTPUpdateSMTPRequest) XKeyfactorRequestedWith ¶

func (r ApiSMTPUpdateSMTPRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSMTPUpdateSMTPRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityDeleteSecurityIdentityRequest ¶

type ApiSecurityDeleteSecurityIdentityRequest struct {
	ApiService *SecurityApiService
	// contains filtered or unexported fields
}

func (ApiSecurityDeleteSecurityIdentityRequest) Execute ¶

func (ApiSecurityDeleteSecurityIdentityRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityDeleteSecurityIdentityRequest) XKeyfactorRequestedWith ¶

func (r ApiSecurityDeleteSecurityIdentityRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSecurityDeleteSecurityIdentityRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityIdentityPermissionsRequest ¶

type ApiSecurityIdentityPermissionsRequest struct {
	ApiService *SecurityApiService
	// contains filtered or unexported fields
}

func (ApiSecurityIdentityPermissionsRequest) XKeyfactorApiVersion ¶

func (r ApiSecurityIdentityPermissionsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSecurityIdentityPermissionsRequest

Desired version of the api, if not provided defaults to v1

func (ApiSecurityIdentityPermissionsRequest) XKeyfactorRequestedWith ¶

func (r ApiSecurityIdentityPermissionsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSecurityIdentityPermissionsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityLookupIdentityRequest ¶

type ApiSecurityLookupIdentityRequest struct {
	ApiService *SecurityApiService
	// contains filtered or unexported fields
}

func (ApiSecurityLookupIdentityRequest) AccountName ¶

The name of an identity we wish to check.

func (ApiSecurityLookupIdentityRequest) XKeyfactorApiVersion ¶

func (r ApiSecurityLookupIdentityRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSecurityLookupIdentityRequest

Desired version of the api, if not provided defaults to v1

func (ApiSecurityLookupIdentityRequest) XKeyfactorRequestedWith ¶

func (r ApiSecurityLookupIdentityRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSecurityLookupIdentityRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolePermissionsAddCollectionPermissionsRequest ¶

type ApiSecurityRolePermissionsAddCollectionPermissionsRequest struct {
	ApiService *SecurityRolePermissionsApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolePermissionsAddCollectionPermissionsRequest) CollectionPermissions ¶

Collections permissions

func (ApiSecurityRolePermissionsAddCollectionPermissionsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolePermissionsAddCollectionPermissionsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolePermissionsAddContainerPermissionsRequest ¶

type ApiSecurityRolePermissionsAddContainerPermissionsRequest struct {
	ApiService *SecurityRolePermissionsApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolePermissionsAddContainerPermissionsRequest) ContainerPermissions ¶

Container permissions

func (ApiSecurityRolePermissionsAddContainerPermissionsRequest) Execute ¶

func (ApiSecurityRolePermissionsAddContainerPermissionsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolePermissionsAddContainerPermissionsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolePermissionsAddGlobalPermissionsRequest ¶

type ApiSecurityRolePermissionsAddGlobalPermissionsRequest struct {
	ApiService *SecurityRolePermissionsApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolePermissionsAddGlobalPermissionsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolePermissionsAddGlobalPermissionsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolePermissionsGetCollectionPermissionsForRoleRequest ¶

type ApiSecurityRolePermissionsGetCollectionPermissionsForRoleRequest struct {
	ApiService *SecurityRolePermissionsApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolePermissionsGetCollectionPermissionsForRoleRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolePermissionsGetCollectionPermissionsForRoleRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolePermissionsGetContainerPermissionsForRoleRequest ¶

type ApiSecurityRolePermissionsGetContainerPermissionsForRoleRequest struct {
	ApiService *SecurityRolePermissionsApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolePermissionsGetContainerPermissionsForRoleRequest) Execute ¶

func (ApiSecurityRolePermissionsGetContainerPermissionsForRoleRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolePermissionsGetContainerPermissionsForRoleRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolePermissionsGetGlobalPermissionsForRoleRequest ¶

type ApiSecurityRolePermissionsGetGlobalPermissionsForRoleRequest struct {
	ApiService *SecurityRolePermissionsApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolePermissionsGetGlobalPermissionsForRoleRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolePermissionsGetGlobalPermissionsForRoleRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolePermissionsGetPermissionsForRoleRequest ¶

type ApiSecurityRolePermissionsGetPermissionsForRoleRequest struct {
	ApiService *SecurityRolePermissionsApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolePermissionsGetPermissionsForRoleRequest) Execute ¶

func (ApiSecurityRolePermissionsGetPermissionsForRoleRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolePermissionsGetPermissionsForRoleRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolePermissionsSetCollectionPermissionsRequest ¶

type ApiSecurityRolePermissionsSetCollectionPermissionsRequest struct {
	ApiService *SecurityRolePermissionsApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolePermissionsSetCollectionPermissionsRequest) CollectionPermissions ¶

Collections permissions

func (ApiSecurityRolePermissionsSetCollectionPermissionsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolePermissionsSetCollectionPermissionsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolePermissionsSetContainerPermissionsRequest ¶

type ApiSecurityRolePermissionsSetContainerPermissionsRequest struct {
	ApiService *SecurityRolePermissionsApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolePermissionsSetContainerPermissionsRequest) ContainerPermissions ¶

Container permissions

func (ApiSecurityRolePermissionsSetContainerPermissionsRequest) Execute ¶

func (ApiSecurityRolePermissionsSetContainerPermissionsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolePermissionsSetContainerPermissionsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolePermissionsSetGlobalPermissionsRequest ¶

type ApiSecurityRolePermissionsSetGlobalPermissionsRequest struct {
	ApiService *SecurityRolePermissionsApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolePermissionsSetGlobalPermissionsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolePermissionsSetGlobalPermissionsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolesDeleteSecurityRoleRequest ¶

type ApiSecurityRolesDeleteSecurityRoleRequest struct {
	ApiService *SecurityRolesApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolesDeleteSecurityRoleRequest) Execute ¶

func (ApiSecurityRolesDeleteSecurityRoleRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolesDeleteSecurityRoleRequest) XKeyfactorRequestedWith ¶

func (r ApiSecurityRolesDeleteSecurityRoleRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSecurityRolesDeleteSecurityRoleRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolesGetIdentitiesWithRoleRequest ¶

type ApiSecurityRolesGetIdentitiesWithRoleRequest struct {
	ApiService *SecurityRolesApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolesGetIdentitiesWithRoleRequest) Execute ¶

func (ApiSecurityRolesGetIdentitiesWithRoleRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolesGetIdentitiesWithRoleRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSecurityRolesUpdateIdentitiesWithRoleRequest ¶

type ApiSecurityRolesUpdateIdentitiesWithRoleRequest struct {
	ApiService *SecurityRolesApiService
	// contains filtered or unexported fields
}

func (ApiSecurityRolesUpdateIdentitiesWithRoleRequest) Execute ¶

func (ApiSecurityRolesUpdateIdentitiesWithRoleRequest) Identities ¶

Lists of Identity IDs to remove or add to the role

func (ApiSecurityRolesUpdateIdentitiesWithRoleRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiSecurityRolesUpdateIdentitiesWithRoleRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiServerAddAccessRequest ¶

type ApiServerAddAccessRequest struct {
	ApiService *ServerApiService
	// contains filtered or unexported fields
}

func (ApiServerAddAccessRequest) Execute ¶

func (ApiServerAddAccessRequest) ServerAccess ¶

Logons and users to be applied to the existing server

func (ApiServerAddAccessRequest) XKeyfactorApiVersion ¶

func (r ApiServerAddAccessRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerAddAccessRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerAddAccessRequest) XKeyfactorRequestedWith ¶

func (r ApiServerAddAccessRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerAddAccessRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerCreateServerRequest ¶

type ApiServerCreateServerRequest struct {
	ApiService *ServerApiService
	// contains filtered or unexported fields
}

func (ApiServerCreateServerRequest) CreationRequest ¶

Server properties to be applied to the newserver

func (ApiServerCreateServerRequest) Execute ¶

func (ApiServerCreateServerRequest) XKeyfactorApiVersion ¶

func (r ApiServerCreateServerRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerCreateServerRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerCreateServerRequest) XKeyfactorRequestedWith ¶

func (r ApiServerCreateServerRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerCreateServerRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerDeleteRequest ¶

type ApiServerDeleteRequest struct {
	ApiService *ServerApiService
	// contains filtered or unexported fields
}

func (ApiServerDeleteRequest) Execute ¶

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

func (ApiServerDeleteRequest) XKeyfactorApiVersion ¶

func (r ApiServerDeleteRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerDeleteRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerDeleteRequest) XKeyfactorRequestedWith ¶

func (r ApiServerDeleteRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerDeleteRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerGetAccessRequest ¶

type ApiServerGetAccessRequest struct {
	ApiService *ServerApiService
	// contains filtered or unexported fields
}

func (ApiServerGetAccessRequest) Execute ¶

func (ApiServerGetAccessRequest) XKeyfactorApiVersion ¶

func (r ApiServerGetAccessRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerGetAccessRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerGetAccessRequest) XKeyfactorRequestedWith ¶

func (r ApiServerGetAccessRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerGetAccessRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerGetRequest ¶

type ApiServerGetRequest struct {
	ApiService *ServerApiService
	// contains filtered or unexported fields
}

func (ApiServerGetRequest) Execute ¶

func (ApiServerGetRequest) XKeyfactorApiVersion ¶

func (r ApiServerGetRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerGetRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerGetRequest) XKeyfactorRequestedWith ¶

func (r ApiServerGetRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerGetRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerGroupAddAccessRequest ¶

type ApiServerGroupAddAccessRequest struct {
	ApiService *ServerGroupApiService
	// contains filtered or unexported fields
}

func (ApiServerGroupAddAccessRequest) AccessRequest ¶

func (ApiServerGroupAddAccessRequest) Execute ¶

func (ApiServerGroupAddAccessRequest) XKeyfactorApiVersion ¶

func (r ApiServerGroupAddAccessRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerGroupAddAccessRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerGroupAddAccessRequest) XKeyfactorRequestedWith ¶

func (r ApiServerGroupAddAccessRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerGroupAddAccessRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerGroupCreateServerGroupRequest ¶

type ApiServerGroupCreateServerGroupRequest struct {
	ApiService *ServerGroupApiService
	// contains filtered or unexported fields
}

func (ApiServerGroupCreateServerGroupRequest) Execute ¶

func (ApiServerGroupCreateServerGroupRequest) ServerGroupCreationRequest ¶

Server group properties to be applied to the new group

func (ApiServerGroupCreateServerGroupRequest) XKeyfactorApiVersion ¶

func (r ApiServerGroupCreateServerGroupRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerGroupCreateServerGroupRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerGroupCreateServerGroupRequest) XKeyfactorRequestedWith ¶

func (r ApiServerGroupCreateServerGroupRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerGroupCreateServerGroupRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerGroupDeleteRequest ¶

type ApiServerGroupDeleteRequest struct {
	ApiService *ServerGroupApiService
	// contains filtered or unexported fields
}

func (ApiServerGroupDeleteRequest) Execute ¶

func (ApiServerGroupDeleteRequest) XKeyfactorApiVersion ¶

func (r ApiServerGroupDeleteRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerGroupDeleteRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerGroupDeleteRequest) XKeyfactorRequestedWith ¶

func (r ApiServerGroupDeleteRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerGroupDeleteRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerGroupGetAccessRequest ¶

type ApiServerGroupGetAccessRequest struct {
	ApiService *ServerGroupApiService
	// contains filtered or unexported fields
}

func (ApiServerGroupGetAccessRequest) Execute ¶

func (ApiServerGroupGetAccessRequest) XKeyfactorApiVersion ¶

func (r ApiServerGroupGetAccessRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerGroupGetAccessRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerGroupGetAccessRequest) XKeyfactorRequestedWith ¶

func (r ApiServerGroupGetAccessRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerGroupGetAccessRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerGroupGetGroupByNameRequest ¶

type ApiServerGroupGetGroupByNameRequest struct {
	ApiService *ServerGroupApiService
	// contains filtered or unexported fields
}

func (ApiServerGroupGetGroupByNameRequest) Execute ¶

func (ApiServerGroupGetGroupByNameRequest) XKeyfactorApiVersion ¶

func (r ApiServerGroupGetGroupByNameRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerGroupGetGroupByNameRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerGroupGetGroupByNameRequest) XKeyfactorRequestedWith ¶

func (r ApiServerGroupGetGroupByNameRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerGroupGetGroupByNameRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerGroupGetGroupRequest ¶

type ApiServerGroupGetGroupRequest struct {
	ApiService *ServerGroupApiService
	// contains filtered or unexported fields
}

func (ApiServerGroupGetGroupRequest) Execute ¶

func (ApiServerGroupGetGroupRequest) XKeyfactorApiVersion ¶

func (r ApiServerGroupGetGroupRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerGroupGetGroupRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerGroupGetGroupRequest) XKeyfactorRequestedWith ¶

func (r ApiServerGroupGetGroupRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerGroupGetGroupRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerGroupQueryServerGroupsRequest ¶

type ApiServerGroupQueryServerGroupsRequest struct {
	ApiService *ServerGroupApiService
	// contains filtered or unexported fields
}

func (ApiServerGroupQueryServerGroupsRequest) Execute ¶

func (ApiServerGroupQueryServerGroupsRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiServerGroupQueryServerGroupsRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiServerGroupQueryServerGroupsRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiServerGroupQueryServerGroupsRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiServerGroupQueryServerGroupsRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiServerGroupQueryServerGroupsRequest) XKeyfactorApiVersion ¶

func (r ApiServerGroupQueryServerGroupsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerGroupQueryServerGroupsRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerGroupQueryServerGroupsRequest) XKeyfactorRequestedWith ¶

func (r ApiServerGroupQueryServerGroupsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerGroupQueryServerGroupsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerGroupRemoveAccessRequest ¶

type ApiServerGroupRemoveAccessRequest struct {
	ApiService *ServerGroupApiService
	// contains filtered or unexported fields
}

func (ApiServerGroupRemoveAccessRequest) AccessRequest ¶

func (ApiServerGroupRemoveAccessRequest) Execute ¶

func (ApiServerGroupRemoveAccessRequest) XKeyfactorApiVersion ¶

func (r ApiServerGroupRemoveAccessRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerGroupRemoveAccessRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerGroupRemoveAccessRequest) XKeyfactorRequestedWith ¶

func (r ApiServerGroupRemoveAccessRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerGroupRemoveAccessRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerGroupUpdateServerGroupRequest ¶

type ApiServerGroupUpdateServerGroupRequest struct {
	ApiService *ServerGroupApiService
	// contains filtered or unexported fields
}

func (ApiServerGroupUpdateServerGroupRequest) Execute ¶

func (ApiServerGroupUpdateServerGroupRequest) UpdateRequest ¶

Server group properties to be applied to the existing group

func (ApiServerGroupUpdateServerGroupRequest) XKeyfactorApiVersion ¶

func (r ApiServerGroupUpdateServerGroupRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerGroupUpdateServerGroupRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerGroupUpdateServerGroupRequest) XKeyfactorRequestedWith ¶

func (r ApiServerGroupUpdateServerGroupRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerGroupUpdateServerGroupRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerQueryServersRequest ¶

type ApiServerQueryServersRequest struct {
	ApiService *ServerApiService
	// contains filtered or unexported fields
}

func (ApiServerQueryServersRequest) Execute ¶

func (ApiServerQueryServersRequest) PqPageReturned ¶

func (r ApiServerQueryServersRequest) PqPageReturned(pqPageReturned int32) ApiServerQueryServersRequest

The current page within the result set to be returned

func (ApiServerQueryServersRequest) PqQueryString ¶

func (r ApiServerQueryServersRequest) PqQueryString(pqQueryString string) ApiServerQueryServersRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiServerQueryServersRequest) PqReturnLimit ¶

func (r ApiServerQueryServersRequest) PqReturnLimit(pqReturnLimit int32) ApiServerQueryServersRequest

Maximum number of records to be returned in a single call

func (ApiServerQueryServersRequest) PqSortAscending ¶

func (r ApiServerQueryServersRequest) PqSortAscending(pqSortAscending int32) ApiServerQueryServersRequest

Field sort direction [0=ascending, 1=descending]

func (ApiServerQueryServersRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiServerQueryServersRequest) XKeyfactorApiVersion ¶

func (r ApiServerQueryServersRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerQueryServersRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerQueryServersRequest) XKeyfactorRequestedWith ¶

func (r ApiServerQueryServersRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerQueryServersRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerRemoveAccessRequest ¶

type ApiServerRemoveAccessRequest struct {
	ApiService *ServerApiService
	// contains filtered or unexported fields
}

func (ApiServerRemoveAccessRequest) Execute ¶

func (ApiServerRemoveAccessRequest) ServerAccess ¶

Logons and users to be removed from the existing server

func (ApiServerRemoveAccessRequest) XKeyfactorApiVersion ¶

func (r ApiServerRemoveAccessRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerRemoveAccessRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerRemoveAccessRequest) XKeyfactorRequestedWith ¶

func (r ApiServerRemoveAccessRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerRemoveAccessRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServerUpdateServerRequest ¶

type ApiServerUpdateServerRequest struct {
	ApiService *ServerApiService
	// contains filtered or unexported fields
}

func (ApiServerUpdateServerRequest) Execute ¶

func (ApiServerUpdateServerRequest) UpdateRequest ¶

Server properties to be applied to the existing server

func (ApiServerUpdateServerRequest) XKeyfactorApiVersion ¶

func (r ApiServerUpdateServerRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServerUpdateServerRequest

Desired version of the api, if not provided defaults to v1

func (ApiServerUpdateServerRequest) XKeyfactorRequestedWith ¶

func (r ApiServerUpdateServerRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServerUpdateServerRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServiceAccountCreateServiceAccountRequest ¶

type ApiServiceAccountCreateServiceAccountRequest struct {
	ApiService *ServiceAccountApiService
	// contains filtered or unexported fields
}

func (ApiServiceAccountCreateServiceAccountRequest) Execute ¶

func (ApiServiceAccountCreateServiceAccountRequest) ServiceAccount ¶

ServiceAccount properties to be applied to the new ServiceAccount

func (ApiServiceAccountCreateServiceAccountRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiServiceAccountCreateServiceAccountRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiServiceAccountDeleteServiceAccountRequest ¶

type ApiServiceAccountDeleteServiceAccountRequest struct {
	ApiService *ServiceAccountApiService
	// contains filtered or unexported fields
}

func (ApiServiceAccountDeleteServiceAccountRequest) Execute ¶

func (ApiServiceAccountDeleteServiceAccountRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiServiceAccountDeleteServiceAccountRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiServiceAccountDeleteServiceAccountsRequest ¶

type ApiServiceAccountDeleteServiceAccountsRequest struct {
	ApiService *ServiceAccountApiService
	// contains filtered or unexported fields
}

func (ApiServiceAccountDeleteServiceAccountsRequest) Execute ¶

func (ApiServiceAccountDeleteServiceAccountsRequest) Ids ¶

Keyfactor identifers of the ServiceAccounts to be deleted

func (ApiServiceAccountDeleteServiceAccountsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiServiceAccountDeleteServiceAccountsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiServiceAccountGetRequest ¶

type ApiServiceAccountGetRequest struct {
	ApiService *ServiceAccountApiService
	// contains filtered or unexported fields
}

func (ApiServiceAccountGetRequest) Execute ¶

func (ApiServiceAccountGetRequest) XKeyfactorApiVersion ¶

func (r ApiServiceAccountGetRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiServiceAccountGetRequest

Desired version of the api, if not provided defaults to v1

func (ApiServiceAccountGetRequest) XKeyfactorRequestedWith ¶

func (r ApiServiceAccountGetRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiServiceAccountGetRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiServiceAccountGetServiceAccountKeyRequest ¶

type ApiServiceAccountGetServiceAccountKeyRequest struct {
	ApiService *ServiceAccountApiService
	// contains filtered or unexported fields
}

func (ApiServiceAccountGetServiceAccountKeyRequest) Execute ¶

func (ApiServiceAccountGetServiceAccountKeyRequest) IncludePrivateKey ¶

Whether or not to include the private key in the response

func (ApiServiceAccountGetServiceAccountKeyRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiServiceAccountGetServiceAccountKeyRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiServiceAccountQueryServiceAccountsRequest ¶

type ApiServiceAccountQueryServiceAccountsRequest struct {
	ApiService *ServiceAccountApiService
	// contains filtered or unexported fields
}

func (ApiServiceAccountQueryServiceAccountsRequest) Execute ¶

func (ApiServiceAccountQueryServiceAccountsRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiServiceAccountQueryServiceAccountsRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiServiceAccountQueryServiceAccountsRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiServiceAccountQueryServiceAccountsRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiServiceAccountQueryServiceAccountsRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiServiceAccountQueryServiceAccountsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiServiceAccountQueryServiceAccountsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiServiceAccountRotateServiceAccountKeyRequest ¶

type ApiServiceAccountRotateServiceAccountKeyRequest struct {
	ApiService *ServiceAccountApiService
	// contains filtered or unexported fields
}

func (ApiServiceAccountRotateServiceAccountKeyRequest) Execute ¶

func (ApiServiceAccountRotateServiceAccountKeyRequest) RotationRequest ¶

func (ApiServiceAccountRotateServiceAccountKeyRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiServiceAccountRotateServiceAccountKeyRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiServiceAccountUpdateServiceAccountRequest ¶

type ApiServiceAccountUpdateServiceAccountRequest struct {
	ApiService *ServiceAccountApiService
	// contains filtered or unexported fields
}

func (ApiServiceAccountUpdateServiceAccountRequest) Execute ¶

func (ApiServiceAccountUpdateServiceAccountRequest) UpdateRequest ¶

The id of the service account and the updated state of the SSH key.

func (ApiServiceAccountUpdateServiceAccountRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiServiceAccountUpdateServiceAccountRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiSslAddNetworkRangesRequest ¶

type ApiSslAddNetworkRangesRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslAddNetworkRangesRequest) Execute ¶

func (ApiSslAddNetworkRangesRequest) NetworkRanges ¶

Network definition identifier and the ranges to be added

func (ApiSslAddNetworkRangesRequest) XKeyfactorApiVersion ¶

func (r ApiSslAddNetworkRangesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslAddNetworkRangesRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslAddNetworkRangesRequest) XKeyfactorRequestedWith ¶

func (r ApiSslAddNetworkRangesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslAddNetworkRangesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslCreateNetworkRequest ¶

type ApiSslCreateNetworkRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslCreateNetworkRequest) Execute ¶

func (ApiSslCreateNetworkRequest) Network ¶

Properties of the network definition to be created

func (ApiSslCreateNetworkRequest) XKeyfactorApiVersion ¶

func (r ApiSslCreateNetworkRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslCreateNetworkRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslCreateNetworkRequest) XKeyfactorRequestedWith ¶

func (r ApiSslCreateNetworkRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslCreateNetworkRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslEndpointHistoryRequest ¶

type ApiSslEndpointHistoryRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslEndpointHistoryRequest) Execute ¶

func (ApiSslEndpointHistoryRequest) PqPageReturned ¶

func (r ApiSslEndpointHistoryRequest) PqPageReturned(pqPageReturned int32) ApiSslEndpointHistoryRequest

The current page within the result set to be returned

func (ApiSslEndpointHistoryRequest) PqQueryString ¶

func (r ApiSslEndpointHistoryRequest) PqQueryString(pqQueryString string) ApiSslEndpointHistoryRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiSslEndpointHistoryRequest) PqReturnLimit ¶

func (r ApiSslEndpointHistoryRequest) PqReturnLimit(pqReturnLimit int32) ApiSslEndpointHistoryRequest

Maximum number of records to be returned in a single call

func (ApiSslEndpointHistoryRequest) PqSortAscending ¶

func (r ApiSslEndpointHistoryRequest) PqSortAscending(pqSortAscending int32) ApiSslEndpointHistoryRequest

Field sort direction [0=ascending, 1=descending]

func (ApiSslEndpointHistoryRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiSslEndpointHistoryRequest) XKeyfactorApiVersion ¶

func (r ApiSslEndpointHistoryRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslEndpointHistoryRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslEndpointHistoryRequest) XKeyfactorRequestedWith ¶

func (r ApiSslEndpointHistoryRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslEndpointHistoryRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslEndpointRequest ¶

type ApiSslEndpointRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslEndpointRequest) Execute ¶

func (ApiSslEndpointRequest) XKeyfactorApiVersion ¶

func (r ApiSslEndpointRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslEndpointRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslEndpointRequest) XKeyfactorRequestedWith ¶

func (r ApiSslEndpointRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslEndpointRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslGetNetworkRangesForNetworkRequest ¶

type ApiSslGetNetworkRangesForNetworkRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslGetNetworkRangesForNetworkRequest) Execute ¶

func (ApiSslGetNetworkRangesForNetworkRequest) XKeyfactorApiVersion ¶

func (r ApiSslGetNetworkRangesForNetworkRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslGetNetworkRangesForNetworkRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslGetNetworkRangesForNetworkRequest) XKeyfactorRequestedWith ¶

func (r ApiSslGetNetworkRangesForNetworkRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslGetNetworkRangesForNetworkRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslGetNetworkRequest ¶

type ApiSslGetNetworkRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslGetNetworkRequest) Execute ¶

func (ApiSslGetNetworkRequest) XKeyfactorApiVersion ¶

func (r ApiSslGetNetworkRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslGetNetworkRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslGetNetworkRequest) XKeyfactorRequestedWith ¶

func (r ApiSslGetNetworkRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslGetNetworkRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslGetNetworksRequest ¶

type ApiSslGetNetworksRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslGetNetworksRequest) Execute ¶

func (ApiSslGetNetworksRequest) SqPageReturned ¶

func (r ApiSslGetNetworksRequest) SqPageReturned(sqPageReturned int32) ApiSslGetNetworksRequest

The current page within the result set to be returned

func (ApiSslGetNetworksRequest) SqQueryString ¶

func (r ApiSslGetNetworksRequest) SqQueryString(sqQueryString string) ApiSslGetNetworksRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiSslGetNetworksRequest) SqReturnLimit ¶

func (r ApiSslGetNetworksRequest) SqReturnLimit(sqReturnLimit int32) ApiSslGetNetworksRequest

Maximum number of records to be returned in a single call

func (ApiSslGetNetworksRequest) SqSortAscending ¶

func (r ApiSslGetNetworksRequest) SqSortAscending(sqSortAscending int32) ApiSslGetNetworksRequest

Field sort direction [0=ascending, 1=descending]

func (ApiSslGetNetworksRequest) SqSortField ¶

func (r ApiSslGetNetworksRequest) SqSortField(sqSortField string) ApiSslGetNetworksRequest

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiSslGetNetworksRequest) XKeyfactorApiVersion ¶

func (r ApiSslGetNetworksRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslGetNetworksRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslGetNetworksRequest) XKeyfactorRequestedWith ¶

func (r ApiSslGetNetworksRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslGetNetworksRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslImmediateSslScanRequest ¶

type ApiSslImmediateSslScanRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslImmediateSslScanRequest) Execute ¶

func (ApiSslImmediateSslScanRequest) SslScanRequest ¶

Request for an immediate SSL Scan

func (ApiSslImmediateSslScanRequest) XKeyfactorApiVersion ¶

func (r ApiSslImmediateSslScanRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslImmediateSslScanRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslImmediateSslScanRequest) XKeyfactorRequestedWith ¶

func (r ApiSslImmediateSslScanRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslImmediateSslScanRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslMonitorAllRequest ¶

type ApiSslMonitorAllRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslMonitorAllRequest) Execute ¶

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

func (ApiSslMonitorAllRequest) Query ¶

Query to filter the endpoints for which the status should be set

func (ApiSslMonitorAllRequest) XKeyfactorApiVersion ¶

func (r ApiSslMonitorAllRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslMonitorAllRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslMonitorAllRequest) XKeyfactorRequestedWith ¶

func (r ApiSslMonitorAllRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslMonitorAllRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslMonitoringStatusRequest ¶

type ApiSslMonitoringStatusRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslMonitoringStatusRequest) Execute ¶

func (ApiSslMonitoringStatusRequest) Requests ¶

Endpoints and statuses to be set for each

func (ApiSslMonitoringStatusRequest) XKeyfactorApiVersion ¶

func (r ApiSslMonitoringStatusRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslMonitoringStatusRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslMonitoringStatusRequest) XKeyfactorRequestedWith ¶

func (r ApiSslMonitoringStatusRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslMonitoringStatusRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslNetworkScanPartsRequest ¶

type ApiSslNetworkScanPartsRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslNetworkScanPartsRequest) Execute ¶

func (ApiSslNetworkScanPartsRequest) PagedQueryJobType ¶

func (r ApiSslNetworkScanPartsRequest) PagedQueryJobType(pagedQueryJobType int32) ApiSslNetworkScanPartsRequest

func (ApiSslNetworkScanPartsRequest) PagedQueryPageReturned ¶

func (r ApiSslNetworkScanPartsRequest) PagedQueryPageReturned(pagedQueryPageReturned int32) ApiSslNetworkScanPartsRequest

The current page within the result set to be returned

func (ApiSslNetworkScanPartsRequest) PagedQueryQueryString ¶

func (r ApiSslNetworkScanPartsRequest) PagedQueryQueryString(pagedQueryQueryString string) ApiSslNetworkScanPartsRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiSslNetworkScanPartsRequest) PagedQueryReturnLimit ¶

func (r ApiSslNetworkScanPartsRequest) PagedQueryReturnLimit(pagedQueryReturnLimit int32) ApiSslNetworkScanPartsRequest

Maximum number of records to be returned in a single call

func (ApiSslNetworkScanPartsRequest) PagedQuerySortAscending ¶

func (r ApiSslNetworkScanPartsRequest) PagedQuerySortAscending(pagedQuerySortAscending int32) ApiSslNetworkScanPartsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiSslNetworkScanPartsRequest) PagedQuerySortField ¶

func (r ApiSslNetworkScanPartsRequest) PagedQuerySortField(pagedQuerySortField string) ApiSslNetworkScanPartsRequest

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiSslNetworkScanPartsRequest) XKeyfactorApiVersion ¶

func (r ApiSslNetworkScanPartsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslNetworkScanPartsRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslNetworkScanPartsRequest) XKeyfactorRequestedWith ¶

func (r ApiSslNetworkScanPartsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslNetworkScanPartsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslRemoveAllNetworkRangesRequest ¶

type ApiSslRemoveAllNetworkRangesRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslRemoveAllNetworkRangesRequest) Execute ¶

func (ApiSslRemoveAllNetworkRangesRequest) XKeyfactorApiVersion ¶

func (r ApiSslRemoveAllNetworkRangesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslRemoveAllNetworkRangesRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslRemoveAllNetworkRangesRequest) XKeyfactorRequestedWith ¶

func (r ApiSslRemoveAllNetworkRangesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslRemoveAllNetworkRangesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslRemoveNetworkRequest ¶

type ApiSslRemoveNetworkRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslRemoveNetworkRequest) Execute ¶

func (ApiSslRemoveNetworkRequest) XKeyfactorApiVersion ¶

func (r ApiSslRemoveNetworkRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslRemoveNetworkRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslRemoveNetworkRequest) XKeyfactorRequestedWith ¶

func (r ApiSslRemoveNetworkRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslRemoveNetworkRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslResultsRequest ¶

type ApiSslResultsRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslResultsRequest) Execute ¶

func (ApiSslResultsRequest) PqPageReturned ¶

func (r ApiSslResultsRequest) PqPageReturned(pqPageReturned int32) ApiSslResultsRequest

The current page within the result set to be returned

func (ApiSslResultsRequest) PqQueryString ¶

func (r ApiSslResultsRequest) PqQueryString(pqQueryString string) ApiSslResultsRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiSslResultsRequest) PqReturnLimit ¶

func (r ApiSslResultsRequest) PqReturnLimit(pqReturnLimit int32) ApiSslResultsRequest

Maximum number of records to be returned in a single call

func (ApiSslResultsRequest) PqSortAscending ¶

func (r ApiSslResultsRequest) PqSortAscending(pqSortAscending int32) ApiSslResultsRequest

Field sort direction [0=ascending, 1=descending]

func (ApiSslResultsRequest) PqSortField ¶

func (r ApiSslResultsRequest) PqSortField(pqSortField string) ApiSslResultsRequest

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiSslResultsRequest) XKeyfactorApiVersion ¶

func (r ApiSslResultsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslResultsRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslResultsRequest) XKeyfactorRequestedWith ¶

func (r ApiSslResultsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslResultsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslReviewAllRequest ¶

type ApiSslReviewAllRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslReviewAllRequest) Execute ¶

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

func (ApiSslReviewAllRequest) Query ¶

Query to filter the endpoints for which the status should be set

func (ApiSslReviewAllRequest) XKeyfactorApiVersion ¶

func (r ApiSslReviewAllRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslReviewAllRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslReviewAllRequest) XKeyfactorRequestedWith ¶

func (r ApiSslReviewAllRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslReviewAllRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslReviewedStatusRequest ¶

type ApiSslReviewedStatusRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslReviewedStatusRequest) EndpointReviewedStatus ¶

func (r ApiSslReviewedStatusRequest) EndpointReviewedStatus(endpointReviewedStatus []ModelsSSLEndpointStatusRequest) ApiSslReviewedStatusRequest

Endpoints and statuses for each

func (ApiSslReviewedStatusRequest) Execute ¶

func (ApiSslReviewedStatusRequest) XKeyfactorApiVersion ¶

func (r ApiSslReviewedStatusRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslReviewedStatusRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslReviewedStatusRequest) XKeyfactorRequestedWith ¶

func (r ApiSslReviewedStatusRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslReviewedStatusRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslScanPartRequest ¶

type ApiSslScanPartRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslScanPartRequest) Execute ¶

func (ApiSslScanPartRequest) XKeyfactorApiVersion ¶

func (r ApiSslScanPartRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslScanPartRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslScanPartRequest) XKeyfactorRequestedWith ¶

func (r ApiSslScanPartRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslScanPartRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslSetNetworkRangesRequest ¶

type ApiSslSetNetworkRangesRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslSetNetworkRangesRequest) Execute ¶

func (ApiSslSetNetworkRangesRequest) NetworkRanges ¶

Network range defitions and the network to which they should be set

func (ApiSslSetNetworkRangesRequest) XKeyfactorApiVersion ¶

func (r ApiSslSetNetworkRangesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslSetNetworkRangesRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslSetNetworkRangesRequest) XKeyfactorRequestedWith ¶

func (r ApiSslSetNetworkRangesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslSetNetworkRangesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslUpdateNetworkRequest ¶

type ApiSslUpdateNetworkRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslUpdateNetworkRequest) Execute ¶

func (ApiSslUpdateNetworkRequest) Network ¶

Properties of the network definition to be updated

func (ApiSslUpdateNetworkRequest) XKeyfactorApiVersion ¶

func (r ApiSslUpdateNetworkRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslUpdateNetworkRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslUpdateNetworkRequest) XKeyfactorRequestedWith ¶

func (r ApiSslUpdateNetworkRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslUpdateNetworkRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiSslValidateNetworkRangesRequest ¶

type ApiSslValidateNetworkRangesRequest struct {
	ApiService *SslApiService
	// contains filtered or unexported fields
}

func (ApiSslValidateNetworkRangesRequest) Execute ¶

func (ApiSslValidateNetworkRangesRequest) NetworkRangesToVerify ¶

func (r ApiSslValidateNetworkRangesRequest) NetworkRangesToVerify(networkRangesToVerify []string) ApiSslValidateNetworkRangesRequest

List of the network range definitions to verify

func (ApiSslValidateNetworkRangesRequest) XKeyfactorApiVersion ¶

func (r ApiSslValidateNetworkRangesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiSslValidateNetworkRangesRequest

Desired version of the api, if not provided defaults to v1

func (ApiSslValidateNetworkRangesRequest) XKeyfactorRequestedWith ¶

func (r ApiSslValidateNetworkRangesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiSslValidateNetworkRangesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiStatusGetEndpointsRequest ¶

type ApiStatusGetEndpointsRequest struct {
	ApiService *StatusApiService
	// contains filtered or unexported fields
}

func (ApiStatusGetEndpointsRequest) Execute ¶

func (ApiStatusGetEndpointsRequest) XKeyfactorApiVersion ¶

func (r ApiStatusGetEndpointsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiStatusGetEndpointsRequest

Desired version of the api, if not provided defaults to v1

func (ApiStatusGetEndpointsRequest) XKeyfactorRequestedWith ¶

func (r ApiStatusGetEndpointsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiStatusGetEndpointsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiTemplateGetGlobalSettingsRequest ¶

type ApiTemplateGetGlobalSettingsRequest struct {
	ApiService *TemplateApiService
	// contains filtered or unexported fields
}

func (ApiTemplateGetGlobalSettingsRequest) XKeyfactorApiVersion ¶

func (r ApiTemplateGetGlobalSettingsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiTemplateGetGlobalSettingsRequest

Desired version of the api, if not provided defaults to v1

func (ApiTemplateGetGlobalSettingsRequest) XKeyfactorRequestedWith ¶

func (r ApiTemplateGetGlobalSettingsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiTemplateGetGlobalSettingsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiTemplateGetTemplateRequest ¶

type ApiTemplateGetTemplateRequest struct {
	ApiService *TemplateApiService
	// contains filtered or unexported fields
}

func (ApiTemplateGetTemplateRequest) Execute ¶

func (ApiTemplateGetTemplateRequest) XKeyfactorApiVersion ¶

func (r ApiTemplateGetTemplateRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiTemplateGetTemplateRequest

Desired version of the api, if not provided defaults to v1

func (ApiTemplateGetTemplateRequest) XKeyfactorRequestedWith ¶

func (r ApiTemplateGetTemplateRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiTemplateGetTemplateRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiTemplateGetTemplatesRequest ¶

type ApiTemplateGetTemplatesRequest struct {
	ApiService *TemplateApiService
	// contains filtered or unexported fields
}

func (ApiTemplateGetTemplatesRequest) Execute ¶

func (ApiTemplateGetTemplatesRequest) SqPageReturned ¶

func (r ApiTemplateGetTemplatesRequest) SqPageReturned(sqPageReturned int32) ApiTemplateGetTemplatesRequest

The current page within the result set to be returned

func (ApiTemplateGetTemplatesRequest) SqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiTemplateGetTemplatesRequest) SqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiTemplateGetTemplatesRequest) SqSortAscending ¶

func (r ApiTemplateGetTemplatesRequest) SqSortAscending(sqSortAscending int32) ApiTemplateGetTemplatesRequest

Field sort direction [0=ascending, 1=descending]

func (ApiTemplateGetTemplatesRequest) SqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiTemplateGetTemplatesRequest) XKeyfactorApiVersion ¶

func (r ApiTemplateGetTemplatesRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiTemplateGetTemplatesRequest

Desired version of the api, if not provided defaults to v1

func (ApiTemplateGetTemplatesRequest) XKeyfactorRequestedWith ¶

func (r ApiTemplateGetTemplatesRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiTemplateGetTemplatesRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiTemplateGetValidSubjectPartsRequest ¶

type ApiTemplateGetValidSubjectPartsRequest struct {
	ApiService *TemplateApiService
	// contains filtered or unexported fields
}

func (ApiTemplateGetValidSubjectPartsRequest) Execute ¶

func (ApiTemplateGetValidSubjectPartsRequest) XKeyfactorApiVersion ¶

func (r ApiTemplateGetValidSubjectPartsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiTemplateGetValidSubjectPartsRequest

Desired version of the api, if not provided defaults to v1

func (ApiTemplateGetValidSubjectPartsRequest) XKeyfactorRequestedWith ¶

func (r ApiTemplateGetValidSubjectPartsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiTemplateGetValidSubjectPartsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiTemplateImportRequest ¶

type ApiTemplateImportRequest struct {
	ApiService *TemplateApiService
	// contains filtered or unexported fields
}

func (ApiTemplateImportRequest) ConfigurationTenantRequest ¶

Configuration tenant to import from

func (ApiTemplateImportRequest) Execute ¶

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

func (ApiTemplateImportRequest) XKeyfactorApiVersion ¶

func (r ApiTemplateImportRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiTemplateImportRequest

Desired version of the api, if not provided defaults to v1

func (ApiTemplateImportRequest) XKeyfactorRequestedWith ¶

func (r ApiTemplateImportRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiTemplateImportRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiTemplateUpdateGlobalSettingsRequest ¶

type ApiTemplateUpdateGlobalSettingsRequest struct {
	ApiService *TemplateApiService
	// contains filtered or unexported fields
}

func (ApiTemplateUpdateGlobalSettingsRequest) Settings ¶

The new global template settings.

func (ApiTemplateUpdateGlobalSettingsRequest) XKeyfactorApiVersion ¶

func (r ApiTemplateUpdateGlobalSettingsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiTemplateUpdateGlobalSettingsRequest

Desired version of the api, if not provided defaults to v1

func (ApiTemplateUpdateGlobalSettingsRequest) XKeyfactorRequestedWith ¶

func (r ApiTemplateUpdateGlobalSettingsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiTemplateUpdateGlobalSettingsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiTemplateUpdateTemplateRequest ¶

type ApiTemplateUpdateTemplateRequest struct {
	ApiService *TemplateApiService
	// contains filtered or unexported fields
}

func (ApiTemplateUpdateTemplateRequest) Execute ¶

func (ApiTemplateUpdateTemplateRequest) Template ¶

Properties of the certificate template to be updated

func (ApiTemplateUpdateTemplateRequest) XKeyfactorApiVersion ¶

func (r ApiTemplateUpdateTemplateRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiTemplateUpdateTemplateRequest

Desired version of the api, if not provided defaults to v1

func (ApiTemplateUpdateTemplateRequest) XKeyfactorRequestedWith ¶

func (r ApiTemplateUpdateTemplateRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiTemplateUpdateTemplateRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiUserCreateUserRequest ¶

type ApiUserCreateUserRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiUserCreateUserRequest) Execute ¶

func (ApiUserCreateUserRequest) SshUserCreationRequest ¶

func (r ApiUserCreateUserRequest) SshUserCreationRequest(sshUserCreationRequest ModelsSSHUsersSshUserCreationRequest) ApiUserCreateUserRequest

SSH user to be created.

func (ApiUserCreateUserRequest) XKeyfactorApiVersion ¶

func (r ApiUserCreateUserRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiUserCreateUserRequest

Desired version of the api, if not provided defaults to v1

func (ApiUserCreateUserRequest) XKeyfactorRequestedWith ¶

func (r ApiUserCreateUserRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiUserCreateUserRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiUserDeleteUserRequest ¶

type ApiUserDeleteUserRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiUserDeleteUserRequest) Execute ¶

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

func (ApiUserDeleteUserRequest) XKeyfactorApiVersion ¶

func (r ApiUserDeleteUserRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiUserDeleteUserRequest

Desired version of the api, if not provided defaults to v1

func (ApiUserDeleteUserRequest) XKeyfactorRequestedWith ¶

func (r ApiUserDeleteUserRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiUserDeleteUserRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiUserGetUserRequest ¶

type ApiUserGetUserRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiUserGetUserRequest) Execute ¶

func (ApiUserGetUserRequest) XKeyfactorApiVersion ¶

func (r ApiUserGetUserRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiUserGetUserRequest

Desired version of the api, if not provided defaults to v1

func (ApiUserGetUserRequest) XKeyfactorRequestedWith ¶

func (r ApiUserGetUserRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiUserGetUserRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiUserQueryUsersRequest ¶

type ApiUserQueryUsersRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiUserQueryUsersRequest) Execute ¶

func (ApiUserQueryUsersRequest) PqPageReturned ¶

func (r ApiUserQueryUsersRequest) PqPageReturned(pqPageReturned int32) ApiUserQueryUsersRequest

The current page within the result set to be returned

func (ApiUserQueryUsersRequest) PqQueryString ¶

func (r ApiUserQueryUsersRequest) PqQueryString(pqQueryString string) ApiUserQueryUsersRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiUserQueryUsersRequest) PqReturnLimit ¶

func (r ApiUserQueryUsersRequest) PqReturnLimit(pqReturnLimit int32) ApiUserQueryUsersRequest

Maximum number of records to be returned in a single call

func (ApiUserQueryUsersRequest) PqSortAscending ¶

func (r ApiUserQueryUsersRequest) PqSortAscending(pqSortAscending int32) ApiUserQueryUsersRequest

Field sort direction [0=ascending, 1=descending]

func (ApiUserQueryUsersRequest) PqSortField ¶

func (r ApiUserQueryUsersRequest) PqSortField(pqSortField string) ApiUserQueryUsersRequest

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiUserQueryUsersRequest) ShowOwnedAccess ¶

func (r ApiUserQueryUsersRequest) ShowOwnedAccess(showOwnedAccess bool) ApiUserQueryUsersRequest

Whether or not to return only logons that have access to servers the requesting user owns

func (ApiUserQueryUsersRequest) XKeyfactorApiVersion ¶

func (r ApiUserQueryUsersRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiUserQueryUsersRequest

Desired version of the api, if not provided defaults to v1

func (ApiUserQueryUsersRequest) XKeyfactorRequestedWith ¶

func (r ApiUserQueryUsersRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiUserQueryUsersRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiUserUpdateUserRequest ¶

type ApiUserUpdateUserRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiUserUpdateUserRequest) Execute ¶

func (ApiUserUpdateUserRequest) SshUserUpdateRequest ¶

func (r ApiUserUpdateUserRequest) SshUserUpdateRequest(sshUserUpdateRequest ModelsSSHUsersSshUserUpdateRequest) ApiUserUpdateUserRequest

The new state of the SSH user to update.

func (ApiUserUpdateUserRequest) XKeyfactorApiVersion ¶

func (r ApiUserUpdateUserRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiUserUpdateUserRequest

Desired version of the api, if not provided defaults to v1

func (ApiUserUpdateUserRequest) XKeyfactorRequestedWith ¶

func (r ApiUserUpdateUserRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiUserUpdateUserRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiUserUserAccessRequest ¶

type ApiUserUserAccessRequest struct {
	ApiService *UserApiService
	// contains filtered or unexported fields
}

func (ApiUserUserAccessRequest) Execute ¶

func (ApiUserUserAccessRequest) UserRequest ¶

Logons to add the existing user

func (ApiUserUserAccessRequest) XKeyfactorApiVersion ¶

func (r ApiUserUserAccessRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiUserUserAccessRequest

Desired version of the api, if not provided defaults to v1

func (ApiUserUserAccessRequest) XKeyfactorRequestedWith ¶

func (r ApiUserUserAccessRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiUserUserAccessRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowApprovePendingRequestsRequest ¶

type ApiWorkflowApprovePendingRequestsRequest struct {
	ApiService *WorkflowApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowApprovePendingRequestsRequest) Execute ¶

func (ApiWorkflowApprovePendingRequestsRequest) RequestIds ¶

Array of Keyfactor identifiers of the certificate requests

func (ApiWorkflowApprovePendingRequestsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowApprovePendingRequestsRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowApprovePendingRequestsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowApprovePendingRequestsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowDefinitionConfigureDefinitionStepsRequest ¶

type ApiWorkflowDefinitionConfigureDefinitionStepsRequest struct {
	ApiService *WorkflowDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowDefinitionConfigureDefinitionStepsRequest) Execute ¶

func (ApiWorkflowDefinitionConfigureDefinitionStepsRequest) Request ¶

A collection of {KeyfactorApi.Models.Workflows.DefinitionStepRequest} defining the steps to set on the definition.

func (ApiWorkflowDefinitionConfigureDefinitionStepsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowDefinitionConfigureDefinitionStepsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowDefinitionCreateNewDefinitionRequest ¶

type ApiWorkflowDefinitionCreateNewDefinitionRequest struct {
	ApiService *WorkflowDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowDefinitionCreateNewDefinitionRequest) Execute ¶

func (ApiWorkflowDefinitionCreateNewDefinitionRequest) Request ¶

A {KeyfactorApi.Models.Workflows.DefinitionCreateRequest} with the display name, description, key and type of the definition.

func (ApiWorkflowDefinitionCreateNewDefinitionRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowDefinitionCreateNewDefinitionRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowDefinitionDeleteRequest ¶

type ApiWorkflowDefinitionDeleteRequest struct {
	ApiService *WorkflowDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowDefinitionDeleteRequest) Execute ¶

func (ApiWorkflowDefinitionDeleteRequest) XKeyfactorApiVersion ¶

func (r ApiWorkflowDefinitionDeleteRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiWorkflowDefinitionDeleteRequest

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowDefinitionDeleteRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowDefinitionDeleteRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowDefinitionDeleteRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowDefinitionGetRequest ¶

type ApiWorkflowDefinitionGetRequest struct {
	ApiService *WorkflowDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowDefinitionGetRequest) DefinitionVersion ¶

func (r ApiWorkflowDefinitionGetRequest) DefinitionVersion(definitionVersion int32) ApiWorkflowDefinitionGetRequest

The version to retrieve. If this value is not specified, the latest version will be returned.

func (ApiWorkflowDefinitionGetRequest) Execute ¶

func (ApiWorkflowDefinitionGetRequest) Exportable ¶

Indicates if the response should be cleansed of role ids for export.

func (ApiWorkflowDefinitionGetRequest) XKeyfactorApiVersion ¶

func (r ApiWorkflowDefinitionGetRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiWorkflowDefinitionGetRequest

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowDefinitionGetRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowDefinitionGetRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowDefinitionGetRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowDefinitionGetStepSchemaRequest ¶

type ApiWorkflowDefinitionGetStepSchemaRequest struct {
	ApiService *WorkflowDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowDefinitionGetStepSchemaRequest) Execute ¶

func (ApiWorkflowDefinitionGetStepSchemaRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowDefinitionGetStepSchemaRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowDefinitionGetStepSchemaRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowDefinitionGetStepSchemaRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowDefinitionPublishDefinitionRequest ¶

type ApiWorkflowDefinitionPublishDefinitionRequest struct {
	ApiService *WorkflowDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowDefinitionPublishDefinitionRequest) Execute ¶

func (ApiWorkflowDefinitionPublishDefinitionRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowDefinitionPublishDefinitionRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowDefinitionQueryAvailableStepsRequest ¶

type ApiWorkflowDefinitionQueryAvailableStepsRequest struct {
	ApiService *WorkflowDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowDefinitionQueryAvailableStepsRequest) Execute ¶

func (ApiWorkflowDefinitionQueryAvailableStepsRequest) QueryPageReturned ¶

The current page within the result set to be returned

func (ApiWorkflowDefinitionQueryAvailableStepsRequest) QueryQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiWorkflowDefinitionQueryAvailableStepsRequest) QueryReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiWorkflowDefinitionQueryAvailableStepsRequest) QuerySortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiWorkflowDefinitionQueryAvailableStepsRequest) QuerySortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiWorkflowDefinitionQueryAvailableStepsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowDefinitionQueryAvailableStepsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowDefinitionQueryRequest ¶

type ApiWorkflowDefinitionQueryRequest struct {
	ApiService *WorkflowDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowDefinitionQueryRequest) Execute ¶

func (ApiWorkflowDefinitionQueryRequest) QueryPageReturned ¶

func (r ApiWorkflowDefinitionQueryRequest) QueryPageReturned(queryPageReturned int32) ApiWorkflowDefinitionQueryRequest

The current page within the result set to be returned

func (ApiWorkflowDefinitionQueryRequest) QueryQueryString ¶

func (r ApiWorkflowDefinitionQueryRequest) QueryQueryString(queryQueryString string) ApiWorkflowDefinitionQueryRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiWorkflowDefinitionQueryRequest) QueryReturnLimit ¶

func (r ApiWorkflowDefinitionQueryRequest) QueryReturnLimit(queryReturnLimit int32) ApiWorkflowDefinitionQueryRequest

Maximum number of records to be returned in a single call

func (ApiWorkflowDefinitionQueryRequest) QuerySortAscending ¶

func (r ApiWorkflowDefinitionQueryRequest) QuerySortAscending(querySortAscending int32) ApiWorkflowDefinitionQueryRequest

Field sort direction [0=ascending, 1=descending]

func (ApiWorkflowDefinitionQueryRequest) QuerySortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiWorkflowDefinitionQueryRequest) XKeyfactorApiVersion ¶

func (r ApiWorkflowDefinitionQueryRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiWorkflowDefinitionQueryRequest

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowDefinitionQueryRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowDefinitionQueryRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowDefinitionQueryRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowDefinitionQueryWorkflowTypesRequest ¶

type ApiWorkflowDefinitionQueryWorkflowTypesRequest struct {
	ApiService *WorkflowDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowDefinitionQueryWorkflowTypesRequest) Execute ¶

func (ApiWorkflowDefinitionQueryWorkflowTypesRequest) QueryPageReturned ¶

The current page within the result set to be returned

func (ApiWorkflowDefinitionQueryWorkflowTypesRequest) QueryQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiWorkflowDefinitionQueryWorkflowTypesRequest) QueryReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiWorkflowDefinitionQueryWorkflowTypesRequest) QuerySortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiWorkflowDefinitionQueryWorkflowTypesRequest) QuerySortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiWorkflowDefinitionQueryWorkflowTypesRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowDefinitionQueryWorkflowTypesRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowDefinitionUpdateExistingDefinitionRequest ¶

type ApiWorkflowDefinitionUpdateExistingDefinitionRequest struct {
	ApiService *WorkflowDefinitionApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowDefinitionUpdateExistingDefinitionRequest) Execute ¶

func (ApiWorkflowDefinitionUpdateExistingDefinitionRequest) Request ¶

The {KeyfactorApi.Models.Workflows.DefinitionUpdateRequest} holding the updated DispalyName and Description.

func (ApiWorkflowDefinitionUpdateExistingDefinitionRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowDefinitionUpdateExistingDefinitionRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowDenyPendingRequestsRequest ¶

type ApiWorkflowDenyPendingRequestsRequest struct {
	ApiService *WorkflowApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowDenyPendingRequestsRequest) Execute ¶

func (ApiWorkflowDenyPendingRequestsRequest) Request ¶

Keyfactor identifiers of the certificate requests to be denied and any denial comments

func (ApiWorkflowDenyPendingRequestsRequest) XKeyfactorApiVersion ¶

func (r ApiWorkflowDenyPendingRequestsRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiWorkflowDenyPendingRequestsRequest

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowDenyPendingRequestsRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowDenyPendingRequestsRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowDenyPendingRequestsRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowGetCertificateRequestDetailsRequest ¶

type ApiWorkflowGetCertificateRequestDetailsRequest struct {
	ApiService *WorkflowApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowGetCertificateRequestDetailsRequest) Execute ¶

func (ApiWorkflowGetCertificateRequestDetailsRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowGetCertificateRequestDetailsRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowGetDeniedRequest ¶

type ApiWorkflowGetDeniedRequest struct {
	ApiService *WorkflowApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowGetDeniedRequest) Execute ¶

func (ApiWorkflowGetDeniedRequest) PagedQueryPageReturned ¶

func (r ApiWorkflowGetDeniedRequest) PagedQueryPageReturned(pagedQueryPageReturned int32) ApiWorkflowGetDeniedRequest

The current page within the result set to be returned

func (ApiWorkflowGetDeniedRequest) PagedQueryQueryString ¶

func (r ApiWorkflowGetDeniedRequest) PagedQueryQueryString(pagedQueryQueryString string) ApiWorkflowGetDeniedRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiWorkflowGetDeniedRequest) PagedQueryReturnLimit ¶

func (r ApiWorkflowGetDeniedRequest) PagedQueryReturnLimit(pagedQueryReturnLimit int32) ApiWorkflowGetDeniedRequest

Maximum number of records to be returned in a single call

func (ApiWorkflowGetDeniedRequest) PagedQuerySortAscending ¶

func (r ApiWorkflowGetDeniedRequest) PagedQuerySortAscending(pagedQuerySortAscending int32) ApiWorkflowGetDeniedRequest

Field sort direction [0=ascending, 1=descending]

func (ApiWorkflowGetDeniedRequest) PagedQuerySortField ¶

func (r ApiWorkflowGetDeniedRequest) PagedQuerySortField(pagedQuerySortField string) ApiWorkflowGetDeniedRequest

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiWorkflowGetDeniedRequest) XKeyfactorApiVersion ¶

func (r ApiWorkflowGetDeniedRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiWorkflowGetDeniedRequest

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowGetDeniedRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowGetDeniedRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowGetDeniedRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowGetRequest ¶

type ApiWorkflowGetRequest struct {
	ApiService *WorkflowApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowGetRequest) Execute ¶

func (ApiWorkflowGetRequest) PagedQueryPageReturned ¶

func (r ApiWorkflowGetRequest) PagedQueryPageReturned(pagedQueryPageReturned int32) ApiWorkflowGetRequest

The current page within the result set to be returned

func (ApiWorkflowGetRequest) PagedQueryQueryString ¶

func (r ApiWorkflowGetRequest) PagedQueryQueryString(pagedQueryQueryString string) ApiWorkflowGetRequest

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiWorkflowGetRequest) PagedQueryReturnLimit ¶

func (r ApiWorkflowGetRequest) PagedQueryReturnLimit(pagedQueryReturnLimit int32) ApiWorkflowGetRequest

Maximum number of records to be returned in a single call

func (ApiWorkflowGetRequest) PagedQuerySortAscending ¶

func (r ApiWorkflowGetRequest) PagedQuerySortAscending(pagedQuerySortAscending int32) ApiWorkflowGetRequest

Field sort direction [0=ascending, 1=descending]

func (ApiWorkflowGetRequest) PagedQuerySortField ¶

func (r ApiWorkflowGetRequest) PagedQuerySortField(pagedQuerySortField string) ApiWorkflowGetRequest

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiWorkflowGetRequest) XKeyfactorApiVersion ¶

func (r ApiWorkflowGetRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiWorkflowGetRequest

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowGetRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowGetRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowGetRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowInstanceDeleteInstanceRequest ¶

type ApiWorkflowInstanceDeleteInstanceRequest struct {
	ApiService *WorkflowInstanceApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowInstanceDeleteInstanceRequest) Execute ¶

func (ApiWorkflowInstanceDeleteInstanceRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowInstanceDeleteInstanceRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowInstanceDeleteInstanceRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowInstanceDeleteInstanceRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowInstanceGetRequest ¶

type ApiWorkflowInstanceGetRequest struct {
	ApiService *WorkflowInstanceApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowInstanceGetRequest) Execute ¶

func (ApiWorkflowInstanceGetRequest) XKeyfactorApiVersion ¶

func (r ApiWorkflowInstanceGetRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiWorkflowInstanceGetRequest

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowInstanceGetRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowInstanceGetRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowInstanceGetRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowInstanceQueryInstancesAssignedToMeRequest ¶

type ApiWorkflowInstanceQueryInstancesAssignedToMeRequest struct {
	ApiService *WorkflowInstanceApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowInstanceQueryInstancesAssignedToMeRequest) Execute ¶

func (ApiWorkflowInstanceQueryInstancesAssignedToMeRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiWorkflowInstanceQueryInstancesAssignedToMeRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiWorkflowInstanceQueryInstancesAssignedToMeRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiWorkflowInstanceQueryInstancesAssignedToMeRequest) PqSortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiWorkflowInstanceQueryInstancesAssignedToMeRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiWorkflowInstanceQueryInstancesAssignedToMeRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowInstanceQueryInstancesAssignedToMeRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowInstanceQueryInstancesStartedByMeRequest ¶

type ApiWorkflowInstanceQueryInstancesStartedByMeRequest struct {
	ApiService *WorkflowInstanceApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowInstanceQueryInstancesStartedByMeRequest) Execute ¶

func (ApiWorkflowInstanceQueryInstancesStartedByMeRequest) InstanceQueryPageReturned ¶

The current page within the result set to be returned

func (ApiWorkflowInstanceQueryInstancesStartedByMeRequest) InstanceQueryQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiWorkflowInstanceQueryInstancesStartedByMeRequest) InstanceQueryReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiWorkflowInstanceQueryInstancesStartedByMeRequest) InstanceQuerySortAscending ¶

Field sort direction [0=ascending, 1=descending]

func (ApiWorkflowInstanceQueryInstancesStartedByMeRequest) InstanceQuerySortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiWorkflowInstanceQueryInstancesStartedByMeRequest) XKeyfactorApiVersion ¶

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowInstanceQueryInstancesStartedByMeRequest) XKeyfactorRequestedWith ¶

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowInstanceQueryRequest ¶

type ApiWorkflowInstanceQueryRequest struct {
	ApiService *WorkflowInstanceApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowInstanceQueryRequest) Execute ¶

func (ApiWorkflowInstanceQueryRequest) PqPageReturned ¶

The current page within the result set to be returned

func (ApiWorkflowInstanceQueryRequest) PqQueryString ¶

Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)

func (ApiWorkflowInstanceQueryRequest) PqReturnLimit ¶

Maximum number of records to be returned in a single call

func (ApiWorkflowInstanceQueryRequest) PqSortAscending ¶

func (r ApiWorkflowInstanceQueryRequest) PqSortAscending(pqSortAscending int32) ApiWorkflowInstanceQueryRequest

Field sort direction [0=ascending, 1=descending]

func (ApiWorkflowInstanceQueryRequest) PqSortField ¶

Field by which the results should be sorted (view results via Management Portal for sortable columns)

func (ApiWorkflowInstanceQueryRequest) XKeyfactorApiVersion ¶

func (r ApiWorkflowInstanceQueryRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiWorkflowInstanceQueryRequest

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowInstanceQueryRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowInstanceQueryRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowInstanceQueryRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowInstanceRestartRequest ¶

type ApiWorkflowInstanceRestartRequest struct {
	ApiService *WorkflowInstanceApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowInstanceRestartRequest) Execute ¶

func (ApiWorkflowInstanceRestartRequest) Version ¶

The version of the definition to restart the instance against. Defaults to the published version.

func (ApiWorkflowInstanceRestartRequest) XKeyfactorApiVersion ¶

func (r ApiWorkflowInstanceRestartRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiWorkflowInstanceRestartRequest

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowInstanceRestartRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowInstanceRestartRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowInstanceRestartRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowInstanceSignalRequest ¶

type ApiWorkflowInstanceSignalRequest struct {
	ApiService *WorkflowInstanceApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowInstanceSignalRequest) Execute ¶

func (ApiWorkflowInstanceSignalRequest) Signal ¶

The signal to receive.

func (ApiWorkflowInstanceSignalRequest) XKeyfactorApiVersion ¶

func (r ApiWorkflowInstanceSignalRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiWorkflowInstanceSignalRequest

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowInstanceSignalRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowInstanceSignalRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowInstanceSignalRequest

Type of the request [XMLHttpRequest, APIClient]

type ApiWorkflowInstanceStopRequest ¶

type ApiWorkflowInstanceStopRequest struct {
	ApiService *WorkflowInstanceApiService
	// contains filtered or unexported fields
}

func (ApiWorkflowInstanceStopRequest) Execute ¶

func (ApiWorkflowInstanceStopRequest) XKeyfactorApiVersion ¶

func (r ApiWorkflowInstanceStopRequest) XKeyfactorApiVersion(xKeyfactorApiVersion string) ApiWorkflowInstanceStopRequest

Desired version of the api, if not provided defaults to v1

func (ApiWorkflowInstanceStopRequest) XKeyfactorRequestedWith ¶

func (r ApiWorkflowInstanceStopRequest) XKeyfactorRequestedWith(xKeyfactorRequestedWith string) ApiWorkflowInstanceStopRequest

Type of the request [XMLHttpRequest, APIClient]

type AuditLogApiService ¶

type AuditLogApiService service

AuditLogApiService AuditLogApi service

func (*AuditLogApiService) AuditLogDownloadCSV ¶

AuditLogDownloadCSV Returns a Comma Separated file containing the audit log entries according to the provided filter

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAuditLogDownloadCSVRequest

func (*AuditLogApiService) AuditLogDownloadCSVExecute ¶

func (a *AuditLogApiService) AuditLogDownloadCSVExecute(r ApiAuditLogDownloadCSVRequest) (string, *http.Response, error)

Execute executes the request

@return string

func (*AuditLogApiService) AuditLogGetAuditLog ¶

func (a *AuditLogApiService) AuditLogGetAuditLog(ctx context.Context, id int32) ApiAuditLogGetAuditLogRequest

AuditLogGetAuditLog Returns the audit log entry associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifer of the audit entry to be returned
@return ApiAuditLogGetAuditLogRequest

func (*AuditLogApiService) AuditLogGetAuditLogExecute ¶

func (a *AuditLogApiService) AuditLogGetAuditLogExecute(r ApiAuditLogGetAuditLogRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*AuditLogApiService) AuditLogGetAuditLogs ¶

AuditLogGetAuditLogs Returns all audit log entries according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAuditLogGetAuditLogsRequest

func (*AuditLogApiService) AuditLogGetAuditLogsExecute ¶

Execute executes the request

@return []KeyfactorAuditingQueryingAuditLogEntry

func (*AuditLogApiService) AuditLogGetRelatedEntities ¶

func (a *AuditLogApiService) AuditLogGetRelatedEntities(ctx context.Context) ApiAuditLogGetRelatedEntitiesRequest

AuditLogGetRelatedEntities Returns the audit log entry associated with the provided keyfactor id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiAuditLogGetRelatedEntitiesRequest

func (*AuditLogApiService) AuditLogGetRelatedEntitiesExecute ¶

Execute executes the request

@return []KeyfactorAuditingQueryingAuditLogEntry

func (*AuditLogApiService) AuditLogValidateAuditLog ¶

func (a *AuditLogApiService) AuditLogValidateAuditLog(ctx context.Context, id int32) ApiAuditLogValidateAuditLogRequest

AuditLogValidateAuditLog Validates the audit log entry associated with the provided keyfactor id

The validation performs a signing operation and checks the signature against the stored signature.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the audit log entry
@return ApiAuditLogValidateAuditLogRequest

func (*AuditLogApiService) AuditLogValidateAuditLogExecute ¶

func (a *AuditLogApiService) AuditLogValidateAuditLogExecute(r ApiAuditLogValidateAuditLogRequest) (bool, *http.Response, error)

Execute executes the request

@return bool

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 CSRGenerationApiService ¶

type CSRGenerationApiService service

CSRGenerationApiService CSRGenerationApi service

func (*CSRGenerationApiService) CSRGenerationDeleteCSR ¶

CSRGenerationDeleteCSR Deletes a CSR associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifer of the CSR to be deleted
@return ApiCSRGenerationDeleteCSRRequest

func (*CSRGenerationApiService) CSRGenerationDeleteCSRExecute ¶

func (a *CSRGenerationApiService) CSRGenerationDeleteCSRExecute(r ApiCSRGenerationDeleteCSRRequest) (*http.Response, error)

Execute executes the request

func (*CSRGenerationApiService) CSRGenerationDeleteCSRs ¶

CSRGenerationDeleteCSRs Deletes the CSRs associated with the provided identifiers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCSRGenerationDeleteCSRsRequest

func (*CSRGenerationApiService) CSRGenerationDeleteCSRsExecute ¶

func (a *CSRGenerationApiService) CSRGenerationDeleteCSRsExecute(r ApiCSRGenerationDeleteCSRsRequest) (*http.Response, error)

Execute executes the request

func (*CSRGenerationApiService) CSRGenerationDownload ¶

CSRGenerationDownload Returns a previously generated CSR associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the CSR
@return ApiCSRGenerationDownloadRequest

func (*CSRGenerationApiService) CSRGenerationDownloadExecute ¶

Execute executes the request

@return ModelsCSRGenerationResponseModel

func (*CSRGenerationApiService) CSRGenerationGetPendingCSRs ¶

CSRGenerationGetPendingCSRs Returns a list of the currently pending CSRs according to the provided query

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCSRGenerationGetPendingCSRsRequest

func (*CSRGenerationApiService) CSRGenerationGetPendingCSRsExecute ¶

Execute executes the request

@return []ModelsPendingCSRResponse

func (*CSRGenerationApiService) CSRGenerationPostGenerate ¶

CSRGenerationPostGenerate Generates a CSR according the properties provided

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCSRGenerationPostGenerateRequest

func (*CSRGenerationApiService) CSRGenerationPostGenerateExecute ¶

Execute executes the request

@return ModelsCSRContents

type CSSCMSDataModelModelsPamProviderTypeParamValue ¶ added in v0.2.0

type CSSCMSDataModelModelsPamProviderTypeParamValue struct {
	Id                   *int32                                  `json:"Id,omitempty"`
	Value                *string                                 `json:"Value,omitempty"`
	InstanceId           *int32                                  `json:"InstanceId,omitempty"`
	InstanceGuid         *string                                 `json:"InstanceGuid,omitempty"`
	Provider             *CSSCMSDataModelModelsProvider          `json:"Provider,omitempty"`
	ProviderTypeParam    *CSSCMSDataModelModelsProviderTypeParam `json:"ProviderTypeParam,omitempty"`
	AdditionalProperties map[string]interface{}
}

CSSCMSDataModelModelsPamProviderTypeParamValue struct for CSSCMSDataModelModelsPamProviderTypeParamValue

func NewCSSCMSDataModelModelsPamProviderTypeParamValue ¶ added in v0.2.0

func NewCSSCMSDataModelModelsPamProviderTypeParamValue() *CSSCMSDataModelModelsPamProviderTypeParamValue

NewCSSCMSDataModelModelsPamProviderTypeParamValue instantiates a new CSSCMSDataModelModelsPamProviderTypeParamValue 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 NewCSSCMSDataModelModelsPamProviderTypeParamValueWithDefaults ¶ added in v0.2.0

func NewCSSCMSDataModelModelsPamProviderTypeParamValueWithDefaults() *CSSCMSDataModelModelsPamProviderTypeParamValue

NewCSSCMSDataModelModelsPamProviderTypeParamValueWithDefaults instantiates a new CSSCMSDataModelModelsPamProviderTypeParamValue 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 (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetId ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetIdOk ¶ added in v0.2.0

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 (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetInstanceGuid ¶ added in v0.2.0

GetInstanceGuid returns the InstanceGuid field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetInstanceGuidOk ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsPamProviderTypeParamValue) GetInstanceGuidOk() (*string, bool)

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

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetInstanceId ¶ added in v0.2.0

GetInstanceId returns the InstanceId field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetInstanceIdOk ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetProvider ¶ added in v0.2.0

GetProvider returns the Provider field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetProviderOk ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetProviderTypeParam ¶ added in v0.2.0

GetProviderTypeParam returns the ProviderTypeParam field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetProviderTypeParamOk ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetValue ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) GetValueOk ¶ added in v0.2.0

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 (*CSSCMSDataModelModelsPamProviderTypeParamValue) HasId ¶ added in v0.2.0

HasId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) HasInstanceGuid ¶ added in v0.2.0

HasInstanceGuid returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) HasInstanceId ¶ added in v0.2.0

HasInstanceId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) HasProvider ¶ added in v0.2.0

HasProvider returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) HasProviderTypeParam ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsPamProviderTypeParamValue) HasProviderTypeParam() bool

HasProviderTypeParam returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) HasValue ¶ added in v0.2.0

HasValue returns a boolean if a field has been set.

func (CSSCMSDataModelModelsPamProviderTypeParamValue) MarshalJSON ¶ added in v0.2.0

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) SetId ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) SetInstanceGuid ¶ added in v0.2.0

SetInstanceGuid gets a reference to the given string and assigns it to the InstanceGuid field.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) SetInstanceId ¶ added in v0.2.0

SetInstanceId gets a reference to the given int32 and assigns it to the InstanceId field.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) SetProvider ¶ added in v0.2.0

SetProvider gets a reference to the given CSSCMSDataModelModelsProvider and assigns it to the Provider field.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) SetProviderTypeParam ¶ added in v0.2.0

SetProviderTypeParam gets a reference to the given CSSCMSDataModelModelsProviderTypeParam and assigns it to the ProviderTypeParam field.

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) SetValue ¶ added in v0.2.0

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

func (CSSCMSDataModelModelsPamProviderTypeParamValue) ToMap ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsPamProviderTypeParamValue) UnmarshalJSON ¶ added in v0.2.0

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

type CSSCMSDataModelModelsProvider ¶ added in v0.2.0

type CSSCMSDataModelModelsProvider struct {
	Id                      *int32                                           `json:"Id,omitempty"`
	Name                    string                                           `json:"Name"`
	Area                    *int32                                           `json:"Area,omitempty"`
	ProviderType            CSSCMSDataModelModelsProviderType                `json:"ProviderType"`
	ProviderTypeParamValues []CSSCMSDataModelModelsPamProviderTypeParamValue `json:"ProviderTypeParamValues,omitempty"`
	SecuredAreaId           *int32                                           `json:"SecuredAreaId,omitempty"`
	AdditionalProperties    map[string]interface{}
}

CSSCMSDataModelModelsProvider struct for CSSCMSDataModelModelsProvider

func NewCSSCMSDataModelModelsProvider ¶ added in v0.2.0

func NewCSSCMSDataModelModelsProvider(name string, providerType CSSCMSDataModelModelsProviderType) *CSSCMSDataModelModelsProvider

NewCSSCMSDataModelModelsProvider instantiates a new CSSCMSDataModelModelsProvider 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 NewCSSCMSDataModelModelsProviderWithDefaults ¶ added in v0.2.0

func NewCSSCMSDataModelModelsProviderWithDefaults() *CSSCMSDataModelModelsProvider

NewCSSCMSDataModelModelsProviderWithDefaults instantiates a new CSSCMSDataModelModelsProvider 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 (*CSSCMSDataModelModelsProvider) GetArea ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProvider) GetArea() int32

GetArea returns the Area field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsProvider) GetAreaOk ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProvider) GetAreaOk() (*int32, bool)

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

func (*CSSCMSDataModelModelsProvider) GetId ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProvider) GetIdOk ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProvider) 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 (*CSSCMSDataModelModelsProvider) GetName ¶ added in v0.2.0

GetName returns the Name field value

func (*CSSCMSDataModelModelsProvider) GetNameOk ¶ added in v0.2.0

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

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

func (*CSSCMSDataModelModelsProvider) GetProviderType ¶ added in v0.2.0

GetProviderType returns the ProviderType field value

func (*CSSCMSDataModelModelsProvider) GetProviderTypeOk ¶ added in v0.2.0

GetProviderTypeOk returns a tuple with the ProviderType field value and a boolean to check if the value has been set.

func (*CSSCMSDataModelModelsProvider) GetProviderTypeParamValues ¶ added in v0.2.0

GetProviderTypeParamValues returns the ProviderTypeParamValues field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsProvider) GetProviderTypeParamValuesOk ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProvider) GetSecuredAreaId ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProvider) GetSecuredAreaId() int32

GetSecuredAreaId returns the SecuredAreaId field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsProvider) GetSecuredAreaIdOk ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProvider) GetSecuredAreaIdOk() (*int32, bool)

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

func (*CSSCMSDataModelModelsProvider) HasArea ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProvider) HasArea() bool

HasArea returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProvider) HasId ¶ added in v0.2.0

HasId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProvider) HasProviderTypeParamValues ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProvider) HasProviderTypeParamValues() bool

HasProviderTypeParamValues returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProvider) HasSecuredAreaId ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProvider) HasSecuredAreaId() bool

HasSecuredAreaId returns a boolean if a field has been set.

func (CSSCMSDataModelModelsProvider) MarshalJSON ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProvider) SetArea ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProvider) SetArea(v int32)

SetArea gets a reference to the given int32 and assigns it to the Area field.

func (*CSSCMSDataModelModelsProvider) SetId ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProvider) SetName ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProvider) SetName(v string)

SetName sets field value

func (*CSSCMSDataModelModelsProvider) SetProviderType ¶ added in v0.2.0

SetProviderType sets field value

func (*CSSCMSDataModelModelsProvider) SetProviderTypeParamValues ¶ added in v0.2.0

SetProviderTypeParamValues gets a reference to the given []CSSCMSDataModelModelsPamProviderTypeParamValue and assigns it to the ProviderTypeParamValues field.

func (*CSSCMSDataModelModelsProvider) SetSecuredAreaId ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProvider) SetSecuredAreaId(v int32)

SetSecuredAreaId gets a reference to the given int32 and assigns it to the SecuredAreaId field.

func (CSSCMSDataModelModelsProvider) ToMap ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProvider) UnmarshalJSON ¶ added in v0.2.0

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

type CSSCMSDataModelModelsProviderType ¶ added in v0.2.0

type CSSCMSDataModelModelsProviderType struct {
	Id                   *string                                  `json:"Id,omitempty"`
	Name                 *string                                  `json:"Name,omitempty"`
	ProviderTypeParams   []CSSCMSDataModelModelsProviderTypeParam `json:"ProviderTypeParams,omitempty"`
	AdditionalProperties map[string]interface{}
}

CSSCMSDataModelModelsProviderType struct for CSSCMSDataModelModelsProviderType

func NewCSSCMSDataModelModelsProviderType ¶ added in v0.2.0

func NewCSSCMSDataModelModelsProviderType() *CSSCMSDataModelModelsProviderType

NewCSSCMSDataModelModelsProviderType instantiates a new CSSCMSDataModelModelsProviderType 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 NewCSSCMSDataModelModelsProviderTypeWithDefaults ¶ added in v0.2.0

func NewCSSCMSDataModelModelsProviderTypeWithDefaults() *CSSCMSDataModelModelsProviderType

NewCSSCMSDataModelModelsProviderTypeWithDefaults instantiates a new CSSCMSDataModelModelsProviderType 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 (*CSSCMSDataModelModelsProviderType) GetId ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderType) GetIdOk ¶ added in v0.2.0

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 (*CSSCMSDataModelModelsProviderType) GetName ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderType) GetNameOk ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderType) 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 (*CSSCMSDataModelModelsProviderType) GetProviderTypeParams ¶ added in v0.2.0

GetProviderTypeParams returns the ProviderTypeParams field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsProviderType) GetProviderTypeParamsOk ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderType) HasId ¶ added in v0.2.0

HasId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderType) HasName ¶ added in v0.2.0

HasName returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderType) HasProviderTypeParams ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderType) HasProviderTypeParams() bool

HasProviderTypeParams returns a boolean if a field has been set.

func (CSSCMSDataModelModelsProviderType) MarshalJSON ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderType) SetId ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderType) SetName ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderType) SetProviderTypeParams ¶ added in v0.2.0

SetProviderTypeParams gets a reference to the given []CSSCMSDataModelModelsProviderTypeParam and assigns it to the ProviderTypeParams field.

func (CSSCMSDataModelModelsProviderType) ToMap ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderType) UnmarshalJSON ¶ added in v0.2.0

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

type CSSCMSDataModelModelsProviderTypeParam ¶ added in v0.2.0

type CSSCMSDataModelModelsProviderTypeParam struct {
	Id                   *int32                             `json:"Id,omitempty"`
	Name                 *string                            `json:"Name,omitempty"`
	DisplayName          *string                            `json:"DisplayName,omitempty"`
	DataType             *int32                             `json:"DataType,omitempty"`
	InstanceLevel        *bool                              `json:"InstanceLevel,omitempty"`
	ProviderType         *CSSCMSDataModelModelsProviderType `json:"ProviderType,omitempty"`
	AdditionalProperties map[string]interface{}
}

CSSCMSDataModelModelsProviderTypeParam struct for CSSCMSDataModelModelsProviderTypeParam

func NewCSSCMSDataModelModelsProviderTypeParam ¶ added in v0.2.0

func NewCSSCMSDataModelModelsProviderTypeParam() *CSSCMSDataModelModelsProviderTypeParam

NewCSSCMSDataModelModelsProviderTypeParam instantiates a new CSSCMSDataModelModelsProviderTypeParam 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 NewCSSCMSDataModelModelsProviderTypeParamWithDefaults ¶ added in v0.2.0

func NewCSSCMSDataModelModelsProviderTypeParamWithDefaults() *CSSCMSDataModelModelsProviderTypeParam

NewCSSCMSDataModelModelsProviderTypeParamWithDefaults instantiates a new CSSCMSDataModelModelsProviderTypeParam 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 (*CSSCMSDataModelModelsProviderTypeParam) GetDataType ¶ added in v0.2.0

GetDataType returns the DataType field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsProviderTypeParam) GetDataTypeOk ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderTypeParam) GetDataTypeOk() (*int32, bool)

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

func (*CSSCMSDataModelModelsProviderTypeParam) GetDisplayName ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderTypeParam) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsProviderTypeParam) GetDisplayNameOk ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderTypeParam) GetDisplayNameOk() (*string, bool)

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

func (*CSSCMSDataModelModelsProviderTypeParam) GetId ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderTypeParam) GetIdOk ¶ added in v0.2.0

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 (*CSSCMSDataModelModelsProviderTypeParam) GetInstanceLevel ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderTypeParam) GetInstanceLevel() bool

GetInstanceLevel returns the InstanceLevel field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsProviderTypeParam) GetInstanceLevelOk ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderTypeParam) GetInstanceLevelOk() (*bool, bool)

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

func (*CSSCMSDataModelModelsProviderTypeParam) GetName ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderTypeParam) GetNameOk ¶ added in v0.2.0

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 (*CSSCMSDataModelModelsProviderTypeParam) GetProviderType ¶ added in v0.2.0

GetProviderType returns the ProviderType field value if set, zero value otherwise.

func (*CSSCMSDataModelModelsProviderTypeParam) GetProviderTypeOk ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderTypeParam) HasDataType ¶ added in v0.2.0

HasDataType returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderTypeParam) HasDisplayName ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderTypeParam) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderTypeParam) HasId ¶ added in v0.2.0

HasId returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderTypeParam) HasInstanceLevel ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderTypeParam) HasInstanceLevel() bool

HasInstanceLevel returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderTypeParam) HasName ¶ added in v0.2.0

HasName returns a boolean if a field has been set.

func (*CSSCMSDataModelModelsProviderTypeParam) HasProviderType ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderTypeParam) HasProviderType() bool

HasProviderType returns a boolean if a field has been set.

func (CSSCMSDataModelModelsProviderTypeParam) MarshalJSON ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderTypeParam) SetDataType ¶ added in v0.2.0

SetDataType gets a reference to the given int32 and assigns it to the DataType field.

func (*CSSCMSDataModelModelsProviderTypeParam) SetDisplayName ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderTypeParam) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*CSSCMSDataModelModelsProviderTypeParam) SetId ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderTypeParam) SetInstanceLevel ¶ added in v0.2.0

func (o *CSSCMSDataModelModelsProviderTypeParam) SetInstanceLevel(v bool)

SetInstanceLevel gets a reference to the given bool and assigns it to the InstanceLevel field.

func (*CSSCMSDataModelModelsProviderTypeParam) SetName ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderTypeParam) SetProviderType ¶ added in v0.2.0

SetProviderType gets a reference to the given CSSCMSDataModelModelsProviderType and assigns it to the ProviderType field.

func (CSSCMSDataModelModelsProviderTypeParam) ToMap ¶ added in v0.2.0

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

func (*CSSCMSDataModelModelsProviderTypeParam) UnmarshalJSON ¶ added in v0.2.0

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

type CertificateApiService ¶

type CertificateApiService service

CertificateApiService CertificateApi service

func (*CertificateApiService) CertificateAnalyzeCert ¶

CertificateAnalyzeCert Returns the public information of the certificate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateAnalyzeCertRequest

func (*CertificateApiService) CertificateAnalyzeCertExecute ¶

Execute executes the request

@return []ModelsCertificateDetails

func (*CertificateApiService) CertificateCertificateHistory ¶

func (a *CertificateApiService) CertificateCertificateHistory(ctx context.Context, id int32) ApiCertificateCertificateHistoryRequest

CertificateCertificateHistory Gets the history of operations on a certificate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Id of the certificate
@return ApiCertificateCertificateHistoryRequest

func (*CertificateApiService) CertificateCertificateHistoryExecute ¶

Execute executes the request

@return []ModelsPKICertificateOperation

func (*CertificateApiService) CertificateCompareMetadata ¶

CertificateCompareMetadata Compares the metadata value provided with the metadata value associated with the specified certificate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateCompareMetadataRequest

func (*CertificateApiService) CertificateCompareMetadataExecute ¶

func (a *CertificateApiService) CertificateCompareMetadataExecute(r ApiCertificateCompareMetadataRequest) (bool, *http.Response, error)

Execute executes the request

@return bool

func (*CertificateApiService) CertificateDeleteByQuery ¶

CertificateDeleteByQuery Deletes multiple persisted certificate entities selected by a given query

This will ignore individual delete failures, and continue processing the array.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateDeleteByQueryRequest

func (*CertificateApiService) CertificateDeleteByQueryExecute ¶

func (a *CertificateApiService) CertificateDeleteByQueryExecute(r ApiCertificateDeleteByQueryRequest) (*http.Response, error)

Execute executes the request

func (*CertificateApiService) CertificateDeleteCertificate ¶

func (a *CertificateApiService) CertificateDeleteCertificate(ctx context.Context, id int32) ApiCertificateDeleteCertificateRequest

CertificateDeleteCertificate Deletes a persisted certificate by its unique id as well as the stored private key (if present) associated with it

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the certificate record
@return ApiCertificateDeleteCertificateRequest

func (*CertificateApiService) CertificateDeleteCertificateExecute ¶

func (a *CertificateApiService) CertificateDeleteCertificateExecute(r ApiCertificateDeleteCertificateRequest) (*http.Response, error)

Execute executes the request

func (*CertificateApiService) CertificateDeleteCertificates ¶

func (a *CertificateApiService) CertificateDeleteCertificates(ctx context.Context) ApiCertificateDeleteCertificatesRequest

CertificateDeleteCertificates Deletes multiple persisted certificates by their unique ids

This will ignore individual delete failures, and continue processing the array

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateDeleteCertificatesRequest

func (*CertificateApiService) CertificateDeleteCertificatesExecute ¶

func (a *CertificateApiService) CertificateDeleteCertificatesExecute(r ApiCertificateDeleteCertificatesRequest) (*http.Response, error)

Execute executes the request

func (*CertificateApiService) CertificateDeletePrivateKeys0 ¶

func (a *CertificateApiService) CertificateDeletePrivateKeys0(ctx context.Context) ApiCertificateDeletePrivateKeys0Request

CertificateDeletePrivateKeys0 Deletes the persisted private keys of multiple certificates by the unique ids of the Certificates

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateDeletePrivateKeys0Request

func (*CertificateApiService) CertificateDeletePrivateKeys0Execute ¶

func (a *CertificateApiService) CertificateDeletePrivateKeys0Execute(r ApiCertificateDeletePrivateKeys0Request) (*http.Response, error)

Execute executes the request

func (*CertificateApiService) CertificateDeletePrivateKeys1 ¶

func (a *CertificateApiService) CertificateDeletePrivateKeys1(ctx context.Context, id int32) ApiCertificateDeletePrivateKeys1Request

CertificateDeletePrivateKeys1 Deletes the persisted private key of the certificate associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the certificate for which the associated private key should be deleted
@return ApiCertificateDeletePrivateKeys1Request

func (*CertificateApiService) CertificateDeletePrivateKeys1Execute ¶

func (a *CertificateApiService) CertificateDeletePrivateKeys1Execute(r ApiCertificateDeletePrivateKeys1Request) (*http.Response, error)

Execute executes the request

func (*CertificateApiService) CertificateDownloadCertificateAsync ¶

func (a *CertificateApiService) CertificateDownloadCertificateAsync(ctx context.Context) ApiCertificateDownloadCertificateAsyncRequest

CertificateDownloadCertificateAsync Downloads the persisted certificate associated with the provided query

*NOTE: At least one of the following criteria must be provided: 1. Certificate ID 2. Thumbprint 3. Serial number AND Issuer DN (because Serial Number is CA-specific and so is not unique enough on its own)

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateDownloadCertificateAsyncRequest

func (*CertificateApiService) CertificateDownloadCertificateAsyncExecute ¶

Execute executes the request

@return ModelsCertificateDownloadResponse

func (*CertificateApiService) CertificateGetCertificate ¶

func (a *CertificateApiService) CertificateGetCertificate(ctx context.Context, id int32) ApiCertificateGetCertificateRequest

CertificateGetCertificate Returns a single certificate that matches the id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor certificate identifier
@return ApiCertificateGetCertificateRequest

func (*CertificateApiService) CertificateGetCertificateExecute ¶

Execute executes the request

@return ModelsCertificateRetrievalResponse

func (*CertificateApiService) CertificateGetCertificateLocations ¶

func (a *CertificateApiService) CertificateGetCertificateLocations(ctx context.Context, id int32) ApiCertificateGetCertificateLocationsRequest

CertificateGetCertificateLocations Returns a list of locations the certificate is in

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor certificate identifier
@return ApiCertificateGetCertificateLocationsRequest

func (*CertificateApiService) CertificateGetCertificateLocationsExecute ¶

Execute executes the request

@return KeyfactorApiModelsCertificatesCertificateLocationsResponse

func (*CertificateApiService) CertificateGetCertificateSecurity ¶

func (a *CertificateApiService) CertificateGetCertificateSecurity(ctx context.Context, id int32) ApiCertificateGetCertificateSecurityRequest

CertificateGetCertificateSecurity Gets the list of Security Identities and which permissions they have on the given certificate.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Id of the certificate permissions are being checked on
@return ApiCertificateGetCertificateSecurityRequest

func (*CertificateApiService) CertificateGetCertificateSecurityExecute ¶

Execute executes the request

@return ModelsSecurityCertificatePermissions

func (*CertificateApiService) CertificateIdentityAudit ¶

func (a *CertificateApiService) CertificateIdentityAudit(ctx context.Context, id int32) ApiCertificateIdentityAuditRequest

CertificateIdentityAudit Audit identity permissions for certificate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Id of the certificate being checked
@return ApiCertificateIdentityAuditRequest

func (*CertificateApiService) CertificateIdentityAuditExecute ¶

Execute executes the request

@return []KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse

func (*CertificateApiService) CertificatePostImportCertificate ¶

func (a *CertificateApiService) CertificatePostImportCertificate(ctx context.Context) ApiCertificatePostImportCertificateRequest

CertificatePostImportCertificate Imports the provided certificate into the Keyfactor instance, including any provided associated data

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificatePostImportCertificateRequest

func (*CertificateApiService) CertificatePostImportCertificateExecute ¶

Execute executes the request

@return ModelsCertificateImportResponseModel

func (*CertificateApiService) CertificateQueryCertificates ¶

func (a *CertificateApiService) CertificateQueryCertificates(ctx context.Context) ApiCertificateQueryCertificatesRequest

CertificateQueryCertificates Returns all certificates according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateQueryCertificatesRequest

func (*CertificateApiService) CertificateQueryCertificatesExecute ¶

Execute executes the request

@return []ModelsCertificateRetrievalResponse

func (*CertificateApiService) CertificateRecoverCertificateAsync ¶

func (a *CertificateApiService) CertificateRecoverCertificateAsync(ctx context.Context) ApiCertificateRecoverCertificateAsyncRequest

CertificateRecoverCertificateAsync Recovers the persisted certificate associated with the provided query

*NOTE: At least one of the following criteria must be provided: 1. Certificate ID 2. Thumbprint 3. Serial number AND Issuer DN (because Serial Number is CA-specific and so is not unique enough on its own)

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateRecoverCertificateAsyncRequest

func (*CertificateApiService) CertificateRecoverCertificateAsyncExecute ¶

Execute executes the request

@return ModelsRecoveryResponse

func (*CertificateApiService) CertificateRevoke ¶

CertificateRevoke Revokes the certificates associated with the provided identifiers and associates the provided data with the revocation

### Revocation Reason Codes for Microsoft CA ### | Value | Description | |-------------------|---------------------------| | -1 | Remove from hold | | 0 | Unspecified | | 1 | Key compromised | | 2 | CA compromised | | 3 | Affiliation changed | | 4 | Superceded | | 5 | Cessation of operation | | 6 | Certificate hold | | 7 | Remove from CRL | | 999 | Unknown |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateRevokeRequest

func (*CertificateApiService) CertificateRevokeAll ¶

CertificateRevokeAll Revokes the certificates associated with the provided query and Collection Id and associates the provided data with the revocation

### Revocation Reason Codes for Microsoft CA ### | Value | Description | |-------------------|--------------------------| | -1 | Remove from hold | | 0 | Unspecified | | 1 | Key compromised | | 2 | CA compromised | | 3 | Affiliation changed | | 4 | Superceded | | 5 | Cessation of operation | | 6 | Certificate hold | | 7 | Remove from CRL | | 999 | Unknown |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateRevokeAllRequest

func (*CertificateApiService) CertificateRevokeAllExecute ¶

Execute executes the request

@return ModelsRevocationRevocationResponse

func (*CertificateApiService) CertificateRevokeExecute ¶

Execute executes the request

@return ModelsRevocationRevocationResponse

func (*CertificateApiService) CertificateUpdateAllMetadata ¶

func (a *CertificateApiService) CertificateUpdateAllMetadata(ctx context.Context) ApiCertificateUpdateAllMetadataRequest

CertificateUpdateAllMetadata Updates the metadata for certificates associated with the certificate identifiers or query provided

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateUpdateAllMetadataRequest

func (*CertificateApiService) CertificateUpdateAllMetadataExecute ¶

func (a *CertificateApiService) CertificateUpdateAllMetadataExecute(r ApiCertificateUpdateAllMetadataRequest) (*http.Response, error)

Execute executes the request

func (*CertificateApiService) CertificateUpdateMetadata ¶

CertificateUpdateMetadata Updates the metadata for the certificate associated with the identifier provided

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateUpdateMetadataRequest

func (*CertificateApiService) CertificateUpdateMetadataExecute ¶

func (a *CertificateApiService) CertificateUpdateMetadataExecute(r ApiCertificateUpdateMetadataRequest) (*http.Response, error)

Execute executes the request

func (*CertificateApiService) CertificateValidateCertificate ¶

func (a *CertificateApiService) CertificateValidateCertificate(ctx context.Context, id int32) ApiCertificateValidateCertificateRequest

CertificateValidateCertificate Validates the certificate chain can be built.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Id of the certificate being checked
@return ApiCertificateValidateCertificateRequest

func (*CertificateApiService) CertificateValidateCertificateExecute ¶

Execute executes the request

@return ModelsCertificateValidationResponse

type CertificateAuthorityApiService ¶

type CertificateAuthorityApiService service

CertificateAuthorityApiService CertificateAuthorityApi service

func (*CertificateAuthorityApiService) CertificateAuthorityCreateCA ¶

CertificateAuthorityCreateCA Creates a new CertificateAuthority object

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateAuthorityCreateCARequest

func (*CertificateAuthorityApiService) CertificateAuthorityCreateCAExecute ¶

Execute executes the request

@return ModelsCertificateAuthoritiesCertificateAuthorityResponse

func (*CertificateAuthorityApiService) CertificateAuthorityDeleteCA ¶

CertificateAuthorityDeleteCA Deletes a CertificateAuthority from the system, specified by ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiCertificateAuthorityDeleteCARequest

func (*CertificateAuthorityApiService) CertificateAuthorityDeleteCAExecute ¶

func (a *CertificateAuthorityApiService) CertificateAuthorityDeleteCAExecute(r ApiCertificateAuthorityDeleteCARequest) (*http.Response, error)

Execute executes the request

func (*CertificateAuthorityApiService) CertificateAuthorityGetCa ¶

CertificateAuthorityGetCa Returns details for a single CA, specified by ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiCertificateAuthorityGetCaRequest

func (*CertificateAuthorityApiService) CertificateAuthorityGetCaExecute ¶

Execute executes the request

@return ModelsCertificateAuthoritiesCertificateAuthorityResponse

func (*CertificateAuthorityApiService) CertificateAuthorityGetCas ¶

CertificateAuthorityGetCas Returns all certificate authorities

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateAuthorityGetCasRequest

func (*CertificateAuthorityApiService) CertificateAuthorityGetCasExecute ¶

Execute executes the request

@return []ModelsCertificateAuthoritiesCertificateAuthorityResponse

func (*CertificateAuthorityApiService) CertificateAuthorityPublishCRL ¶

CertificateAuthorityPublishCRL Publishes a CRL according to the provided request

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateAuthorityPublishCRLRequest

func (*CertificateAuthorityApiService) CertificateAuthorityPublishCRLExecute ¶

func (a *CertificateAuthorityApiService) CertificateAuthorityPublishCRLExecute(r ApiCertificateAuthorityPublishCRLRequest) (*http.Response, error)

Execute executes the request

func (*CertificateAuthorityApiService) CertificateAuthorityTestCertificateAuthority ¶

CertificateAuthorityTestCertificateAuthority Validates the connection info for the CA provided by the model.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateAuthorityTestCertificateAuthorityRequest

func (*CertificateAuthorityApiService) CertificateAuthorityTestCertificateAuthorityExecute ¶

Execute executes the request

@return KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse

func (*CertificateAuthorityApiService) CertificateAuthorityUpdateCA ¶

CertificateAuthorityUpdateCA Updates a CertificateAuthority object

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateAuthorityUpdateCARequest

func (*CertificateAuthorityApiService) CertificateAuthorityUpdateCAExecute ¶

Execute executes the request

@return ModelsCertificateAuthoritiesCertificateAuthorityResponse

type CertificateCollectionApiService ¶

type CertificateCollectionApiService service

CertificateCollectionApiService CertificateCollectionApi service

func (*CertificateCollectionApiService) CertificateCollectionCopyFromExistingCollection ¶

func (a *CertificateCollectionApiService) CertificateCollectionCopyFromExistingCollection(ctx context.Context) ApiCertificateCollectionCopyFromExistingCollectionRequest

CertificateCollectionCopyFromExistingCollection Creates a new certificate collection from an existing collection. The permissions, query and description of the existing collection are copied when creating the new record, with the option to overwrite the query or description.

### Duplication Field Values ### The field used to determine if a certificate is a duplicate of another. | Value | Description | |--------------------|---------------------------| | 1 | Common name | | 2 | Distinguished name | | 3 | Principal name |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateCollectionCopyFromExistingCollectionRequest

func (*CertificateCollectionApiService) CertificateCollectionCopyFromExistingCollectionExecute ¶

Execute executes the request

@return KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse

func (*CertificateCollectionApiService) CertificateCollectionCreateCollection ¶

CertificateCollectionCreateCollection Creates a new certificate collection with the provided properties

### Duplication Field Values ### The field used to determine if a certificate is a duplicate of another. | Value | Description | |--------------------|---------------------------| | 1 | Common name | | 2 | Distinguished name | | 3 | Principal name |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateCollectionCreateCollectionRequest

func (*CertificateCollectionApiService) CertificateCollectionCreateCollectionExecute ¶

Execute executes the request

@return KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse

func (*CertificateCollectionApiService) CertificateCollectionGetCollection0 ¶

CertificateCollectionGetCollection0 Returns the certificate collection definition associated with the provided Keyfactor identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Identifier of the certificate collection
@return ApiCertificateCollectionGetCollection0Request

func (*CertificateCollectionApiService) CertificateCollectionGetCollection0Execute ¶

Execute executes the request

@return ModelsCertificateQuery

func (*CertificateCollectionApiService) CertificateCollectionGetCollection1 ¶

CertificateCollectionGetCollection1 Returns the certificate collection associated with the provided collection name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name Name of the Collection
@return ApiCertificateCollectionGetCollection1Request

func (*CertificateCollectionApiService) CertificateCollectionGetCollection1Execute ¶

Execute executes the request

@return ModelsCertificateQuery

func (*CertificateCollectionApiService) CertificateCollectionGetCollections ¶

CertificateCollectionGetCollections Returns all certificate collections

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateCollectionGetCollectionsRequest

func (*CertificateCollectionApiService) CertificateCollectionGetCollectionsExecute ¶

Execute executes the request

@return []ModelsCertificateQuery

func (*CertificateCollectionApiService) CertificateCollectionSetCollectionPermissions ¶

func (a *CertificateCollectionApiService) CertificateCollectionSetCollectionPermissions(ctx context.Context, id int32) ApiCertificateCollectionSetCollectionPermissionsRequest

CertificateCollectionSetCollectionPermissions Set the permissions for a collection

This endpoint should not be used as its use will potentially cause users to lose access to collections they previously had access to. This endpoint will be removed in version 11.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The collection to set permissions on
@return ApiCertificateCollectionSetCollectionPermissionsRequest

Deprecated

func (*CertificateCollectionApiService) CertificateCollectionSetCollectionPermissionsExecute ¶

func (a *CertificateCollectionApiService) CertificateCollectionSetCollectionPermissionsExecute(r ApiCertificateCollectionSetCollectionPermissionsRequest) (*http.Response, error)

Execute executes the request Deprecated

func (*CertificateCollectionApiService) CertificateCollectionUpdateCollection ¶

CertificateCollectionUpdateCollection Updates an existing certificate collection with the provided properties

### Duplication Field Values ### The field used to determine if a certificate is a duplicate of another. | Value | Description | |--------------------|---------------------------| | 1 | Common name | | 2 | Distinguished name | | 3 | Principal name |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateCollectionUpdateCollectionRequest

func (*CertificateCollectionApiService) CertificateCollectionUpdateCollectionExecute ¶

Execute executes the request

@return KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse

type CertificateStoreApiService ¶

type CertificateStoreApiService service

CertificateStoreApiService CertificateStoreApi service

func (*CertificateStoreApiService) CertificateStoreAddCertificate ¶

CertificateStoreAddCertificate Configures a management job to add a certificate to one or more stores with the provided schedule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreAddCertificateRequest

func (*CertificateStoreApiService) CertificateStoreAddCertificateExecute ¶

func (a *CertificateStoreApiService) CertificateStoreAddCertificateExecute(r ApiCertificateStoreAddCertificateRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*CertificateStoreApiService) CertificateStoreApprovePending ¶

CertificateStoreApprovePending Approves the provided certificate stores to make them available for management

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreApprovePendingRequest

func (*CertificateStoreApiService) CertificateStoreApprovePendingExecute ¶

func (a *CertificateStoreApiService) CertificateStoreApprovePendingExecute(r ApiCertificateStoreApprovePendingRequest) (*http.Response, error)

Execute executes the request

func (*CertificateStoreApiService) CertificateStoreConfigureDiscoveryJob ¶

func (a *CertificateStoreApiService) CertificateStoreConfigureDiscoveryJob(ctx context.Context) ApiCertificateStoreConfigureDiscoveryJobRequest

CertificateStoreConfigureDiscoveryJob Configures a discovery job to locate currently unmanaged certificate stores

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreConfigureDiscoveryJobRequest

func (*CertificateStoreApiService) CertificateStoreConfigureDiscoveryJobExecute ¶

func (a *CertificateStoreApiService) CertificateStoreConfigureDiscoveryJobExecute(r ApiCertificateStoreConfigureDiscoveryJobRequest) (*http.Response, error)

Execute executes the request

func (*CertificateStoreApiService) CertificateStoreCreateCertificateStoreServer ¶

func (a *CertificateStoreApiService) CertificateStoreCreateCertificateStoreServer(ctx context.Context) ApiCertificateStoreCreateCertificateStoreServerRequest

CertificateStoreCreateCertificateStoreServer Creates a new certificate store server with the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreCreateCertificateStoreServerRequest

Deprecated

func (*CertificateStoreApiService) CertificateStoreCreateCertificateStoreServerExecute ¶

Execute executes the request

@return ModelsCertificateStoreServerResponse

Deprecated

func (*CertificateStoreApiService) CertificateStoreDeleteCertificateStore ¶

func (a *CertificateStoreApiService) CertificateStoreDeleteCertificateStore(ctx context.Context, id string) ApiCertificateStoreDeleteCertificateStoreRequest

CertificateStoreDeleteCertificateStore Deletes a persisted certificate store by its Keyfactor identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor certificate store identifier (GUID)
@return ApiCertificateStoreDeleteCertificateStoreRequest

func (*CertificateStoreApiService) CertificateStoreDeleteCertificateStoreExecute ¶

func (a *CertificateStoreApiService) CertificateStoreDeleteCertificateStoreExecute(r ApiCertificateStoreDeleteCertificateStoreRequest) (*http.Response, error)

Execute executes the request

func (*CertificateStoreApiService) CertificateStoreDeleteCertificateStores ¶

func (a *CertificateStoreApiService) CertificateStoreDeleteCertificateStores(ctx context.Context) ApiCertificateStoreDeleteCertificateStoresRequest

CertificateStoreDeleteCertificateStores Deletes multiple persisted certificate store entities by their identifiers

This will ignore individual delete failures, and continue processing the array.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreDeleteCertificateStoresRequest

func (*CertificateStoreApiService) CertificateStoreDeleteCertificateStoresExecute ¶

func (a *CertificateStoreApiService) CertificateStoreDeleteCertificateStoresExecute(r ApiCertificateStoreDeleteCertificateStoresRequest) (*http.Response, error)

Execute executes the request

func (*CertificateStoreApiService) CertificateStoreGetCertificateStoreInventory ¶

func (a *CertificateStoreApiService) CertificateStoreGetCertificateStoreInventory(ctx context.Context, id string) ApiCertificateStoreGetCertificateStoreInventoryRequest

CertificateStoreGetCertificateStoreInventory Returns a single certificate store's inventory associated with the provided id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier (GUID) of the certificate store
@return ApiCertificateStoreGetCertificateStoreInventoryRequest

func (*CertificateStoreApiService) CertificateStoreGetCertificateStoreInventoryExecute ¶

Execute executes the request

@return []ModelsCertificateStoreInventory

func (*CertificateStoreApiService) CertificateStoreRemoveCertificate ¶

CertificateStoreRemoveCertificate Configures a management job to remove a certificate from one or more stores with the provided schedule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreRemoveCertificateRequest

func (*CertificateStoreApiService) CertificateStoreRemoveCertificateExecute ¶

func (a *CertificateStoreApiService) CertificateStoreRemoveCertificateExecute(r ApiCertificateStoreRemoveCertificateRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*CertificateStoreApiService) CertificateStoreSchedule ¶

CertificateStoreSchedule Creates an inventory schedule for the provided certificate stores

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreScheduleRequest

func (*CertificateStoreApiService) CertificateStoreScheduleExecute ¶

func (a *CertificateStoreApiService) CertificateStoreScheduleExecute(r ApiCertificateStoreScheduleRequest) (*http.Response, error)

Execute executes the request

func (*CertificateStoreApiService) CertificateStoreScheduleForReenrollment ¶

func (a *CertificateStoreApiService) CertificateStoreScheduleForReenrollment(ctx context.Context) ApiCertificateStoreScheduleForReenrollmentRequest

CertificateStoreScheduleForReenrollment Schedules a certificate store for reenrollment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreScheduleForReenrollmentRequest

func (*CertificateStoreApiService) CertificateStoreScheduleForReenrollmentExecute ¶

func (a *CertificateStoreApiService) CertificateStoreScheduleForReenrollmentExecute(r ApiCertificateStoreScheduleForReenrollmentRequest) (*http.Response, error)

Execute executes the request

func (*CertificateStoreApiService) CertificateStoreSetPassword ¶

CertificateStoreSetPassword Sets a password for the requested certificate store

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreSetPasswordRequest

func (*CertificateStoreApiService) CertificateStoreSetPasswordExecute ¶

func (a *CertificateStoreApiService) CertificateStoreSetPasswordExecute(r ApiCertificateStoreSetPasswordRequest) (*http.Response, error)

Execute executes the request

func (*CertificateStoreApiService) CertificateStoreUpdateCertificateStoreServer ¶

func (a *CertificateStoreApiService) CertificateStoreUpdateCertificateStoreServer(ctx context.Context) ApiCertificateStoreUpdateCertificateStoreServerRequest

CertificateStoreUpdateCertificateStoreServer Updates a given certificate store server with the properties of the provided instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreUpdateCertificateStoreServerRequest

Deprecated

func (*CertificateStoreApiService) CertificateStoreUpdateCertificateStoreServerExecute ¶

Execute executes the request

@return ModelsCertificateStoreServerResponse

Deprecated

type CertificateStoreContainerApiService ¶

type CertificateStoreContainerApiService service

CertificateStoreContainerApiService CertificateStoreContainerApi service

func (*CertificateStoreContainerApiService) CertificateStoreContainerDeleteCertificateStoreContainers ¶

func (a *CertificateStoreContainerApiService) CertificateStoreContainerDeleteCertificateStoreContainers(ctx context.Context, id int32) ApiCertificateStoreContainerDeleteCertificateStoreContainersRequest

CertificateStoreContainerDeleteCertificateStoreContainers Delete a certificate store container

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the certificate store container
@return ApiCertificateStoreContainerDeleteCertificateStoreContainersRequest

func (*CertificateStoreContainerApiService) CertificateStoreContainerDeleteCertificateStoreContainersExecute ¶

func (a *CertificateStoreContainerApiService) CertificateStoreContainerDeleteCertificateStoreContainersExecute(r ApiCertificateStoreContainerDeleteCertificateStoreContainersRequest) (*http.Response, error)

Execute executes the request

func (*CertificateStoreContainerApiService) CertificateStoreContainerGetAllCertificateStoreContainers ¶

func (a *CertificateStoreContainerApiService) CertificateStoreContainerGetAllCertificateStoreContainers(ctx context.Context) ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest

CertificateStoreContainerGetAllCertificateStoreContainers Returns all certificate store container according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreContainerGetAllCertificateStoreContainersRequest

func (*CertificateStoreContainerApiService) CertificateStoreContainerGetAllCertificateStoreContainersExecute ¶

Execute executes the request

@return []ModelsCertificateStoreContainerListResponse

type CertificateStoreTypeApiService ¶

type CertificateStoreTypeApiService service

CertificateStoreTypeApiService CertificateStoreTypeApi service

func (*CertificateStoreTypeApiService) CertificateStoreTypeCreateCertificateStoreType ¶

func (a *CertificateStoreTypeApiService) CertificateStoreTypeCreateCertificateStoreType(ctx context.Context) ApiCertificateStoreTypeCreateCertificateStoreTypeRequest

CertificateStoreTypeCreateCertificateStoreType Creates a new certificate store type with the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreTypeCreateCertificateStoreTypeRequest

func (*CertificateStoreTypeApiService) CertificateStoreTypeCreateCertificateStoreTypeExecute ¶

Execute executes the request

@return KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse

func (*CertificateStoreTypeApiService) CertificateStoreTypeDeleteCertificateStoreType ¶

func (a *CertificateStoreTypeApiService) CertificateStoreTypeDeleteCertificateStoreType(ctx context.Context, id int32) ApiCertificateStoreTypeDeleteCertificateStoreTypeRequest

CertificateStoreTypeDeleteCertificateStoreType Deletes a certificate store type according to the provided identifier

This will ignore individual delete failures, and continue processing certificate stores.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the certificate store type to be deleted
@return ApiCertificateStoreTypeDeleteCertificateStoreTypeRequest

func (*CertificateStoreTypeApiService) CertificateStoreTypeDeleteCertificateStoreTypeExecute ¶

func (a *CertificateStoreTypeApiService) CertificateStoreTypeDeleteCertificateStoreTypeExecute(r ApiCertificateStoreTypeDeleteCertificateStoreTypeRequest) (*http.Response, error)

Execute executes the request

func (*CertificateStoreTypeApiService) CertificateStoreTypeDeleteCertificateStoreTypes ¶

func (a *CertificateStoreTypeApiService) CertificateStoreTypeDeleteCertificateStoreTypes(ctx context.Context) ApiCertificateStoreTypeDeleteCertificateStoreTypesRequest

CertificateStoreTypeDeleteCertificateStoreTypes Deletes certificate store types according to the provided identifiers

This will ignore individual delete failures, and continue processing the array.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreTypeDeleteCertificateStoreTypesRequest

func (*CertificateStoreTypeApiService) CertificateStoreTypeDeleteCertificateStoreTypesExecute ¶

func (a *CertificateStoreTypeApiService) CertificateStoreTypeDeleteCertificateStoreTypesExecute(r ApiCertificateStoreTypeDeleteCertificateStoreTypesRequest) (*http.Response, error)

Execute executes the request

func (*CertificateStoreTypeApiService) CertificateStoreTypeGetCertificateStoreType0 ¶

func (a *CertificateStoreTypeApiService) CertificateStoreTypeGetCertificateStoreType0(ctx context.Context, id int32) ApiCertificateStoreTypeGetCertificateStoreType0Request

CertificateStoreTypeGetCertificateStoreType0 Returns a single certificate store type that matches id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the certificate store type
@return ApiCertificateStoreTypeGetCertificateStoreType0Request

func (*CertificateStoreTypeApiService) CertificateStoreTypeGetCertificateStoreType0Execute ¶

Execute executes the request

@return KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse

func (*CertificateStoreTypeApiService) CertificateStoreTypeGetCertificateStoreType1 ¶

func (a *CertificateStoreTypeApiService) CertificateStoreTypeGetCertificateStoreType1(ctx context.Context, name string) ApiCertificateStoreTypeGetCertificateStoreType1Request

CertificateStoreTypeGetCertificateStoreType1 Returns a single certificate store type that matches the provided short name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name Short name of the certificate store type to return
@return ApiCertificateStoreTypeGetCertificateStoreType1Request

func (*CertificateStoreTypeApiService) CertificateStoreTypeGetCertificateStoreType1Execute ¶

Execute executes the request

@return []KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse

func (*CertificateStoreTypeApiService) CertificateStoreTypeGetTypes ¶

CertificateStoreTypeGetTypes Returns all certificate store types according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreTypeGetTypesRequest

func (*CertificateStoreTypeApiService) CertificateStoreTypeGetTypesExecute ¶

Execute executes the request

@return []KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse

func (*CertificateStoreTypeApiService) CertificateStoreTypeUpdateCertificateStoreType ¶

func (a *CertificateStoreTypeApiService) CertificateStoreTypeUpdateCertificateStoreType(ctx context.Context) ApiCertificateStoreTypeUpdateCertificateStoreTypeRequest

CertificateStoreTypeUpdateCertificateStoreType Updates an existing certificate store type with the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCertificateStoreTypeUpdateCertificateStoreTypeRequest

func (*CertificateStoreTypeApiService) CertificateStoreTypeUpdateCertificateStoreTypeExecute ¶

Execute executes the request

@return KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse

type Configuration ¶

type Configuration struct {
	Host              string            `json:"host,omitempty"`
	BasicAuth         BasicAuth         `json:"basicAuth,omitempty"`
	DefaultHeader     map[string]string `json:"defaultHeader,omitempty"`
	UserAgent         string            `json:"userAgent,omitempty"`
	Debug             bool              `json:"debug,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(config map[string]string) *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 v1.0.2

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

type CoreModelsEnrollmentEnrollmentCA ¶

type CoreModelsEnrollmentEnrollmentCA struct {
	Name                 *string `json:"Name,omitempty"`
	RFCEnforcement       *bool   `json:"RFCEnforcement,omitempty"`
	SubscriberTerms      *bool   `json:"SubscriberTerms,omitempty"`
	AdditionalProperties map[string]interface{}
}

CoreModelsEnrollmentEnrollmentCA struct for CoreModelsEnrollmentEnrollmentCA

func NewCoreModelsEnrollmentEnrollmentCA ¶

func NewCoreModelsEnrollmentEnrollmentCA() *CoreModelsEnrollmentEnrollmentCA

NewCoreModelsEnrollmentEnrollmentCA instantiates a new CoreModelsEnrollmentEnrollmentCA 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 NewCoreModelsEnrollmentEnrollmentCAWithDefaults ¶

func NewCoreModelsEnrollmentEnrollmentCAWithDefaults() *CoreModelsEnrollmentEnrollmentCA

NewCoreModelsEnrollmentEnrollmentCAWithDefaults instantiates a new CoreModelsEnrollmentEnrollmentCA 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 (*CoreModelsEnrollmentEnrollmentCA) GetName ¶

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

func (*CoreModelsEnrollmentEnrollmentCA) GetNameOk ¶

func (o *CoreModelsEnrollmentEnrollmentCA) 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 (*CoreModelsEnrollmentEnrollmentCA) GetRFCEnforcement ¶

func (o *CoreModelsEnrollmentEnrollmentCA) GetRFCEnforcement() bool

GetRFCEnforcement returns the RFCEnforcement field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentCA) GetRFCEnforcementOk ¶

func (o *CoreModelsEnrollmentEnrollmentCA) GetRFCEnforcementOk() (*bool, bool)

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

func (*CoreModelsEnrollmentEnrollmentCA) GetSubscriberTerms ¶

func (o *CoreModelsEnrollmentEnrollmentCA) GetSubscriberTerms() bool

GetSubscriberTerms returns the SubscriberTerms field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentCA) GetSubscriberTermsOk ¶

func (o *CoreModelsEnrollmentEnrollmentCA) GetSubscriberTermsOk() (*bool, bool)

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

func (*CoreModelsEnrollmentEnrollmentCA) HasName ¶

HasName returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentCA) HasRFCEnforcement ¶

func (o *CoreModelsEnrollmentEnrollmentCA) HasRFCEnforcement() bool

HasRFCEnforcement returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentCA) HasSubscriberTerms ¶

func (o *CoreModelsEnrollmentEnrollmentCA) HasSubscriberTerms() bool

HasSubscriberTerms returns a boolean if a field has been set.

func (CoreModelsEnrollmentEnrollmentCA) MarshalJSON ¶

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

func (*CoreModelsEnrollmentEnrollmentCA) SetName ¶

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

func (*CoreModelsEnrollmentEnrollmentCA) SetRFCEnforcement ¶

func (o *CoreModelsEnrollmentEnrollmentCA) SetRFCEnforcement(v bool)

SetRFCEnforcement gets a reference to the given bool and assigns it to the RFCEnforcement field.

func (*CoreModelsEnrollmentEnrollmentCA) SetSubscriberTerms ¶

func (o *CoreModelsEnrollmentEnrollmentCA) SetSubscriberTerms(v bool)

SetSubscriberTerms gets a reference to the given bool and assigns it to the SubscriberTerms field.

func (CoreModelsEnrollmentEnrollmentCA) ToMap ¶

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

func (*CoreModelsEnrollmentEnrollmentCA) UnmarshalJSON ¶

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

type CoreModelsEnrollmentEnrollmentTemplate ¶

type CoreModelsEnrollmentEnrollmentTemplate struct {
	Id                   *int32                             `json:"Id,omitempty"`
	Name                 *string                            `json:"Name,omitempty"`
	DisplayName          *string                            `json:"DisplayName,omitempty"`
	Forest               *string                            `json:"Forest,omitempty"`
	KeySize              *string                            `json:"KeySize,omitempty"`
	KeyType              *string                            `json:"KeyType,omitempty"`
	RequiresApproval     *bool                              `json:"RequiresApproval,omitempty"`
	RFCEnforcement       *bool                              `json:"RFCEnforcement,omitempty"`
	CAs                  []CoreModelsEnrollmentEnrollmentCA `json:"CAs,omitempty"`
	EnrollmentFields     []ModelsTemplateEnrollmentField    `json:"EnrollmentFields,omitempty"`
	MetadataFields       []ModelsTemplateMetadataField      `json:"MetadataFields,omitempty"`
	Regexes              []ModelsTemplateRegex              `json:"Regexes,omitempty"`
	ExtendedKeyUsages    []ModelsExtendedKeyUsage           `json:"ExtendedKeyUsages,omitempty"`
	Curve                NullableString                     `json:"Curve,omitempty"`
	AdditionalProperties map[string]interface{}
}

CoreModelsEnrollmentEnrollmentTemplate struct for CoreModelsEnrollmentEnrollmentTemplate

func NewCoreModelsEnrollmentEnrollmentTemplate ¶

func NewCoreModelsEnrollmentEnrollmentTemplate() *CoreModelsEnrollmentEnrollmentTemplate

NewCoreModelsEnrollmentEnrollmentTemplate instantiates a new CoreModelsEnrollmentEnrollmentTemplate 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 NewCoreModelsEnrollmentEnrollmentTemplateWithDefaults ¶

func NewCoreModelsEnrollmentEnrollmentTemplateWithDefaults() *CoreModelsEnrollmentEnrollmentTemplate

NewCoreModelsEnrollmentEnrollmentTemplateWithDefaults instantiates a new CoreModelsEnrollmentEnrollmentTemplate 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 (*CoreModelsEnrollmentEnrollmentTemplate) GetCAs ¶

GetCAs returns the CAs field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplate) GetCAsOk ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplate) GetCurve ¶

GetCurve returns the Curve field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CoreModelsEnrollmentEnrollmentTemplate) GetCurveOk ¶

GetCurveOk returns a tuple with the Curve field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CoreModelsEnrollmentEnrollmentTemplate) GetDisplayName ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplate) GetDisplayNameOk ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) GetDisplayNameOk() (*string, bool)

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

func (*CoreModelsEnrollmentEnrollmentTemplate) GetEnrollmentFields ¶

GetEnrollmentFields returns the EnrollmentFields field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplate) GetEnrollmentFieldsOk ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplate) GetExtendedKeyUsages ¶

GetExtendedKeyUsages returns the ExtendedKeyUsages field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplate) GetExtendedKeyUsagesOk ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) GetExtendedKeyUsagesOk() ([]ModelsExtendedKeyUsage, bool)

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

func (*CoreModelsEnrollmentEnrollmentTemplate) GetForest ¶

GetForest returns the Forest field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplate) GetForestOk ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) GetForestOk() (*string, bool)

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

func (*CoreModelsEnrollmentEnrollmentTemplate) GetId ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplate) GetIdOk ¶

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 (*CoreModelsEnrollmentEnrollmentTemplate) GetKeySize ¶

GetKeySize returns the KeySize field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplate) GetKeySizeOk ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) GetKeySizeOk() (*string, bool)

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

func (*CoreModelsEnrollmentEnrollmentTemplate) GetKeyType ¶

GetKeyType returns the KeyType field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplate) GetKeyTypeOk ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) GetKeyTypeOk() (*string, bool)

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

func (*CoreModelsEnrollmentEnrollmentTemplate) GetMetadataFields ¶

GetMetadataFields returns the MetadataFields field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplate) GetMetadataFieldsOk ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplate) GetName ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplate) 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 (*CoreModelsEnrollmentEnrollmentTemplate) GetRFCEnforcement ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) GetRFCEnforcement() bool

GetRFCEnforcement returns the RFCEnforcement field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplate) GetRFCEnforcementOk ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) GetRFCEnforcementOk() (*bool, bool)

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

func (*CoreModelsEnrollmentEnrollmentTemplate) GetRegexes ¶

GetRegexes returns the Regexes field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplate) GetRegexesOk ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplate) GetRequiresApproval ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) GetRequiresApproval() bool

GetRequiresApproval returns the RequiresApproval field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplate) GetRequiresApprovalOk ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) GetRequiresApprovalOk() (*bool, bool)

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

func (*CoreModelsEnrollmentEnrollmentTemplate) HasCAs ¶

HasCAs returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasCurve ¶

HasCurve returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasDisplayName ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasEnrollmentFields ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) HasEnrollmentFields() bool

HasEnrollmentFields returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasExtendedKeyUsages ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) HasExtendedKeyUsages() bool

HasExtendedKeyUsages returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasForest ¶

HasForest returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasId ¶

HasId returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasKeySize ¶

HasKeySize returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasKeyType ¶

HasKeyType returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasMetadataFields ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) HasMetadataFields() bool

HasMetadataFields returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasName ¶

HasName returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasRFCEnforcement ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) HasRFCEnforcement() bool

HasRFCEnforcement returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasRegexes ¶

HasRegexes returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplate) HasRequiresApproval ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) HasRequiresApproval() bool

HasRequiresApproval returns a boolean if a field has been set.

func (CoreModelsEnrollmentEnrollmentTemplate) MarshalJSON ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplate) SetCAs ¶

SetCAs gets a reference to the given []CoreModelsEnrollmentEnrollmentCA and assigns it to the CAs field.

func (*CoreModelsEnrollmentEnrollmentTemplate) SetCurve ¶

SetCurve gets a reference to the given NullableString and assigns it to the Curve field.

func (*CoreModelsEnrollmentEnrollmentTemplate) SetCurveNil ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) SetCurveNil()

SetCurveNil sets the value for Curve to be an explicit nil

func (*CoreModelsEnrollmentEnrollmentTemplate) SetDisplayName ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*CoreModelsEnrollmentEnrollmentTemplate) SetEnrollmentFields ¶

SetEnrollmentFields gets a reference to the given []ModelsTemplateEnrollmentField and assigns it to the EnrollmentFields field.

func (*CoreModelsEnrollmentEnrollmentTemplate) SetExtendedKeyUsages ¶

SetExtendedKeyUsages gets a reference to the given []ModelsExtendedKeyUsage and assigns it to the ExtendedKeyUsages field.

func (*CoreModelsEnrollmentEnrollmentTemplate) SetForest ¶

SetForest gets a reference to the given string and assigns it to the Forest field.

func (*CoreModelsEnrollmentEnrollmentTemplate) SetId ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplate) SetKeySize ¶

SetKeySize gets a reference to the given string and assigns it to the KeySize field.

func (*CoreModelsEnrollmentEnrollmentTemplate) SetKeyType ¶

SetKeyType gets a reference to the given string and assigns it to the KeyType field.

func (*CoreModelsEnrollmentEnrollmentTemplate) SetMetadataFields ¶

SetMetadataFields gets a reference to the given []ModelsTemplateMetadataField and assigns it to the MetadataFields field.

func (*CoreModelsEnrollmentEnrollmentTemplate) SetName ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplate) SetRFCEnforcement ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) SetRFCEnforcement(v bool)

SetRFCEnforcement gets a reference to the given bool and assigns it to the RFCEnforcement field.

func (*CoreModelsEnrollmentEnrollmentTemplate) SetRegexes ¶

SetRegexes gets a reference to the given []ModelsTemplateRegex and assigns it to the Regexes field.

func (*CoreModelsEnrollmentEnrollmentTemplate) SetRequiresApproval ¶

func (o *CoreModelsEnrollmentEnrollmentTemplate) SetRequiresApproval(v bool)

SetRequiresApproval gets a reference to the given bool and assigns it to the RequiresApproval field.

func (CoreModelsEnrollmentEnrollmentTemplate) ToMap ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplate) UnmarshalJSON ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplate) UnsetCurve ¶

UnsetCurve ensures that no value is present for Curve, not even an explicit nil

type CoreModelsEnrollmentEnrollmentTemplateCAResponse ¶

type CoreModelsEnrollmentEnrollmentTemplateCAResponse struct {
	Templates            []CoreModelsEnrollmentEnrollmentTemplate `json:"Templates,omitempty"`
	StandaloneCAs        []CoreModelsEnrollmentEnrollmentCA       `json:"StandaloneCAs,omitempty"`
	AdditionalProperties map[string]interface{}
}

CoreModelsEnrollmentEnrollmentTemplateCAResponse struct for CoreModelsEnrollmentEnrollmentTemplateCAResponse

func NewCoreModelsEnrollmentEnrollmentTemplateCAResponse ¶

func NewCoreModelsEnrollmentEnrollmentTemplateCAResponse() *CoreModelsEnrollmentEnrollmentTemplateCAResponse

NewCoreModelsEnrollmentEnrollmentTemplateCAResponse instantiates a new CoreModelsEnrollmentEnrollmentTemplateCAResponse 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 NewCoreModelsEnrollmentEnrollmentTemplateCAResponseWithDefaults ¶

func NewCoreModelsEnrollmentEnrollmentTemplateCAResponseWithDefaults() *CoreModelsEnrollmentEnrollmentTemplateCAResponse

NewCoreModelsEnrollmentEnrollmentTemplateCAResponseWithDefaults instantiates a new CoreModelsEnrollmentEnrollmentTemplateCAResponse 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 (*CoreModelsEnrollmentEnrollmentTemplateCAResponse) GetStandaloneCAs ¶

GetStandaloneCAs returns the StandaloneCAs field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplateCAResponse) GetStandaloneCAsOk ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplateCAResponse) GetTemplates ¶

GetTemplates returns the Templates field value if set, zero value otherwise.

func (*CoreModelsEnrollmentEnrollmentTemplateCAResponse) GetTemplatesOk ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplateCAResponse) HasStandaloneCAs ¶

HasStandaloneCAs returns a boolean if a field has been set.

func (*CoreModelsEnrollmentEnrollmentTemplateCAResponse) HasTemplates ¶

HasTemplates returns a boolean if a field has been set.

func (CoreModelsEnrollmentEnrollmentTemplateCAResponse) MarshalJSON ¶

func (*CoreModelsEnrollmentEnrollmentTemplateCAResponse) SetStandaloneCAs ¶

SetStandaloneCAs gets a reference to the given []CoreModelsEnrollmentEnrollmentCA and assigns it to the StandaloneCAs field.

func (*CoreModelsEnrollmentEnrollmentTemplateCAResponse) SetTemplates ¶

SetTemplates gets a reference to the given []CoreModelsEnrollmentEnrollmentTemplate and assigns it to the Templates field.

func (CoreModelsEnrollmentEnrollmentTemplateCAResponse) ToMap ¶

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

func (*CoreModelsEnrollmentEnrollmentTemplateCAResponse) UnmarshalJSON ¶

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

type CustomJobTypeApiService ¶

type CustomJobTypeApiService service

CustomJobTypeApiService CustomJobTypeApi service

func (*CustomJobTypeApiService) CustomJobTypeCreateJobType ¶

CustomJobTypeCreateJobType Creates a custom job type with the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCustomJobTypeCreateJobTypeRequest

func (*CustomJobTypeApiService) CustomJobTypeCreateJobTypeExecute ¶

Execute executes the request

@return KeyfactorApiModelsOrchestratorJobsJobTypeResponse

func (*CustomJobTypeApiService) CustomJobTypeDeleteJobType ¶

CustomJobTypeDeleteJobType Deletes the custom job type associated with the provided id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier (GUID) of the job type
@return ApiCustomJobTypeDeleteJobTypeRequest

func (*CustomJobTypeApiService) CustomJobTypeDeleteJobTypeExecute ¶

func (a *CustomJobTypeApiService) CustomJobTypeDeleteJobTypeExecute(r ApiCustomJobTypeDeleteJobTypeRequest) (*http.Response, error)

Execute executes the request

func (*CustomJobTypeApiService) CustomJobTypeGetJobTypeById ¶

CustomJobTypeGetJobTypeById Returns a single custom job type associated with the provided id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor (GUID) identifier of the job type
@return ApiCustomJobTypeGetJobTypeByIdRequest

func (*CustomJobTypeApiService) CustomJobTypeGetJobTypeByIdExecute ¶

Execute executes the request

@return KeyfactorApiModelsOrchestratorJobsJobTypeResponse

func (*CustomJobTypeApiService) CustomJobTypeGetJobTypes ¶

CustomJobTypeGetJobTypes Returns all custom job types according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCustomJobTypeGetJobTypesRequest

func (*CustomJobTypeApiService) CustomJobTypeGetJobTypesExecute ¶

Execute executes the request

@return []KeyfactorApiModelsOrchestratorJobsJobTypeResponse

func (*CustomJobTypeApiService) CustomJobTypeUpdateJobType ¶

CustomJobTypeUpdateJobType Updates an existing custom job type with the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCustomJobTypeUpdateJobTypeRequest

func (*CustomJobTypeApiService) CustomJobTypeUpdateJobTypeExecute ¶

Execute executes the request

@return KeyfactorApiModelsOrchestratorJobsJobTypeResponse

type DeniedAlertApiService ¶

type DeniedAlertApiService service

DeniedAlertApiService DeniedAlertApi service

func (*DeniedAlertApiService) DeniedAlertAddDeniedAlert ¶

DeniedAlertAddDeniedAlert Add a denied alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeniedAlertAddDeniedAlertRequest

func (*DeniedAlertApiService) DeniedAlertAddDeniedAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse

func (*DeniedAlertApiService) DeniedAlertDeleteDeniedAlert ¶

func (a *DeniedAlertApiService) DeniedAlertDeleteDeniedAlert(ctx context.Context, id int32) ApiDeniedAlertDeleteDeniedAlertRequest

DeniedAlertDeleteDeniedAlert Delete a denied alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the denied alert
@return ApiDeniedAlertDeleteDeniedAlertRequest

func (*DeniedAlertApiService) DeniedAlertDeleteDeniedAlertExecute ¶

func (a *DeniedAlertApiService) DeniedAlertDeleteDeniedAlertExecute(r ApiDeniedAlertDeleteDeniedAlertRequest) (*http.Response, error)

Execute executes the request

func (*DeniedAlertApiService) DeniedAlertEditDeniedAlert ¶

DeniedAlertEditDeniedAlert Edit a denied alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeniedAlertEditDeniedAlertRequest

func (*DeniedAlertApiService) DeniedAlertEditDeniedAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse

func (*DeniedAlertApiService) DeniedAlertGetDeniedAlert ¶

func (a *DeniedAlertApiService) DeniedAlertGetDeniedAlert(ctx context.Context, id int32) ApiDeniedAlertGetDeniedAlertRequest

DeniedAlertGetDeniedAlert Get a denied alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the denied alert to get
@return ApiDeniedAlertGetDeniedAlertRequest

func (*DeniedAlertApiService) DeniedAlertGetDeniedAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse

func (*DeniedAlertApiService) DeniedAlertGetDeniedAlerts ¶

DeniedAlertGetDeniedAlerts Gets all denied alerts according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeniedAlertGetDeniedAlertsRequest

func (*DeniedAlertApiService) DeniedAlertGetDeniedAlertsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse

type EnrollmentApiService ¶

type EnrollmentApiService service

EnrollmentApiService EnrollmentApi service

func (*EnrollmentApiService) EnrollmentAddToExistingCertStores ¶

func (a *EnrollmentApiService) EnrollmentAddToExistingCertStores(ctx context.Context) ApiEnrollmentAddToExistingCertStoresRequest

EnrollmentAddToExistingCertStores Creates management jobs to install a newly enrolled pfx into the same certificate stores as the previous certificate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiEnrollmentAddToExistingCertStoresRequest

func (*EnrollmentApiService) EnrollmentAddToExistingCertStoresExecute ¶

Execute executes the request

@return KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse

func (*EnrollmentApiService) EnrollmentAvailableRenewalId ¶

func (a *EnrollmentApiService) EnrollmentAvailableRenewalId(ctx context.Context, id int32) ApiEnrollmentAvailableRenewalIdRequest

EnrollmentAvailableRenewalId Returns the type of renewal available for a given certificate.

### Available Renewal Types ### | Value | Description | |--------------------|---------------------------| | 0 | None | | 1 | Seeded PFX | | 2 | One-click |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Keyfactor certificate Id
@return ApiEnrollmentAvailableRenewalIdRequest

func (*EnrollmentApiService) EnrollmentAvailableRenewalIdExecute ¶

Execute executes the request

@return ModelsEnrollmentAvailableRenewal

func (*EnrollmentApiService) EnrollmentAvailableRenewalThumbprint ¶

func (a *EnrollmentApiService) EnrollmentAvailableRenewalThumbprint(ctx context.Context, thumbprint string) ApiEnrollmentAvailableRenewalThumbprintRequest

EnrollmentAvailableRenewalThumbprint Returns the type of renewal available for a given certificate.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param thumbprint The certificate thumbprint
@return ApiEnrollmentAvailableRenewalThumbprintRequest

func (*EnrollmentApiService) EnrollmentAvailableRenewalThumbprintExecute ¶

Execute executes the request

@return ModelsEnrollmentAvailableRenewal

func (*EnrollmentApiService) EnrollmentGetMyCSRContext ¶

func (a *EnrollmentApiService) EnrollmentGetMyCSRContext(ctx context.Context) ApiEnrollmentGetMyCSRContextRequest

EnrollmentGetMyCSRContext Returns the list of available CSR enrollment templates and their associated CA mappings that the calling user has permissions on

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiEnrollmentGetMyCSRContextRequest

func (*EnrollmentApiService) EnrollmentGetMyCSRContextExecute ¶

Execute executes the request

@return CoreModelsEnrollmentEnrollmentTemplateCAResponse

func (*EnrollmentApiService) EnrollmentGetMyPFXContext ¶

func (a *EnrollmentApiService) EnrollmentGetMyPFXContext(ctx context.Context) ApiEnrollmentGetMyPFXContextRequest

EnrollmentGetMyPFXContext Returns the list of available PFX enrollment templates and their associated CA mappings that the calling user has permissions on

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiEnrollmentGetMyPFXContextRequest

func (*EnrollmentApiService) EnrollmentGetMyPFXContextExecute ¶

Execute executes the request

@return CoreModelsEnrollmentEnrollmentTemplateCAResponse

func (*EnrollmentApiService) EnrollmentGetTemplateEnrollmentSettings ¶

func (a *EnrollmentApiService) EnrollmentGetTemplateEnrollmentSettings(ctx context.Context, id int32) ApiEnrollmentGetTemplateEnrollmentSettingsRequest

EnrollmentGetTemplateEnrollmentSettings Gets the template settings to use during enrollment. The response will be the resolved values for the settings. If there is a template specific setting, the template specific setting will be used in the response. If there is not a template specific setting, the global setting will be used in the response.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiEnrollmentGetTemplateEnrollmentSettingsRequest

func (*EnrollmentApiService) EnrollmentGetTemplateEnrollmentSettingsExecute ¶

Execute executes the request

@return KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse

func (*EnrollmentApiService) EnrollmentInstallPFXToCertStore ¶

func (a *EnrollmentApiService) EnrollmentInstallPFXToCertStore(ctx context.Context) ApiEnrollmentInstallPFXToCertStoreRequest

EnrollmentInstallPFXToCertStore Creates management jobs to install a newly enrolled pfx in to one or more certificate stores

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiEnrollmentInstallPFXToCertStoreRequest

func (*EnrollmentApiService) EnrollmentInstallPFXToCertStoreExecute ¶

Execute executes the request

@return KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse

func (*EnrollmentApiService) EnrollmentPostCSREnroll ¶

EnrollmentPostCSREnroll Performs a CSR Enrollment based upon the provided request

### Subject Alternative Name Flags ### | Value | Description | |--------------------|---------------------------| | other | OtherName | | rfc822 | RFC822Name | | dns | DNSName | | x400 | X400Address | | directory | DirectoryName | | ediparty | EdipartyName | | uri | UniformResourceIdentifier | | ip | IPAddress | | ip4 | IPv4Address | | ip6 | IPv6Address | | registeredid | RegisteredId | | ms_ntprincipalname | MS_NTPrincipalName | | ms_ntdsreplication | MS_NTDSReplication |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiEnrollmentPostCSREnrollRequest

func (*EnrollmentApiService) EnrollmentPostCSREnrollExecute ¶

Execute executes the request

@return ModelsEnrollmentCSREnrollmentResponse

func (*EnrollmentApiService) EnrollmentPostPFXEnroll ¶

EnrollmentPostPFXEnroll Performs a PFX Enrollment based upon the provided request

### IMPORTANT: - The <b>'RenewalCertificateId'</b> field in the request should be set to <b>null</b> if the certificate is not being renewed as part of the enrollment. A value of <b>0</b> will produce an error.

### Subject Alternative Name Flags ### | Value | Description | |--------------------|---------------------------| | other | OtherName | | rfc822 | RFC822Name | | dns | DNSName | | x400 | X400Address | | directory | DirectoryName | | ediparty | EdipartyName | | uri | UniformResourceIdentifier | | ip | IPAddress | | ip4 | IPv4Address | | ip6 | IPv6Address | | registeredid | RegisteredId | | ms_ntprincipalname | MS_NTPrincipalName | | ms_ntdsreplication | MS_NTDSReplication |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiEnrollmentPostPFXEnrollRequest

func (*EnrollmentApiService) EnrollmentPostPFXEnrollExecute ¶

Execute executes the request

@return ModelsEnrollmentPFXEnrollmentResponse

func (*EnrollmentApiService) EnrollmentPostParsedCSR ¶

EnrollmentPostParsedCSR Parses the provided CSR and returns the properties

This functionality is equivalent to the result of pasting a CSR into the field within the Management Portal CSR Enrollment page.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiEnrollmentPostParsedCSRRequest

func (*EnrollmentApiService) EnrollmentPostParsedCSRExecute ¶

func (a *EnrollmentApiService) EnrollmentPostParsedCSRExecute(r ApiEnrollmentPostParsedCSRRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

func (*EnrollmentApiService) EnrollmentRenew ¶

EnrollmentRenew Performs a renewal based upon the passed in request

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiEnrollmentRenewRequest

func (*EnrollmentApiService) EnrollmentRenewExecute ¶

Execute executes the request

@return ModelsEnrollmentRenewalResponse

type ExpirationAlertApiService ¶

type ExpirationAlertApiService service

ExpirationAlertApiService ExpirationAlertApi service

func (*ExpirationAlertApiService) ExpirationAlertAddExpirationAlert ¶

ExpirationAlertAddExpirationAlert Add an expiration alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExpirationAlertAddExpirationAlertRequest

func (*ExpirationAlertApiService) ExpirationAlertAddExpirationAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse

func (*ExpirationAlertApiService) ExpirationAlertDeleteExpirationAlert ¶

func (a *ExpirationAlertApiService) ExpirationAlertDeleteExpirationAlert(ctx context.Context, id int32) ApiExpirationAlertDeleteExpirationAlertRequest

ExpirationAlertDeleteExpirationAlert Delete an expiration alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the expiration alert
@return ApiExpirationAlertDeleteExpirationAlertRequest

func (*ExpirationAlertApiService) ExpirationAlertDeleteExpirationAlertExecute ¶

func (a *ExpirationAlertApiService) ExpirationAlertDeleteExpirationAlertExecute(r ApiExpirationAlertDeleteExpirationAlertRequest) (*http.Response, error)

Execute executes the request

func (*ExpirationAlertApiService) ExpirationAlertEditExpirationAlert ¶

ExpirationAlertEditExpirationAlert Edit an expiration alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExpirationAlertEditExpirationAlertRequest

func (*ExpirationAlertApiService) ExpirationAlertEditExpirationAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse

func (*ExpirationAlertApiService) ExpirationAlertEditSchedule ¶

ExpirationAlertEditSchedule Edit schedule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExpirationAlertEditScheduleRequest

func (*ExpirationAlertApiService) ExpirationAlertEditScheduleExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse

func (*ExpirationAlertApiService) ExpirationAlertGetExpirationAlert ¶

func (a *ExpirationAlertApiService) ExpirationAlertGetExpirationAlert(ctx context.Context, id int32) ApiExpirationAlertGetExpirationAlertRequest

ExpirationAlertGetExpirationAlert Get an expiration alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the expiration alert to get
@return ApiExpirationAlertGetExpirationAlertRequest

func (*ExpirationAlertApiService) ExpirationAlertGetExpirationAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse

func (*ExpirationAlertApiService) ExpirationAlertGetExpirationAlerts ¶

ExpirationAlertGetExpirationAlerts Gets all expiration alerts according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExpirationAlertGetExpirationAlertsRequest

func (*ExpirationAlertApiService) ExpirationAlertGetExpirationAlertsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse

func (*ExpirationAlertApiService) ExpirationAlertGetSchedule ¶

ExpirationAlertGetSchedule Get the schedule for expiration alerts

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExpirationAlertGetScheduleRequest

func (*ExpirationAlertApiService) ExpirationAlertGetScheduleExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse

func (*ExpirationAlertApiService) ExpirationAlertTestAllExpirationAlert ¶

func (a *ExpirationAlertApiService) ExpirationAlertTestAllExpirationAlert(ctx context.Context) ApiExpirationAlertTestAllExpirationAlertRequest

ExpirationAlertTestAllExpirationAlert Test All Expiration Alerts

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExpirationAlertTestAllExpirationAlertRequest

func (*ExpirationAlertApiService) ExpirationAlertTestAllExpirationAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse

func (*ExpirationAlertApiService) ExpirationAlertTestExpirationAlert ¶

ExpirationAlertTestExpirationAlert Test an Expiration Alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExpirationAlertTestExpirationAlertRequest

func (*ExpirationAlertApiService) ExpirationAlertTestExpirationAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse

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 IssuedAlertApiService ¶

type IssuedAlertApiService service

IssuedAlertApiService IssuedAlertApi service

func (*IssuedAlertApiService) IssuedAlertAddIssuedAlert ¶

IssuedAlertAddIssuedAlert Add a issued alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiIssuedAlertAddIssuedAlertRequest

func (*IssuedAlertApiService) IssuedAlertAddIssuedAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse

func (*IssuedAlertApiService) IssuedAlertDeleteIssuedAlert ¶

func (a *IssuedAlertApiService) IssuedAlertDeleteIssuedAlert(ctx context.Context, id int32) ApiIssuedAlertDeleteIssuedAlertRequest

IssuedAlertDeleteIssuedAlert Delete a issued alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the issued alert
@return ApiIssuedAlertDeleteIssuedAlertRequest

func (*IssuedAlertApiService) IssuedAlertDeleteIssuedAlertExecute ¶

func (a *IssuedAlertApiService) IssuedAlertDeleteIssuedAlertExecute(r ApiIssuedAlertDeleteIssuedAlertRequest) (*http.Response, error)

Execute executes the request

func (*IssuedAlertApiService) IssuedAlertEditIssuedAlert ¶

IssuedAlertEditIssuedAlert Edit a issued alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiIssuedAlertEditIssuedAlertRequest

func (*IssuedAlertApiService) IssuedAlertEditIssuedAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse

func (*IssuedAlertApiService) IssuedAlertEditSchedule ¶

IssuedAlertEditSchedule Edit schedule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiIssuedAlertEditScheduleRequest

func (*IssuedAlertApiService) IssuedAlertEditScheduleExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse

func (*IssuedAlertApiService) IssuedAlertGetIssuedAlert ¶

func (a *IssuedAlertApiService) IssuedAlertGetIssuedAlert(ctx context.Context, id int32) ApiIssuedAlertGetIssuedAlertRequest

IssuedAlertGetIssuedAlert Get a issued alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the issued alert to get
@return ApiIssuedAlertGetIssuedAlertRequest

func (*IssuedAlertApiService) IssuedAlertGetIssuedAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse

func (*IssuedAlertApiService) IssuedAlertGetIssuedAlerts ¶

IssuedAlertGetIssuedAlerts Gets all issued alerts according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiIssuedAlertGetIssuedAlertsRequest

func (*IssuedAlertApiService) IssuedAlertGetIssuedAlertsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse

func (*IssuedAlertApiService) IssuedAlertGetSchedule ¶

IssuedAlertGetSchedule Get the schedule for issued alerts

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiIssuedAlertGetScheduleRequest

func (*IssuedAlertApiService) IssuedAlertGetScheduleExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse

type KeyApiService ¶

type KeyApiService service

KeyApiService KeyApi service

func (*KeyApiService) KeyDeleteUnmanagedKey ¶

func (a *KeyApiService) KeyDeleteUnmanagedKey(ctx context.Context, id int32) ApiKeyDeleteUnmanagedKeyRequest

KeyDeleteUnmanagedKey Deletes Unmanaged Key associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifer of the Key to be deleted
@return ApiKeyDeleteUnmanagedKeyRequest

func (*KeyApiService) KeyDeleteUnmanagedKeyExecute ¶

func (a *KeyApiService) KeyDeleteUnmanagedKeyExecute(r ApiKeyDeleteUnmanagedKeyRequest) (*http.Response, error)

Execute executes the request

func (*KeyApiService) KeyDeleteUnmanagedKeys ¶

func (a *KeyApiService) KeyDeleteUnmanagedKeys(ctx context.Context) ApiKeyDeleteUnmanagedKeysRequest

KeyDeleteUnmanagedKeys Deletes Unmanaged Keys associated with the provided identifiers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyDeleteUnmanagedKeysRequest

func (*KeyApiService) KeyDeleteUnmanagedKeysExecute ¶

func (a *KeyApiService) KeyDeleteUnmanagedKeysExecute(r ApiKeyDeleteUnmanagedKeysRequest) (*http.Response, error)

Execute executes the request

func (*KeyApiService) KeyGenerateKey ¶

func (a *KeyApiService) KeyGenerateKey(ctx context.Context) ApiKeyGenerateKeyRequest

KeyGenerateKey Generates an SSH Key Pair for the requesting user.

### SSH Key Algorithms ### | Value | Description | |--------------------|---------------------------| | 0 | Unknown | | 1 | ECDSA | | 2 | Ed25519 | | 3 | RSA |

### Private Key Formats ### | Value | Description | |--------------------|---------------------------| | 0 | Unknown | | 1 | OpenSSH | | 2 | PKCS8 |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyGenerateKeyRequest

func (*KeyApiService) KeyGenerateKeyExecute ¶

Execute executes the request

@return ModelsSSHKeysKeyResponse

func (*KeyApiService) KeyGetMyKey ¶

func (a *KeyApiService) KeyGetMyKey(ctx context.Context) ApiKeyGetMyKeyRequest

KeyGetMyKey Returns the current key of the requesting user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyGetMyKeyRequest

func (*KeyApiService) KeyGetMyKeyExecute ¶

Execute executes the request

@return ModelsSSHKeysKeyResponse

func (*KeyApiService) KeyGetUnmanagedKey ¶

func (a *KeyApiService) KeyGetUnmanagedKey(ctx context.Context, id int32) ApiKeyGetUnmanagedKeyRequest

KeyGetUnmanagedKey Returns an unmanaged SSH key with provided id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the key to get
@return ApiKeyGetUnmanagedKeyRequest

func (*KeyApiService) KeyGetUnmanagedKeyExecute ¶

Execute executes the request

@return ModelsSSHKeysUnmanagedKeyResponse

func (*KeyApiService) KeyGetUnmanagedKeys ¶

func (a *KeyApiService) KeyGetUnmanagedKeys(ctx context.Context) ApiKeyGetUnmanagedKeysRequest

KeyGetUnmanagedKeys Returns Unmanaged SSH keys

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyGetUnmanagedKeysRequest

func (*KeyApiService) KeyGetUnmanagedKeysExecute ¶

Execute executes the request

@return []ModelsSSHKeysUnmanagedKeyResponse

func (*KeyApiService) KeyUpdate ¶

KeyUpdate Updates the requesting user's SSH key

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyUpdateRequest

func (*KeyApiService) KeyUpdateExecute ¶

Execute executes the request

@return ModelsSSHKeysKeyResponse

type KeyRotationAlertApiService ¶

type KeyRotationAlertApiService service

KeyRotationAlertApiService KeyRotationAlertApi service

func (*KeyRotationAlertApiService) KeyRotationAlertAddKeyRotationAlert ¶

KeyRotationAlertAddKeyRotationAlert Add a key rotation alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyRotationAlertAddKeyRotationAlertRequest

func (*KeyRotationAlertApiService) KeyRotationAlertAddKeyRotationAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse

func (*KeyRotationAlertApiService) KeyRotationAlertDeleteKeyRotationAlert ¶

func (a *KeyRotationAlertApiService) KeyRotationAlertDeleteKeyRotationAlert(ctx context.Context, id int32) ApiKeyRotationAlertDeleteKeyRotationAlertRequest

KeyRotationAlertDeleteKeyRotationAlert Delete a key rotation alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the key rotation alert
@return ApiKeyRotationAlertDeleteKeyRotationAlertRequest

func (*KeyRotationAlertApiService) KeyRotationAlertDeleteKeyRotationAlertExecute ¶

func (a *KeyRotationAlertApiService) KeyRotationAlertDeleteKeyRotationAlertExecute(r ApiKeyRotationAlertDeleteKeyRotationAlertRequest) (*http.Response, error)

Execute executes the request

func (*KeyRotationAlertApiService) KeyRotationAlertEditKeyRotationAlert ¶

KeyRotationAlertEditKeyRotationAlert Edit a key rotation alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyRotationAlertEditKeyRotationAlertRequest

func (*KeyRotationAlertApiService) KeyRotationAlertEditKeyRotationAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse

func (*KeyRotationAlertApiService) KeyRotationAlertEditSchedule ¶

KeyRotationAlertEditSchedule Edit schedule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyRotationAlertEditScheduleRequest

func (*KeyRotationAlertApiService) KeyRotationAlertEditScheduleExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse

func (*KeyRotationAlertApiService) KeyRotationAlertGetKeyRotationAlert ¶

func (a *KeyRotationAlertApiService) KeyRotationAlertGetKeyRotationAlert(ctx context.Context, id int32) ApiKeyRotationAlertGetKeyRotationAlertRequest

KeyRotationAlertGetKeyRotationAlert Get a key rotation alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the key rotation alert to get
@return ApiKeyRotationAlertGetKeyRotationAlertRequest

func (*KeyRotationAlertApiService) KeyRotationAlertGetKeyRotationAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse

func (*KeyRotationAlertApiService) KeyRotationAlertGetKeyRotationAlerts ¶

KeyRotationAlertGetKeyRotationAlerts Gets all key rotation alerts according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyRotationAlertGetKeyRotationAlertsRequest

func (*KeyRotationAlertApiService) KeyRotationAlertGetKeyRotationAlertsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse

func (*KeyRotationAlertApiService) KeyRotationAlertGetSchedule ¶

KeyRotationAlertGetSchedule Get the schedule for key rotation alerts

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyRotationAlertGetScheduleRequest

func (*KeyRotationAlertApiService) KeyRotationAlertGetScheduleExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse

func (*KeyRotationAlertApiService) KeyRotationAlertTestAllKeyRotationAlert ¶

func (a *KeyRotationAlertApiService) KeyRotationAlertTestAllKeyRotationAlert(ctx context.Context) ApiKeyRotationAlertTestAllKeyRotationAlertRequest

KeyRotationAlertTestAllKeyRotationAlert Test All Alerts

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyRotationAlertTestAllKeyRotationAlertRequest

func (*KeyRotationAlertApiService) KeyRotationAlertTestAllKeyRotationAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse

func (*KeyRotationAlertApiService) KeyRotationAlertTestKeyRotationAlert ¶

KeyRotationAlertTestKeyRotationAlert Test An Alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiKeyRotationAlertTestKeyRotationAlertRequest

func (*KeyRotationAlertApiService) KeyRotationAlertTestKeyRotationAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse

type KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse ¶

type KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse struct {
	SuccessfulStores     []string `json:"SuccessfulStores,omitempty"`
	FailedStores         []string `json:"FailedStores,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse struct for KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse

func NewKeyfactorAPIModelsEnrollmentEnrollmentManagementResponse ¶

func NewKeyfactorAPIModelsEnrollmentEnrollmentManagementResponse() *KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse

NewKeyfactorAPIModelsEnrollmentEnrollmentManagementResponse instantiates a new KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse 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 NewKeyfactorAPIModelsEnrollmentEnrollmentManagementResponseWithDefaults ¶

func NewKeyfactorAPIModelsEnrollmentEnrollmentManagementResponseWithDefaults() *KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse

NewKeyfactorAPIModelsEnrollmentEnrollmentManagementResponseWithDefaults instantiates a new KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse 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 (*KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) GetFailedStores ¶

GetFailedStores returns the FailedStores field value if set, zero value otherwise.

func (*KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) GetFailedStoresOk ¶

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

func (*KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) GetSuccessfulStores ¶

GetSuccessfulStores returns the SuccessfulStores field value if set, zero value otherwise.

func (*KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) GetSuccessfulStoresOk ¶

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

func (*KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) HasFailedStores ¶

HasFailedStores returns a boolean if a field has been set.

func (*KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) HasSuccessfulStores ¶

HasSuccessfulStores returns a boolean if a field has been set.

func (KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) MarshalJSON ¶

func (*KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) SetFailedStores ¶

SetFailedStores gets a reference to the given []string and assigns it to the FailedStores field.

func (*KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) SetSuccessfulStores ¶

SetSuccessfulStores gets a reference to the given []string and assigns it to the SuccessfulStores field.

func (KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) ToMap ¶

func (*KeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) UnmarshalJSON ¶

type KeyfactorAPIModelsSMTPSMTPRequest ¶

type KeyfactorAPIModelsSMTPSMTPRequest struct {
	Host                    *string `json:"Host,omitempty"`
	Id                      *int32  `json:"Id,omitempty"`
	Port                    *int32  `json:"Port,omitempty"`
	RelayAuthenticationType *int32  `json:"RelayAuthenticationType,omitempty"`
	RelayPassword           *string `json:"RelayPassword,omitempty"`
	RelayUsername           *string `json:"RelayUsername,omitempty"`
	SenderAccount           *string `json:"SenderAccount,omitempty"`
	SenderName              *string `json:"SenderName,omitempty"`
	UseSSL                  *bool   `json:"UseSSL,omitempty"`
	AdditionalProperties    map[string]interface{}
}

KeyfactorAPIModelsSMTPSMTPRequest struct for KeyfactorAPIModelsSMTPSMTPRequest

func NewKeyfactorAPIModelsSMTPSMTPRequest ¶

func NewKeyfactorAPIModelsSMTPSMTPRequest() *KeyfactorAPIModelsSMTPSMTPRequest

NewKeyfactorAPIModelsSMTPSMTPRequest instantiates a new KeyfactorAPIModelsSMTPSMTPRequest 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 NewKeyfactorAPIModelsSMTPSMTPRequestWithDefaults ¶

func NewKeyfactorAPIModelsSMTPSMTPRequestWithDefaults() *KeyfactorAPIModelsSMTPSMTPRequest

NewKeyfactorAPIModelsSMTPSMTPRequestWithDefaults instantiates a new KeyfactorAPIModelsSMTPSMTPRequest 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 (*KeyfactorAPIModelsSMTPSMTPRequest) GetHost ¶

GetHost returns the Host field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetHostOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetHostOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetId ¶

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetIdOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) 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 (*KeyfactorAPIModelsSMTPSMTPRequest) GetPort ¶

GetPort returns the Port field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetPortOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetPortOk() (*int32, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetRelayAuthenticationType() int32

GetRelayAuthenticationType returns the RelayAuthenticationType field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetRelayAuthenticationTypeOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetRelayAuthenticationTypeOk() (*int32, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetRelayPassword ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetRelayPassword() string

GetRelayPassword returns the RelayPassword field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetRelayPasswordOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetRelayPasswordOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetRelayUsername() string

GetRelayUsername returns the RelayUsername field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetRelayUsernameOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetRelayUsernameOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetSenderAccount() string

GetSenderAccount returns the SenderAccount field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetSenderAccountOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetSenderAccountOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetSenderName ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetSenderName() string

GetSenderName returns the SenderName field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetSenderNameOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetSenderNameOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetUseSSL ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetUseSSL() bool

GetUseSSL returns the UseSSL field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPRequest) GetUseSSLOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) GetUseSSLOk() (*bool, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) HasHost ¶

HasHost returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPRequest) HasPort ¶

HasPort returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPRequest) HasRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) HasRelayAuthenticationType() bool

HasRelayAuthenticationType returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPRequest) HasRelayPassword ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) HasRelayPassword() bool

HasRelayPassword returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPRequest) HasRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) HasRelayUsername() bool

HasRelayUsername returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPRequest) HasSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) HasSenderAccount() bool

HasSenderAccount returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPRequest) HasSenderName ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) HasSenderName() bool

HasSenderName returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPRequest) HasUseSSL ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) HasUseSSL() bool

HasUseSSL returns a boolean if a field has been set.

func (KeyfactorAPIModelsSMTPSMTPRequest) MarshalJSON ¶

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) SetHost ¶

SetHost gets a reference to the given string and assigns it to the Host field.

func (*KeyfactorAPIModelsSMTPSMTPRequest) SetId ¶

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) SetPort ¶

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*KeyfactorAPIModelsSMTPSMTPRequest) SetRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) SetRelayAuthenticationType(v int32)

SetRelayAuthenticationType gets a reference to the given int32 and assigns it to the RelayAuthenticationType field.

func (*KeyfactorAPIModelsSMTPSMTPRequest) SetRelayPassword ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) SetRelayPassword(v string)

SetRelayPassword gets a reference to the given string and assigns it to the RelayPassword field.

func (*KeyfactorAPIModelsSMTPSMTPRequest) SetRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) SetRelayUsername(v string)

SetRelayUsername gets a reference to the given string and assigns it to the RelayUsername field.

func (*KeyfactorAPIModelsSMTPSMTPRequest) SetSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) SetSenderAccount(v string)

SetSenderAccount gets a reference to the given string and assigns it to the SenderAccount field.

func (*KeyfactorAPIModelsSMTPSMTPRequest) SetSenderName ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) SetSenderName(v string)

SetSenderName gets a reference to the given string and assigns it to the SenderName field.

func (*KeyfactorAPIModelsSMTPSMTPRequest) SetUseSSL ¶

func (o *KeyfactorAPIModelsSMTPSMTPRequest) SetUseSSL(v bool)

SetUseSSL gets a reference to the given bool and assigns it to the UseSSL field.

func (KeyfactorAPIModelsSMTPSMTPRequest) ToMap ¶

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

func (*KeyfactorAPIModelsSMTPSMTPRequest) UnmarshalJSON ¶

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

type KeyfactorAPIModelsSMTPSMTPResponse ¶

type KeyfactorAPIModelsSMTPSMTPResponse struct {
	Host                    *string `json:"Host,omitempty"`
	Id                      *int32  `json:"Id,omitempty"`
	Port                    *int32  `json:"Port,omitempty"`
	RelayAuthenticationType *int32  `json:"RelayAuthenticationType,omitempty"`
	RelayUsername           *string `json:"RelayUsername,omitempty"`
	SenderAccount           *string `json:"SenderAccount,omitempty"`
	SenderName              *string `json:"SenderName,omitempty"`
	UseSSL                  *bool   `json:"UseSSL,omitempty"`
	AdditionalProperties    map[string]interface{}
}

KeyfactorAPIModelsSMTPSMTPResponse struct for KeyfactorAPIModelsSMTPSMTPResponse

func NewKeyfactorAPIModelsSMTPSMTPResponse ¶

func NewKeyfactorAPIModelsSMTPSMTPResponse() *KeyfactorAPIModelsSMTPSMTPResponse

NewKeyfactorAPIModelsSMTPSMTPResponse instantiates a new KeyfactorAPIModelsSMTPSMTPResponse 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 NewKeyfactorAPIModelsSMTPSMTPResponseWithDefaults ¶

func NewKeyfactorAPIModelsSMTPSMTPResponseWithDefaults() *KeyfactorAPIModelsSMTPSMTPResponse

NewKeyfactorAPIModelsSMTPSMTPResponseWithDefaults instantiates a new KeyfactorAPIModelsSMTPSMTPResponse 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 (*KeyfactorAPIModelsSMTPSMTPResponse) GetHost ¶

GetHost returns the Host field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetHostOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) GetHostOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetId ¶

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

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetIdOk ¶

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 (*KeyfactorAPIModelsSMTPSMTPResponse) GetPort ¶

GetPort returns the Port field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetPortOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) GetPortOk() (*int32, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) GetRelayAuthenticationType() int32

GetRelayAuthenticationType returns the RelayAuthenticationType field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetRelayAuthenticationTypeOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) GetRelayAuthenticationTypeOk() (*int32, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) GetRelayUsername() string

GetRelayUsername returns the RelayUsername field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetRelayUsernameOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) GetRelayUsernameOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) GetSenderAccount() string

GetSenderAccount returns the SenderAccount field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetSenderAccountOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) GetSenderAccountOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetSenderName ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) GetSenderName() string

GetSenderName returns the SenderName field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetSenderNameOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) GetSenderNameOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetUseSSL ¶

GetUseSSL returns the UseSSL field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPResponse) GetUseSSLOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) GetUseSSLOk() (*bool, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPResponse) HasHost ¶

HasHost returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPResponse) HasPort ¶

HasPort returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPResponse) HasRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) HasRelayAuthenticationType() bool

HasRelayAuthenticationType returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPResponse) HasRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) HasRelayUsername() bool

HasRelayUsername returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPResponse) HasSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) HasSenderAccount() bool

HasSenderAccount returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPResponse) HasSenderName ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) HasSenderName() bool

HasSenderName returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPResponse) HasUseSSL ¶

HasUseSSL returns a boolean if a field has been set.

func (KeyfactorAPIModelsSMTPSMTPResponse) MarshalJSON ¶

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

func (*KeyfactorAPIModelsSMTPSMTPResponse) SetHost ¶

SetHost gets a reference to the given string and assigns it to the Host field.

func (*KeyfactorAPIModelsSMTPSMTPResponse) SetId ¶

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

func (*KeyfactorAPIModelsSMTPSMTPResponse) SetPort ¶

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*KeyfactorAPIModelsSMTPSMTPResponse) SetRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) SetRelayAuthenticationType(v int32)

SetRelayAuthenticationType gets a reference to the given int32 and assigns it to the RelayAuthenticationType field.

func (*KeyfactorAPIModelsSMTPSMTPResponse) SetRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) SetRelayUsername(v string)

SetRelayUsername gets a reference to the given string and assigns it to the RelayUsername field.

func (*KeyfactorAPIModelsSMTPSMTPResponse) SetSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) SetSenderAccount(v string)

SetSenderAccount gets a reference to the given string and assigns it to the SenderAccount field.

func (*KeyfactorAPIModelsSMTPSMTPResponse) SetSenderName ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) SetSenderName(v string)

SetSenderName gets a reference to the given string and assigns it to the SenderName field.

func (*KeyfactorAPIModelsSMTPSMTPResponse) SetUseSSL ¶

func (o *KeyfactorAPIModelsSMTPSMTPResponse) SetUseSSL(v bool)

SetUseSSL gets a reference to the given bool and assigns it to the UseSSL field.

func (KeyfactorAPIModelsSMTPSMTPResponse) ToMap ¶

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

func (*KeyfactorAPIModelsSMTPSMTPResponse) UnmarshalJSON ¶

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

type KeyfactorAPIModelsSMTPSMTPTestRequest ¶

type KeyfactorAPIModelsSMTPSMTPTestRequest struct {
	Host                    *string `json:"Host,omitempty"`
	Id                      *int32  `json:"Id,omitempty"`
	Port                    *int32  `json:"Port,omitempty"`
	RelayAuthenticationType *int32  `json:"RelayAuthenticationType,omitempty"`
	RelayPassword           *string `json:"RelayPassword,omitempty"`
	RelayUsername           *string `json:"RelayUsername,omitempty"`
	SenderAccount           *string `json:"SenderAccount,omitempty"`
	SenderName              *string `json:"SenderName,omitempty"`
	TestRecipient           *string `json:"TestRecipient,omitempty"`
	UseSSL                  *bool   `json:"UseSSL,omitempty"`
	AdditionalProperties    map[string]interface{}
}

KeyfactorAPIModelsSMTPSMTPTestRequest struct for KeyfactorAPIModelsSMTPSMTPTestRequest

func NewKeyfactorAPIModelsSMTPSMTPTestRequest ¶

func NewKeyfactorAPIModelsSMTPSMTPTestRequest() *KeyfactorAPIModelsSMTPSMTPTestRequest

NewKeyfactorAPIModelsSMTPSMTPTestRequest instantiates a new KeyfactorAPIModelsSMTPSMTPTestRequest 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 NewKeyfactorAPIModelsSMTPSMTPTestRequestWithDefaults ¶

func NewKeyfactorAPIModelsSMTPSMTPTestRequestWithDefaults() *KeyfactorAPIModelsSMTPSMTPTestRequest

NewKeyfactorAPIModelsSMTPSMTPTestRequestWithDefaults instantiates a new KeyfactorAPIModelsSMTPSMTPTestRequest 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 (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetHost ¶

GetHost returns the Host field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetHostOk ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetId ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetIdOk ¶

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 (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetPort ¶

GetPort returns the Port field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetPortOk ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayAuthenticationType() int32

GetRelayAuthenticationType returns the RelayAuthenticationType field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayAuthenticationTypeOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayAuthenticationTypeOk() (*int32, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayPassword ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayPassword() string

GetRelayPassword returns the RelayPassword field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayPasswordOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayPasswordOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayUsername() string

GetRelayUsername returns the RelayUsername field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayUsernameOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetRelayUsernameOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetSenderAccount() string

GetSenderAccount returns the SenderAccount field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetSenderAccountOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetSenderAccountOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetSenderName ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetSenderName() string

GetSenderName returns the SenderName field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetSenderNameOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetSenderNameOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetTestRecipient ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetTestRecipient() string

GetTestRecipient returns the TestRecipient field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetTestRecipientOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetTestRecipientOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetUseSSL ¶

GetUseSSL returns the UseSSL field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) GetUseSSLOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) GetUseSSLOk() (*bool, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) HasHost ¶

HasHost returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) HasPort ¶

HasPort returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) HasRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) HasRelayAuthenticationType() bool

HasRelayAuthenticationType returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) HasRelayPassword ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) HasRelayPassword() bool

HasRelayPassword returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) HasRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) HasRelayUsername() bool

HasRelayUsername returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) HasSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) HasSenderAccount() bool

HasSenderAccount returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) HasSenderName ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) HasSenderName() bool

HasSenderName returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) HasTestRecipient ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) HasTestRecipient() bool

HasTestRecipient returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) HasUseSSL ¶

HasUseSSL returns a boolean if a field has been set.

func (KeyfactorAPIModelsSMTPSMTPTestRequest) MarshalJSON ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) SetHost ¶

SetHost gets a reference to the given string and assigns it to the Host field.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) SetId ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) SetPort ¶

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) SetRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) SetRelayAuthenticationType(v int32)

SetRelayAuthenticationType gets a reference to the given int32 and assigns it to the RelayAuthenticationType field.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) SetRelayPassword ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) SetRelayPassword(v string)

SetRelayPassword gets a reference to the given string and assigns it to the RelayPassword field.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) SetRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) SetRelayUsername(v string)

SetRelayUsername gets a reference to the given string and assigns it to the RelayUsername field.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) SetSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) SetSenderAccount(v string)

SetSenderAccount gets a reference to the given string and assigns it to the SenderAccount field.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) SetSenderName ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) SetSenderName(v string)

SetSenderName gets a reference to the given string and assigns it to the SenderName field.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) SetTestRecipient ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestRequest) SetTestRecipient(v string)

SetTestRecipient gets a reference to the given string and assigns it to the TestRecipient field.

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) SetUseSSL ¶

SetUseSSL gets a reference to the given bool and assigns it to the UseSSL field.

func (KeyfactorAPIModelsSMTPSMTPTestRequest) ToMap ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestRequest) UnmarshalJSON ¶

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

type KeyfactorAPIModelsSMTPSMTPTestResponse ¶

type KeyfactorAPIModelsSMTPSMTPTestResponse struct {
	Host                    *string `json:"Host,omitempty"`
	Id                      *int32  `json:"Id,omitempty"`
	Port                    *int32  `json:"Port,omitempty"`
	RelayAuthenticationType *int32  `json:"RelayAuthenticationType,omitempty"`
	RelayUsername           *string `json:"RelayUsername,omitempty"`
	SenderAccount           *string `json:"SenderAccount,omitempty"`
	SenderName              *string `json:"SenderName,omitempty"`
	TestRecipient           *string `json:"TestRecipient,omitempty"`
	UseSSL                  *bool   `json:"UseSSL,omitempty"`
	AdditionalProperties    map[string]interface{}
}

KeyfactorAPIModelsSMTPSMTPTestResponse struct for KeyfactorAPIModelsSMTPSMTPTestResponse

func NewKeyfactorAPIModelsSMTPSMTPTestResponse ¶

func NewKeyfactorAPIModelsSMTPSMTPTestResponse() *KeyfactorAPIModelsSMTPSMTPTestResponse

NewKeyfactorAPIModelsSMTPSMTPTestResponse instantiates a new KeyfactorAPIModelsSMTPSMTPTestResponse 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 NewKeyfactorAPIModelsSMTPSMTPTestResponseWithDefaults ¶

func NewKeyfactorAPIModelsSMTPSMTPTestResponseWithDefaults() *KeyfactorAPIModelsSMTPSMTPTestResponse

NewKeyfactorAPIModelsSMTPSMTPTestResponseWithDefaults instantiates a new KeyfactorAPIModelsSMTPSMTPTestResponse 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 (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetHost ¶

GetHost returns the Host field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetHostOk ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetId ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetIdOk ¶

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 (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetPort ¶

GetPort returns the Port field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetPortOk ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) GetRelayAuthenticationType() int32

GetRelayAuthenticationType returns the RelayAuthenticationType field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetRelayAuthenticationTypeOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) GetRelayAuthenticationTypeOk() (*int32, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) GetRelayUsername() string

GetRelayUsername returns the RelayUsername field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetRelayUsernameOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) GetRelayUsernameOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) GetSenderAccount() string

GetSenderAccount returns the SenderAccount field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetSenderAccountOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) GetSenderAccountOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetSenderName ¶

GetSenderName returns the SenderName field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetSenderNameOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) GetSenderNameOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetTestRecipient ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) GetTestRecipient() string

GetTestRecipient returns the TestRecipient field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetTestRecipientOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) GetTestRecipientOk() (*string, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetUseSSL ¶

GetUseSSL returns the UseSSL field value if set, zero value otherwise.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) GetUseSSLOk ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) GetUseSSLOk() (*bool, bool)

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) HasHost ¶

HasHost returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) HasPort ¶

HasPort returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) HasRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) HasRelayAuthenticationType() bool

HasRelayAuthenticationType returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) HasRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) HasRelayUsername() bool

HasRelayUsername returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) HasSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) HasSenderAccount() bool

HasSenderAccount returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) HasSenderName ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) HasSenderName() bool

HasSenderName returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) HasTestRecipient ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) HasTestRecipient() bool

HasTestRecipient returns a boolean if a field has been set.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) HasUseSSL ¶

HasUseSSL returns a boolean if a field has been set.

func (KeyfactorAPIModelsSMTPSMTPTestResponse) MarshalJSON ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) SetHost ¶

SetHost gets a reference to the given string and assigns it to the Host field.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) SetId ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) SetPort ¶

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) SetRelayAuthenticationType ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) SetRelayAuthenticationType(v int32)

SetRelayAuthenticationType gets a reference to the given int32 and assigns it to the RelayAuthenticationType field.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) SetRelayUsername ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) SetRelayUsername(v string)

SetRelayUsername gets a reference to the given string and assigns it to the RelayUsername field.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) SetSenderAccount ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) SetSenderAccount(v string)

SetSenderAccount gets a reference to the given string and assigns it to the SenderAccount field.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) SetSenderName ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) SetSenderName(v string)

SetSenderName gets a reference to the given string and assigns it to the SenderName field.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) SetTestRecipient ¶

func (o *KeyfactorAPIModelsSMTPSMTPTestResponse) SetTestRecipient(v string)

SetTestRecipient gets a reference to the given string and assigns it to the TestRecipient field.

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) SetUseSSL ¶

SetUseSSL gets a reference to the given bool and assigns it to the UseSSL field.

func (KeyfactorAPIModelsSMTPSMTPTestResponse) ToMap ¶

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

func (*KeyfactorAPIModelsSMTPSMTPTestResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse ¶

type KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse struct {
	Id                   *int32  `json:"Id,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse struct for KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse

func NewKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse ¶

func NewKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse() *KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse

NewKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse instantiates a new KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse 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 NewKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponseWithDefaults() *KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse

NewKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse 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 (*KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) GetId ¶

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

func (*KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) GetName ¶

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

func (*KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) 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 (*KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) SetId ¶

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

func (*KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) SetName ¶

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

func (KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest ¶

type KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest struct {
	Schedule             *KeyfactorCommonSchedulingKeyfactorSchedule `json:"Schedule,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest struct for KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest

func NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest ¶

func NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest() *KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest

NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest instantiates a new KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest 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 NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequestWithDefaults() *KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest

NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest 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 (*KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) GetScheduleOk ¶

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

func (*KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) HasSchedule ¶

HasSchedule returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse ¶

type KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse struct {
	Schedule             *KeyfactorCommonSchedulingKeyfactorSchedule `json:"Schedule,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse struct for KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse

func NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse ¶

func NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse() *KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse

NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse instantiates a new KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse 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 NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponseWithDefaults() *KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse

NewKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse 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 (*KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) GetScheduleOk ¶

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

func (*KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) HasSchedule ¶

HasSchedule returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse ¶

type KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse struct {
	Id                   *int32  `json:"Id,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	ForestRoot           *string `json:"ForestRoot,omitempty"`
	ConfigurationTenant  *string `json:"ConfigurationTenant,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse struct for KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse

func NewKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse ¶

func NewKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse() *KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse

NewKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse instantiates a new KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse 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 NewKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponseWithDefaults() *KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse

NewKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse 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 (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) GetConfigurationTenant ¶

GetConfigurationTenant returns the ConfigurationTenant field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) GetConfigurationTenantOk ¶

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

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) GetDisplayNameOk ¶

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

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) GetForestRoot ¶

GetForestRoot returns the ForestRoot field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) GetForestRootOk ¶

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

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) GetId ¶

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

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) HasConfigurationTenant ¶

HasConfigurationTenant returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) HasForestRoot ¶

HasForestRoot returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) SetConfigurationTenant ¶

SetConfigurationTenant gets a reference to the given string and assigns it to the ConfigurationTenant field.

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) SetForestRoot ¶

SetForestRoot gets a reference to the given string and assigns it to the ForestRoot field.

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) SetId ¶

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

func (KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest ¶

type KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest struct {
	DisplayName            string                                                       `json:"DisplayName"`
	Subject                string                                                       `json:"Subject"`
	Message                string                                                       `json:"Message"`
	TemplateId             *int32                                                       `json:"TemplateId,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest `json:"RegisteredEventHandler,omitempty"`
	Recipients             []string                                                     `json:"Recipients,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest struct for KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest

func NewKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest ¶

func NewKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest(displayName string, subject string, message string) *KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest

NewKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest instantiates a new KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest 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 NewKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequestWithDefaults() *KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest

NewKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest 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 (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetMessage ¶

GetMessage returns the Message field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetSubject ¶

GetSubject returns the Subject field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetTemplateId ¶

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) GetTemplateIdOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) HasEventHandlerParameters ¶

func (o *KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) HasEventHandlerParameters() bool

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) HasRegisteredEventHandler ¶

func (o *KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) HasRegisteredEventHandler() bool

HasRegisteredEventHandler returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) HasTemplateId ¶

HasTemplateId returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) SetDisplayName ¶

SetDisplayName sets field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) SetMessage ¶

SetMessage sets field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) SetSubject ¶

SetSubject sets field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) SetTemplateId ¶

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse ¶

type KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse struct {
	Id                     *int32                                                        `json:"Id,omitempty"`
	DisplayName            *string                                                       `json:"DisplayName,omitempty"`
	Subject                *string                                                       `json:"Subject,omitempty"`
	Message                *string                                                       `json:"Message,omitempty"`
	Recipients             []string                                                      `json:"Recipients,omitempty"`
	Template               *KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse   `json:"Template,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse `json:"RegisteredEventHandler,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterResponse `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse struct for KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse

func NewKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse ¶

func NewKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse() *KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse

NewKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse instantiates a new KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse 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 NewKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponseWithDefaults() *KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse

NewKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse 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 (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetDisplayNameOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetId ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetMessageOk ¶

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 (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetSubject ¶

GetSubject returns the Subject field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetSubjectOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) GetTemplateOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) HasEventHandlerParameters ¶

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) HasRegisteredEventHandler ¶

HasRegisteredEventHandler returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) HasSubject ¶

HasSubject returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) HasTemplate ¶

HasTemplate returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterResponse and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) SetId ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) SetSubject ¶

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) SetTemplate ¶

SetTemplate gets a reference to the given KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse and assigns it to the Template field.

func (KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest ¶

type KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest struct {
	Id                     *int32                                                       `json:"Id,omitempty"`
	DisplayName            string                                                       `json:"DisplayName"`
	Subject                string                                                       `json:"Subject"`
	Message                string                                                       `json:"Message"`
	TemplateId             *int32                                                       `json:"TemplateId,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest `json:"RegisteredEventHandler,omitempty"`
	Recipients             []string                                                     `json:"Recipients,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest struct for KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest

func NewKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest ¶

func NewKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest(displayName string, subject string, message string) *KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest

NewKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest instantiates a new KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest 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 NewKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequestWithDefaults() *KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest

NewKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest 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 (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetId ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetMessage ¶

GetMessage returns the Message field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetSubject ¶

GetSubject returns the Subject field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetTemplateId ¶

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) GetTemplateIdOk ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) HasEventHandlerParameters ¶

func (o *KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) HasEventHandlerParameters() bool

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) HasRegisteredEventHandler ¶

func (o *KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) HasRegisteredEventHandler() bool

HasRegisteredEventHandler returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) HasTemplateId ¶

HasTemplateId returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) SetDisplayName ¶

SetDisplayName sets field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) SetId ¶

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

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) SetMessage ¶

SetMessage sets field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) SetSubject ¶

SetSubject sets field value

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) SetTemplateId ¶

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest struct {
	DisplayName            string                                                       `json:"DisplayName"`
	Subject                string                                                       `json:"Subject"`
	Message                string                                                       `json:"Message"`
	ExpirationWarningDays  int32                                                        `json:"ExpirationWarningDays"`
	CertificateQueryId     *int32                                                       `json:"CertificateQueryId,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest `json:"RegisteredEventHandler,omitempty"`
	Recipients             []string                                                     `json:"Recipients,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest struct for KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest(displayName string, subject string, message string, expirationWarningDays int32) *KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest

NewKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest 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 NewKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequestWithDefaults() *KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest

NewKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest 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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetCertificateQueryId ¶

GetCertificateQueryId returns the CertificateQueryId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetCertificateQueryIdOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetExpirationWarningDays ¶

GetExpirationWarningDays returns the ExpirationWarningDays field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetExpirationWarningDaysOk ¶

GetExpirationWarningDaysOk returns a tuple with the ExpirationWarningDays field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetMessage ¶

GetMessage returns the Message field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetSubject ¶

GetSubject returns the Subject field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) HasCertificateQueryId ¶

HasCertificateQueryId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) HasEventHandlerParameters ¶

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) HasRegisteredEventHandler ¶

HasRegisteredEventHandler returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) SetCertificateQueryId ¶

SetCertificateQueryId gets a reference to the given int32 and assigns it to the CertificateQueryId field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) SetDisplayName ¶

SetDisplayName sets field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) SetExpirationWarningDays ¶

SetExpirationWarningDays sets field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) SetMessage ¶

SetMessage sets field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) SetSubject ¶

SetSubject sets field value

func (KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse struct {
	Id                     *int32                                                                      `json:"Id,omitempty"`
	DisplayName            *string                                                                     `json:"DisplayName,omitempty"`
	Subject                *string                                                                     `json:"Subject,omitempty"`
	Message                *string                                                                     `json:"Message,omitempty"`
	ExpirationWarningDays  *int32                                                                      `json:"ExpirationWarningDays,omitempty"`
	Recipients             []string                                                                    `json:"Recipients,omitempty"`
	CertificateQuery       *KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse `json:"CertificateQuery,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse               `json:"RegisteredEventHandler,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterResponse               `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse struct for KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse() *KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse

NewKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse 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 NewKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponseWithDefaults() *KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse

NewKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse 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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetCertificateQuery ¶

GetCertificateQuery returns the CertificateQuery field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetCertificateQueryOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetDisplayNameOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetExpirationWarningDays ¶

GetExpirationWarningDays returns the ExpirationWarningDays field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetExpirationWarningDaysOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetId ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetMessageOk ¶

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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetSubject ¶

GetSubject returns the Subject field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) GetSubjectOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) HasCertificateQuery ¶

HasCertificateQuery returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) HasEventHandlerParameters ¶

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) HasExpirationWarningDays ¶

HasExpirationWarningDays returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) HasRegisteredEventHandler ¶

HasRegisteredEventHandler returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) HasSubject ¶

HasSubject returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) SetCertificateQuery ¶

SetCertificateQuery gets a reference to the given KeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse and assigns it to the CertificateQuery field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterResponse and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) SetExpirationWarningDays ¶

SetExpirationWarningDays gets a reference to the given int32 and assigns it to the ExpirationWarningDays field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) SetId ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) SetSubject ¶

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertResponse ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertResponse struct {
	CAName               *string        `json:"CAName,omitempty"`
	CARow                *int64         `json:"CARow,omitempty"`
	IssuedCN             NullableString `json:"IssuedCN,omitempty"`
	Expiry               *string        `json:"Expiry,omitempty"`
	Subject              *string        `json:"Subject,omitempty"`
	Message              *string        `json:"Message,omitempty"`
	Recipients           []string       `json:"Recipients,omitempty"`
	SendDate             *string        `json:"SendDate,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsExpirationExpirationAlertResponse struct for KeyfactorApiModelsAlertsExpirationExpirationAlertResponse

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertResponse ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertResponse() *KeyfactorApiModelsAlertsExpirationExpirationAlertResponse

NewKeyfactorApiModelsAlertsExpirationExpirationAlertResponse instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertResponse 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 NewKeyfactorApiModelsAlertsExpirationExpirationAlertResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertResponseWithDefaults() *KeyfactorApiModelsAlertsExpirationExpirationAlertResponse

NewKeyfactorApiModelsAlertsExpirationExpirationAlertResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertResponse 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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetCAName ¶

GetCAName returns the CAName field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetCANameOk ¶

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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetCARow ¶

GetCARow returns the CARow field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetCARowOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetExpiry ¶

GetExpiry returns the Expiry field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetExpiryOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetIssuedCN ¶

GetIssuedCN returns the IssuedCN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetIssuedCNOk ¶

GetIssuedCNOk returns a tuple with the IssuedCN field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetMessageOk ¶

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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetSendDate ¶

GetSendDate returns the SendDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetSendDateOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetSubject ¶

GetSubject returns the Subject field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) GetSubjectOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) HasCAName ¶

HasCAName returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) HasCARow ¶

HasCARow returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) HasExpiry ¶

HasExpiry returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) HasIssuedCN ¶

HasIssuedCN returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) HasSendDate ¶

HasSendDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) HasSubject ¶

HasSubject returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) SetCAName ¶

SetCAName gets a reference to the given string and assigns it to the CAName field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) SetCARow ¶

SetCARow gets a reference to the given int64 and assigns it to the CARow field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) SetExpiry ¶

SetExpiry gets a reference to the given string and assigns it to the Expiry field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) SetIssuedCN ¶

SetIssuedCN gets a reference to the given NullableString and assigns it to the IssuedCN field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) SetIssuedCNNil ¶

SetIssuedCNNil sets the value for IssuedCN to be an explicit nil

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) SetSendDate ¶

SetSendDate gets a reference to the given string and assigns it to the SendDate field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) SetSubject ¶

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) UnmarshalJSON ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertResponse) UnsetIssuedCN ¶

UnsetIssuedCN ensures that no value is present for IssuedCN, not even an explicit nil

type KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest struct {
	EvaluationDate         *time.Time `json:"EvaluationDate,omitempty"`
	PreviousEvaluationDate *time.Time `json:"PreviousEvaluationDate,omitempty"`
	SendAlerts             *bool      `json:"SendAlerts,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest struct for KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest() *KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest

NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest 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 NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequestWithDefaults() *KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest

NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest 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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) GetEvaluationDate ¶

GetEvaluationDate returns the EvaluationDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) GetEvaluationDateOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) GetPreviousEvaluationDate ¶

GetPreviousEvaluationDate returns the PreviousEvaluationDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) GetPreviousEvaluationDateOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) GetSendAlerts ¶

GetSendAlerts returns the SendAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) GetSendAlertsOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) HasEvaluationDate ¶

HasEvaluationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) HasPreviousEvaluationDate ¶

HasPreviousEvaluationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) HasSendAlerts ¶

HasSendAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) SetEvaluationDate ¶

SetEvaluationDate gets a reference to the given time.Time and assigns it to the EvaluationDate field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) SetPreviousEvaluationDate ¶

SetPreviousEvaluationDate gets a reference to the given time.Time and assigns it to the PreviousEvaluationDate field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) SetSendAlerts ¶

SetSendAlerts gets a reference to the given bool and assigns it to the SendAlerts field.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest struct {
	AlertId                *int32     `json:"AlertId,omitempty"`
	EvaluationDate         *time.Time `json:"EvaluationDate,omitempty"`
	PreviousEvaluationDate *time.Time `json:"PreviousEvaluationDate,omitempty"`
	SendAlerts             *bool      `json:"SendAlerts,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest struct for KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest() *KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest

NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest 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 NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequestWithDefaults() *KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest

NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest 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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) GetAlertId ¶

GetAlertId returns the AlertId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) GetAlertIdOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) GetEvaluationDate ¶

GetEvaluationDate returns the EvaluationDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) GetEvaluationDateOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) GetPreviousEvaluationDate ¶

GetPreviousEvaluationDate returns the PreviousEvaluationDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) GetPreviousEvaluationDateOk ¶

func (o *KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) GetPreviousEvaluationDateOk() (*time.Time, bool)

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) GetSendAlerts ¶

GetSendAlerts returns the SendAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) GetSendAlertsOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) HasAlertId ¶

HasAlertId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) HasEvaluationDate ¶

HasEvaluationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) HasPreviousEvaluationDate ¶

HasPreviousEvaluationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) HasSendAlerts ¶

HasSendAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) SetAlertId ¶

SetAlertId gets a reference to the given int32 and assigns it to the AlertId field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) SetEvaluationDate ¶

SetEvaluationDate gets a reference to the given time.Time and assigns it to the EvaluationDate field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) SetPreviousEvaluationDate ¶

SetPreviousEvaluationDate gets a reference to the given time.Time and assigns it to the PreviousEvaluationDate field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) SetSendAlerts ¶

SetSendAlerts gets a reference to the given bool and assigns it to the SendAlerts field.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse struct {
	ExpirationAlerts     []KeyfactorApiModelsAlertsExpirationExpirationAlertResponse `json:"ExpirationAlerts,omitempty"`
	AlertBuildResult     *int32                                                      `json:"AlertBuildResult,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse struct for KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse() *KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse

NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse 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 NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponseWithDefaults() *KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse

NewKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse 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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) GetAlertBuildResult ¶

GetAlertBuildResult returns the AlertBuildResult field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) GetAlertBuildResultOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) GetExpirationAlerts ¶

GetExpirationAlerts returns the ExpirationAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) GetExpirationAlertsOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) HasAlertBuildResult ¶

HasAlertBuildResult returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) HasExpirationAlerts ¶

HasExpirationAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) SetAlertBuildResult ¶

SetAlertBuildResult gets a reference to the given int32 and assigns it to the AlertBuildResult field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) SetExpirationAlerts ¶

SetExpirationAlerts gets a reference to the given []KeyfactorApiModelsAlertsExpirationExpirationAlertResponse and assigns it to the ExpirationAlerts field.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest ¶

type KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest struct {
	Id                     *int32                                                       `json:"Id,omitempty"`
	DisplayName            string                                                       `json:"DisplayName"`
	Subject                string                                                       `json:"Subject"`
	Message                string                                                       `json:"Message"`
	ExpirationWarningDays  int32                                                        `json:"ExpirationWarningDays"`
	CertificateQueryId     *int32                                                       `json:"CertificateQueryId,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest `json:"RegisteredEventHandler,omitempty"`
	Recipients             []string                                                     `json:"Recipients,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest struct for KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest(displayName string, subject string, message string, expirationWarningDays int32) *KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest

NewKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest 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 NewKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequestWithDefaults() *KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest

NewKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest 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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetCertificateQueryId ¶

GetCertificateQueryId returns the CertificateQueryId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetCertificateQueryIdOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetExpirationWarningDays ¶

GetExpirationWarningDays returns the ExpirationWarningDays field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetExpirationWarningDaysOk ¶

GetExpirationWarningDaysOk returns a tuple with the ExpirationWarningDays field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetId ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetMessage ¶

GetMessage returns the Message field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetSubject ¶

GetSubject returns the Subject field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) HasCertificateQueryId ¶

HasCertificateQueryId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) HasEventHandlerParameters ¶

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) HasRegisteredEventHandler ¶

HasRegisteredEventHandler returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) SetCertificateQueryId ¶

SetCertificateQueryId gets a reference to the given int32 and assigns it to the CertificateQueryId field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) SetDisplayName ¶

SetDisplayName sets field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) SetExpirationWarningDays ¶

SetExpirationWarningDays sets field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) SetId ¶

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

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) SetMessage ¶

SetMessage sets field value

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) SetSubject ¶

SetSubject sets field value

func (KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest ¶

type KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest struct {
	DisplayName            string                                                       `json:"DisplayName"`
	Subject                string                                                       `json:"Subject"`
	Message                string                                                       `json:"Message"`
	TemplateId             *int32                                                       `json:"TemplateId,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest `json:"RegisteredEventHandler,omitempty"`
	Recipients             []string                                                     `json:"Recipients,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest struct for KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest

func NewKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest ¶

func NewKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest(displayName string, subject string, message string) *KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest

NewKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest instantiates a new KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest 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 NewKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequestWithDefaults() *KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest

NewKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest 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 (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetMessage ¶

GetMessage returns the Message field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetSubject ¶

GetSubject returns the Subject field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetTemplateId ¶

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) GetTemplateIdOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) HasEventHandlerParameters ¶

func (o *KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) HasEventHandlerParameters() bool

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) HasRegisteredEventHandler ¶

func (o *KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) HasRegisteredEventHandler() bool

HasRegisteredEventHandler returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) HasTemplateId ¶

HasTemplateId returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) SetDisplayName ¶

SetDisplayName sets field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) SetMessage ¶

SetMessage sets field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) SetSubject ¶

SetSubject sets field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) SetTemplateId ¶

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse ¶

type KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse struct {
	Id                     *int32                                                        `json:"Id,omitempty"`
	DisplayName            *string                                                       `json:"DisplayName,omitempty"`
	Subject                *string                                                       `json:"Subject,omitempty"`
	Message                *string                                                       `json:"Message,omitempty"`
	Recipients             []string                                                      `json:"Recipients,omitempty"`
	Template               *KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse   `json:"Template,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse `json:"RegisteredEventHandler,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterResponse `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse struct for KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse

func NewKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse ¶

func NewKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse() *KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse

NewKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse instantiates a new KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse 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 NewKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponseWithDefaults() *KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse

NewKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse 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 (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetDisplayNameOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetId ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetMessageOk ¶

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 (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetSubject ¶

GetSubject returns the Subject field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetSubjectOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) GetTemplateOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) HasEventHandlerParameters ¶

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) HasRegisteredEventHandler ¶

HasRegisteredEventHandler returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) HasSubject ¶

HasSubject returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) HasTemplate ¶

HasTemplate returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterResponse and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) SetId ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) SetSubject ¶

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) SetTemplate ¶

SetTemplate gets a reference to the given KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse and assigns it to the Template field.

func (KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest ¶

type KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest struct {
	Id                     *int32                                                       `json:"Id,omitempty"`
	DisplayName            string                                                       `json:"DisplayName"`
	Subject                string                                                       `json:"Subject"`
	Message                string                                                       `json:"Message"`
	TemplateId             *int32                                                       `json:"TemplateId,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest `json:"RegisteredEventHandler,omitempty"`
	Recipients             []string                                                     `json:"Recipients,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest struct for KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest

func NewKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest ¶

func NewKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest(displayName string, subject string, message string) *KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest

NewKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest instantiates a new KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest 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 NewKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequestWithDefaults() *KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest

NewKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest 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 (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetId ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetMessage ¶

GetMessage returns the Message field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetSubject ¶

GetSubject returns the Subject field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetTemplateId ¶

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) GetTemplateIdOk ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) HasEventHandlerParameters ¶

func (o *KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) HasEventHandlerParameters() bool

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) HasRegisteredEventHandler ¶

func (o *KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) HasRegisteredEventHandler() bool

HasRegisteredEventHandler returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) HasTemplateId ¶

HasTemplateId returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) SetDisplayName ¶

SetDisplayName sets field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) SetId ¶

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

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) SetMessage ¶

SetMessage sets field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) SetSubject ¶

SetSubject sets field value

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) SetTemplateId ¶

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest struct {
	DisplayName            string                                                       `json:"DisplayName"`
	Subject                string                                                       `json:"Subject"`
	Message                string                                                       `json:"Message"`
	RotationWarningDays    int32                                                        `json:"RotationWarningDays"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest `json:"RegisteredEventHandler,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest struct for KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest(displayName string, subject string, message string, rotationWarningDays int32) *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest 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 NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequestWithDefaults() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest 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 (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetMessage ¶

GetMessage returns the Message field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetRotationWarningDays ¶

GetRotationWarningDays returns the RotationWarningDays field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetRotationWarningDaysOk ¶

GetRotationWarningDaysOk returns a tuple with the RotationWarningDays field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetSubject ¶

GetSubject returns the Subject field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) HasEventHandlerParameters ¶

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) HasRegisteredEventHandler ¶

HasRegisteredEventHandler returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) SetDisplayName ¶

SetDisplayName sets field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) SetMessage ¶

SetMessage sets field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) SetRotationWarningDays ¶

SetRotationWarningDays sets field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) SetSubject ¶

SetSubject sets field value

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse struct {
	Id                     *int32                                                        `json:"Id,omitempty"`
	DisplayName            *string                                                       `json:"DisplayName,omitempty"`
	Subject                *string                                                       `json:"Subject,omitempty"`
	Message                *string                                                       `json:"Message,omitempty"`
	Recipient              *string                                                       `json:"Recipient,omitempty"`
	RotationWarningDays    *int32                                                        `json:"RotationWarningDays,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse `json:"RegisteredEventHandler,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterResponse `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse struct for KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse 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 NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponseWithDefaults() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse 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 (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetDisplayNameOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetId ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetMessageOk ¶

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 (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetRecipient ¶

GetRecipient returns the Recipient field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetRecipientOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetRotationWarningDays ¶

GetRotationWarningDays returns the RotationWarningDays field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetRotationWarningDaysOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetSubject ¶

GetSubject returns the Subject field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) GetSubjectOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) HasEventHandlerParameters ¶

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) HasRecipient ¶

HasRecipient returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) HasRegisteredEventHandler ¶

HasRegisteredEventHandler returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) HasRotationWarningDays ¶

HasRotationWarningDays returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) HasSubject ¶

HasSubject returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterResponse and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) SetId ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) SetRecipient ¶

SetRecipient gets a reference to the given string and assigns it to the Recipient field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) SetRotationWarningDays ¶

SetRotationWarningDays gets a reference to the given int32 and assigns it to the RotationWarningDays field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) SetSubject ¶

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse struct {
	Subject              *string `json:"Subject,omitempty"`
	Message              *string `json:"Message,omitempty"`
	Recipient            *string `json:"Recipient,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse struct for KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse 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 NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponseWithDefaults() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse 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 (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) GetMessageOk ¶

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 (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) GetRecipient ¶

GetRecipient returns the Recipient field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) GetRecipientOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) GetSubject ¶

GetSubject returns the Subject field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) GetSubjectOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) HasRecipient ¶

HasRecipient returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) HasSubject ¶

HasSubject returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) SetRecipient ¶

SetRecipient gets a reference to the given string and assigns it to the Recipient field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) SetSubject ¶

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest struct {
	EvaluationDate         *time.Time `json:"EvaluationDate,omitempty"`
	PreviousEvaluationDate *time.Time `json:"PreviousEvaluationDate,omitempty"`
	SendAlerts             *bool      `json:"SendAlerts,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest struct for KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest 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 NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequestWithDefaults() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest 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 (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) GetEvaluationDate ¶

GetEvaluationDate returns the EvaluationDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) GetEvaluationDateOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) GetPreviousEvaluationDate ¶

GetPreviousEvaluationDate returns the PreviousEvaluationDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) GetPreviousEvaluationDateOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) GetSendAlerts ¶

GetSendAlerts returns the SendAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) GetSendAlertsOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) HasEvaluationDate ¶

HasEvaluationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) HasPreviousEvaluationDate ¶

HasPreviousEvaluationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) HasSendAlerts ¶

HasSendAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) SetEvaluationDate ¶

SetEvaluationDate gets a reference to the given time.Time and assigns it to the EvaluationDate field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) SetPreviousEvaluationDate ¶

SetPreviousEvaluationDate gets a reference to the given time.Time and assigns it to the PreviousEvaluationDate field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) SetSendAlerts ¶

SetSendAlerts gets a reference to the given bool and assigns it to the SendAlerts field.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest struct {
	AlertId                *int32     `json:"AlertId,omitempty"`
	EvaluationDate         *time.Time `json:"EvaluationDate,omitempty"`
	PreviousEvaluationDate *time.Time `json:"PreviousEvaluationDate,omitempty"`
	SendAlerts             *bool      `json:"SendAlerts,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest struct for KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest 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 NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequestWithDefaults() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest 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 (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) GetAlertId ¶

GetAlertId returns the AlertId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) GetAlertIdOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) GetEvaluationDate ¶

GetEvaluationDate returns the EvaluationDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) GetEvaluationDateOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) GetPreviousEvaluationDate ¶

GetPreviousEvaluationDate returns the PreviousEvaluationDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) GetPreviousEvaluationDateOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) GetSendAlerts ¶

GetSendAlerts returns the SendAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) GetSendAlertsOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) HasAlertId ¶

HasAlertId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) HasEvaluationDate ¶

HasEvaluationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) HasPreviousEvaluationDate ¶

HasPreviousEvaluationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) HasSendAlerts ¶

HasSendAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) SetAlertId ¶

SetAlertId gets a reference to the given int32 and assigns it to the AlertId field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) SetEvaluationDate ¶

SetEvaluationDate gets a reference to the given time.Time and assigns it to the EvaluationDate field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) SetPreviousEvaluationDate ¶

SetPreviousEvaluationDate gets a reference to the given time.Time and assigns it to the PreviousEvaluationDate field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) SetSendAlerts ¶

SetSendAlerts gets a reference to the given bool and assigns it to the SendAlerts field.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse struct {
	KeyRotationAlerts    []KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse `json:"KeyRotationAlerts,omitempty"`
	AlertBuildResult     *int32                                                        `json:"AlertBuildResult,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse struct for KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse 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 NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponseWithDefaults() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse 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 (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) GetAlertBuildResult ¶

GetAlertBuildResult returns the AlertBuildResult field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) GetAlertBuildResultOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) GetKeyRotationAlerts ¶

GetKeyRotationAlerts returns the KeyRotationAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) GetKeyRotationAlertsOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) HasAlertBuildResult ¶

HasAlertBuildResult returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) HasKeyRotationAlerts ¶

HasKeyRotationAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) SetAlertBuildResult ¶

SetAlertBuildResult gets a reference to the given int32 and assigns it to the AlertBuildResult field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) SetKeyRotationAlerts ¶

SetKeyRotationAlerts gets a reference to the given []KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse and assigns it to the KeyRotationAlerts field.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest ¶

type KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest struct {
	Id                     *int32                                                       `json:"Id,omitempty"`
	DisplayName            string                                                       `json:"DisplayName"`
	Subject                string                                                       `json:"Subject"`
	Message                string                                                       `json:"Message"`
	RotationWarningDays    int32                                                        `json:"RotationWarningDays"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest `json:"RegisteredEventHandler,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest struct for KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest(displayName string, subject string, message string, rotationWarningDays int32) *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest 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 NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequestWithDefaults() *KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest

NewKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest 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 (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetId ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetMessage ¶

GetMessage returns the Message field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetRotationWarningDays ¶

GetRotationWarningDays returns the RotationWarningDays field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetRotationWarningDaysOk ¶

GetRotationWarningDaysOk returns a tuple with the RotationWarningDays field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetSubject ¶

GetSubject returns the Subject field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) HasEventHandlerParameters ¶

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) HasRegisteredEventHandler ¶

HasRegisteredEventHandler returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) SetDisplayName ¶

SetDisplayName sets field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) SetId ¶

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

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) SetMessage ¶

SetMessage sets field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) SetRotationWarningDays ¶

SetRotationWarningDays sets field value

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) SetSubject ¶

SetSubject sets field value

func (KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest ¶

type KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest struct {
	DisplayName            string                                                       `json:"DisplayName"`
	Subject                string                                                       `json:"Subject"`
	Message                string                                                       `json:"Message"`
	TemplateId             *int32                                                       `json:"TemplateId,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest `json:"RegisteredEventHandler,omitempty"`
	Recipients             []string                                                     `json:"Recipients,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest struct for KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest

func NewKeyfactorApiModelsAlertsPendingPendingAlertCreationRequest ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertCreationRequest(displayName string, subject string, message string) *KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest

NewKeyfactorApiModelsAlertsPendingPendingAlertCreationRequest instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest 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 NewKeyfactorApiModelsAlertsPendingPendingAlertCreationRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertCreationRequestWithDefaults() *KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest

NewKeyfactorApiModelsAlertsPendingPendingAlertCreationRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest 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 (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetMessage ¶

GetMessage returns the Message field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetSubject ¶

GetSubject returns the Subject field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetTemplateId ¶

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) GetTemplateIdOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) HasEventHandlerParameters ¶

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) HasRegisteredEventHandler ¶

HasRegisteredEventHandler returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) HasTemplateId ¶

HasTemplateId returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) SetDisplayName ¶

SetDisplayName sets field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) SetMessage ¶

SetMessage sets field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) SetSubject ¶

SetSubject sets field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) SetTemplateId ¶

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse ¶

type KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse struct {
	Id                     *int32                                                        `json:"Id,omitempty"`
	DisplayName            *string                                                       `json:"DisplayName,omitempty"`
	Subject                *string                                                       `json:"Subject,omitempty"`
	Message                *string                                                       `json:"Message,omitempty"`
	Recipients             []string                                                      `json:"Recipients,omitempty"`
	Template               *KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse   `json:"Template,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse `json:"RegisteredEventHandler,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterResponse `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse struct for KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse

func NewKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse() *KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse

NewKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse 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 NewKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponseWithDefaults() *KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse

NewKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse 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 (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetDisplayNameOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetId ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetMessageOk ¶

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 (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetSubject ¶

GetSubject returns the Subject field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetSubjectOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) GetTemplateOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) HasEventHandlerParameters ¶

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) HasRegisteredEventHandler ¶

HasRegisteredEventHandler returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) HasSubject ¶

HasSubject returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) HasTemplate ¶

HasTemplate returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterResponse and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) SetId ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) SetSubject ¶

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) SetTemplate ¶

SetTemplate gets a reference to the given KeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse and assigns it to the Template field.

func (KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsPendingPendingAlertResponse ¶

type KeyfactorApiModelsAlertsPendingPendingAlertResponse struct {
	Subject              *string  `json:"Subject,omitempty"`
	Message              *string  `json:"Message,omitempty"`
	Recipients           []string `json:"Recipients,omitempty"`
	CARequestId          *int32   `json:"CARequestId,omitempty"`
	CommonName           *string  `json:"CommonName,omitempty"`
	LogicalName          *string  `json:"LogicalName,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsPendingPendingAlertResponse struct for KeyfactorApiModelsAlertsPendingPendingAlertResponse

func NewKeyfactorApiModelsAlertsPendingPendingAlertResponse ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertResponse() *KeyfactorApiModelsAlertsPendingPendingAlertResponse

NewKeyfactorApiModelsAlertsPendingPendingAlertResponse instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertResponse 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 NewKeyfactorApiModelsAlertsPendingPendingAlertResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertResponseWithDefaults() *KeyfactorApiModelsAlertsPendingPendingAlertResponse

NewKeyfactorApiModelsAlertsPendingPendingAlertResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertResponse 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 (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetCARequestId ¶

GetCARequestId returns the CARequestId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetCARequestIdOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetCommonName ¶

GetCommonName returns the CommonName field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetCommonNameOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetLogicalName ¶

GetLogicalName returns the LogicalName field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetLogicalNameOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetMessageOk ¶

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 (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetSubject ¶

GetSubject returns the Subject field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) GetSubjectOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) HasCARequestId ¶

HasCARequestId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) HasCommonName ¶

HasCommonName returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) HasLogicalName ¶

HasLogicalName returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) HasSubject ¶

HasSubject returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsPendingPendingAlertResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) SetCARequestId ¶

SetCARequestId gets a reference to the given int32 and assigns it to the CARequestId field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) SetCommonName ¶

SetCommonName gets a reference to the given string and assigns it to the CommonName field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) SetLogicalName ¶

SetLogicalName gets a reference to the given string and assigns it to the LogicalName field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) SetSubject ¶

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (KeyfactorApiModelsAlertsPendingPendingAlertResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest ¶

type KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest struct {
	SendAlerts           *bool `json:"SendAlerts,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest struct for KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest

func NewKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest() *KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest

NewKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest 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 NewKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequestWithDefaults() *KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest

NewKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest 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 (*KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) GetSendAlerts ¶

GetSendAlerts returns the SendAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) GetSendAlertsOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) HasSendAlerts ¶

HasSendAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) SetSendAlerts ¶

SetSendAlerts gets a reference to the given bool and assigns it to the SendAlerts field.

func (KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) UnmarshalJSON ¶

type KeyfactorApiModelsAlertsPendingPendingAlertTestRequest ¶

type KeyfactorApiModelsAlertsPendingPendingAlertTestRequest struct {
	AlertId              *int32 `json:"AlertId,omitempty"`
	SendAlerts           *bool  `json:"SendAlerts,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsPendingPendingAlertTestRequest struct for KeyfactorApiModelsAlertsPendingPendingAlertTestRequest

func NewKeyfactorApiModelsAlertsPendingPendingAlertTestRequest ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertTestRequest() *KeyfactorApiModelsAlertsPendingPendingAlertTestRequest

NewKeyfactorApiModelsAlertsPendingPendingAlertTestRequest instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertTestRequest 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 NewKeyfactorApiModelsAlertsPendingPendingAlertTestRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertTestRequestWithDefaults() *KeyfactorApiModelsAlertsPendingPendingAlertTestRequest

NewKeyfactorApiModelsAlertsPendingPendingAlertTestRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertTestRequest 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 (*KeyfactorApiModelsAlertsPendingPendingAlertTestRequest) GetAlertId ¶

GetAlertId returns the AlertId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestRequest) GetAlertIdOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestRequest) GetSendAlerts ¶

GetSendAlerts returns the SendAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestRequest) GetSendAlertsOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestRequest) HasAlertId ¶

HasAlertId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestRequest) HasSendAlerts ¶

HasSendAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsPendingPendingAlertTestRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestRequest) SetAlertId ¶

SetAlertId gets a reference to the given int32 and assigns it to the AlertId field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestRequest) SetSendAlerts ¶

SetSendAlerts gets a reference to the given bool and assigns it to the SendAlerts field.

func (KeyfactorApiModelsAlertsPendingPendingAlertTestRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsAlertsPendingPendingAlertTestResponse ¶

type KeyfactorApiModelsAlertsPendingPendingAlertTestResponse struct {
	PendingAlerts        []KeyfactorApiModelsAlertsPendingPendingAlertResponse `json:"PendingAlerts,omitempty"`
	AlertBuildResult     *int32                                                `json:"AlertBuildResult,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsAlertsPendingPendingAlertTestResponse struct for KeyfactorApiModelsAlertsPendingPendingAlertTestResponse

func NewKeyfactorApiModelsAlertsPendingPendingAlertTestResponse ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertTestResponse() *KeyfactorApiModelsAlertsPendingPendingAlertTestResponse

NewKeyfactorApiModelsAlertsPendingPendingAlertTestResponse instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertTestResponse 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 NewKeyfactorApiModelsAlertsPendingPendingAlertTestResponseWithDefaults ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertTestResponseWithDefaults() *KeyfactorApiModelsAlertsPendingPendingAlertTestResponse

NewKeyfactorApiModelsAlertsPendingPendingAlertTestResponseWithDefaults instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertTestResponse 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 (*KeyfactorApiModelsAlertsPendingPendingAlertTestResponse) GetAlertBuildResult ¶

GetAlertBuildResult returns the AlertBuildResult field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestResponse) GetAlertBuildResultOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestResponse) GetPendingAlerts ¶

GetPendingAlerts returns the PendingAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestResponse) GetPendingAlertsOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestResponse) HasAlertBuildResult ¶

HasAlertBuildResult returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestResponse) HasPendingAlerts ¶

HasPendingAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsPendingPendingAlertTestResponse) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestResponse) SetAlertBuildResult ¶

SetAlertBuildResult gets a reference to the given int32 and assigns it to the AlertBuildResult field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestResponse) SetPendingAlerts ¶

SetPendingAlerts gets a reference to the given []KeyfactorApiModelsAlertsPendingPendingAlertResponse and assigns it to the PendingAlerts field.

func (KeyfactorApiModelsAlertsPendingPendingAlertTestResponse) ToMap ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertTestResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest ¶

type KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest struct {
	Id                     *int32                                                       `json:"Id,omitempty"`
	DisplayName            string                                                       `json:"DisplayName"`
	Subject                string                                                       `json:"Subject"`
	Message                string                                                       `json:"Message"`
	TemplateId             *int32                                                       `json:"TemplateId,omitempty"`
	RegisteredEventHandler *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest `json:"RegisteredEventHandler,omitempty"`
	Recipients             []string                                                     `json:"Recipients,omitempty"`
	EventHandlerParameters []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest `json:"EventHandlerParameters,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest struct for KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest

func NewKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest(displayName string, subject string, message string) *KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest

NewKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest 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 NewKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequestWithDefaults ¶

func NewKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequestWithDefaults() *KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest

NewKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequestWithDefaults instantiates a new KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest 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 (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetEventHandlerParameters ¶

GetEventHandlerParameters returns the EventHandlerParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetEventHandlerParametersOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetId ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetIdOk ¶

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 (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetMessage ¶

GetMessage returns the Message field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetMessageOk ¶

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetRecipientsOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetRegisteredEventHandler ¶

GetRegisteredEventHandler returns the RegisteredEventHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetRegisteredEventHandlerOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetSubject ¶

GetSubject returns the Subject field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetTemplateId ¶

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) GetTemplateIdOk ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) HasEventHandlerParameters ¶

func (o *KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) HasEventHandlerParameters() bool

HasEventHandlerParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) HasRegisteredEventHandler ¶

func (o *KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) HasRegisteredEventHandler() bool

HasRegisteredEventHandler returns a boolean if a field has been set.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) HasTemplateId ¶

HasTemplateId returns a boolean if a field has been set.

func (KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) SetDisplayName ¶

SetDisplayName sets field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) SetEventHandlerParameters ¶

SetEventHandlerParameters gets a reference to the given []KeyfactorApiModelsEventHandlerEventHandlerParameterRequest and assigns it to the EventHandlerParameters field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) SetId ¶

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

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) SetMessage ¶

SetMessage sets field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) SetRegisteredEventHandler ¶

SetRegisteredEventHandler gets a reference to the given KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest and assigns it to the RegisteredEventHandler field.

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) SetSubject ¶

SetSubject sets field value

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) SetTemplateId ¶

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) ToMap ¶

func (*KeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) UnmarshalJSON ¶

type KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse ¶

type KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse struct {
	// Whether the test succeeded or failed.
	Success *bool `json:"Success,omitempty"`
	// The message returned by the test.
	Message              *string `json:"Message,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse A DTO for CA tests.

func NewKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse ¶

func NewKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse() *KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse

NewKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse instantiates a new KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse 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 NewKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponseWithDefaults ¶

func NewKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponseWithDefaults() *KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse

NewKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponseWithDefaults instantiates a new KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse 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 (*KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) GetMessageOk ¶

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 (*KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) GetSuccess ¶

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

func (*KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) GetSuccessOk ¶

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 (*KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) HasSuccess ¶

HasSuccess returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) SetSuccess ¶

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

func (KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) ToMap ¶

func (*KeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) UnmarshalJSON ¶

type KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest ¶

type KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest struct {
	CopyFromId           int32   `json:"CopyFromId"`
	Name                 string  `json:"Name"`
	Description          *string `json:"Description,omitempty"`
	Query                *string `json:"Query,omitempty"`
	DuplicationField     *int32  `json:"DuplicationField,omitempty"`
	ShowOnDashboard      *bool   `json:"ShowOnDashboard,omitempty"`
	Favorite             *bool   `json:"Favorite,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest struct for KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest ¶

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest(copyFromId int32, name string) *KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest

NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest instantiates a new KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest 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 NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequestWithDefaults ¶

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequestWithDefaults() *KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest

NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequestWithDefaults instantiates a new KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest 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 (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetCopyFromId ¶

GetCopyFromId returns the CopyFromId field value

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetCopyFromIdOk ¶

GetCopyFromIdOk returns a tuple with the CopyFromId field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetDescription ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetDescriptionOk ¶

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 (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetDuplicationField ¶

GetDuplicationField returns the DuplicationField field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetDuplicationFieldOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetFavorite ¶

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetFavoriteOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetNameOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetQuery ¶

GetQuery returns the Query field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetQueryOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetShowOnDashboard ¶

GetShowOnDashboard returns the ShowOnDashboard field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) GetShowOnDashboardOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) HasDuplicationField ¶

HasDuplicationField returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) HasFavorite ¶

HasFavorite returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) HasQuery ¶

HasQuery returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) HasShowOnDashboard ¶

HasShowOnDashboard returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) SetCopyFromId ¶

SetCopyFromId sets field value

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) SetDescription ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) SetDuplicationField ¶

SetDuplicationField gets a reference to the given int32 and assigns it to the DuplicationField field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) SetFavorite ¶

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) SetQuery ¶

SetQuery gets a reference to the given string and assigns it to the Query field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) SetShowOnDashboard ¶

SetShowOnDashboard gets a reference to the given bool and assigns it to the ShowOnDashboard field.

func (KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) ToMap ¶

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) UnmarshalJSON ¶

type KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest ¶

type KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest struct {
	CopyFromId           *int32  `json:"CopyFromId,omitempty"`
	Id                   *int32  `json:"Id,omitempty"`
	Name                 string  `json:"Name"`
	Description          *string `json:"Description,omitempty"`
	Query                *string `json:"Query,omitempty"`
	DuplicationField     *int32  `json:"DuplicationField,omitempty"`
	ShowOnDashboard      *bool   `json:"ShowOnDashboard,omitempty"`
	Favorite             *bool   `json:"Favorite,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest struct for KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest ¶

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest(name string) *KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest

NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest instantiates a new KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest 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 NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequestWithDefaults ¶

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequestWithDefaults() *KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest

NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequestWithDefaults instantiates a new KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest 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 (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetCopyFromId ¶

GetCopyFromId returns the CopyFromId field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetCopyFromIdOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetDescription ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetDescriptionOk ¶

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 (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetDuplicationField ¶

GetDuplicationField returns the DuplicationField field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetDuplicationFieldOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetFavorite ¶

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetFavoriteOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetId ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetIdOk ¶

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 (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetNameOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetQuery ¶

GetQuery returns the Query field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetQueryOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetShowOnDashboard ¶

GetShowOnDashboard returns the ShowOnDashboard field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) GetShowOnDashboardOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) HasCopyFromId ¶

HasCopyFromId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) HasDuplicationField ¶

HasDuplicationField returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) HasFavorite ¶

HasFavorite returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) HasQuery ¶

HasQuery returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) HasShowOnDashboard ¶

HasShowOnDashboard returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) SetCopyFromId ¶

SetCopyFromId gets a reference to the given int32 and assigns it to the CopyFromId field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) SetDescription ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) SetDuplicationField ¶

SetDuplicationField gets a reference to the given int32 and assigns it to the DuplicationField field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) SetFavorite ¶

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) SetId ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) SetQuery ¶

SetQuery gets a reference to the given string and assigns it to the Query field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) SetShowOnDashboard ¶

SetShowOnDashboard gets a reference to the given bool and assigns it to the ShowOnDashboard field.

func (KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) ToMap ¶

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) UnmarshalJSON ¶

type KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse ¶

type KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse struct {
	Id                   *int32  `json:"Id,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	Description          *string `json:"Description,omitempty"`
	Content              *string `json:"Content,omitempty"`
	Query                *string `json:"Query,omitempty"`
	DuplicationField     *int32  `json:"DuplicationField,omitempty"`
	ShowOnDashboard      *bool   `json:"ShowOnDashboard,omitempty"`
	Favorite             *bool   `json:"Favorite,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse struct for KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse ¶

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse() *KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse

NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse instantiates a new KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse 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 NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponseWithDefaults ¶

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponseWithDefaults() *KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse

NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponseWithDefaults instantiates a new KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse 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 (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetContent ¶

GetContent returns the Content field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetContentOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetDescription ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetDescriptionOk ¶

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 (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetDuplicationField ¶

GetDuplicationField returns the DuplicationField field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetDuplicationFieldOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetFavorite ¶

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetFavoriteOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetId ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetIdOk ¶

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 (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetName ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) 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 (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetQuery ¶

GetQuery returns the Query field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetQueryOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetShowOnDashboard ¶

GetShowOnDashboard returns the ShowOnDashboard field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) GetShowOnDashboardOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) HasContent ¶

HasContent returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) HasDuplicationField ¶

HasDuplicationField returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) HasFavorite ¶

HasFavorite returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) HasQuery ¶

HasQuery returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) HasShowOnDashboard ¶

HasShowOnDashboard returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) SetContent ¶

SetContent gets a reference to the given string and assigns it to the Content field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) SetDescription ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) SetDuplicationField ¶

SetDuplicationField gets a reference to the given int32 and assigns it to the DuplicationField field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) SetFavorite ¶

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) SetId ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) SetName ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) SetQuery ¶

SetQuery gets a reference to the given string and assigns it to the Query field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) SetShowOnDashboard ¶

SetShowOnDashboard gets a reference to the given bool and assigns it to the ShowOnDashboard field.

func (KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) ToMap ¶

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) UnmarshalJSON ¶

type KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest ¶

type KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest struct {
	Id                   int32   `json:"Id"`
	Name                 string  `json:"Name"`
	Description          *string `json:"Description,omitempty"`
	Query                *string `json:"Query,omitempty"`
	DuplicationField     *int32  `json:"DuplicationField,omitempty"`
	ShowOnDashboard      *bool   `json:"ShowOnDashboard,omitempty"`
	Favorite             *bool   `json:"Favorite,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest struct for KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest ¶

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest(id int32, name string) *KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest

NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest instantiates a new KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest 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 NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequestWithDefaults ¶

func NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequestWithDefaults() *KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest

NewKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequestWithDefaults instantiates a new KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest 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 (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetDescription ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetDescriptionOk ¶

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 (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetDuplicationField ¶

GetDuplicationField returns the DuplicationField field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetDuplicationFieldOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetFavorite ¶

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetFavoriteOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetId ¶

GetId returns the Id field value

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetIdOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetNameOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetQuery ¶

GetQuery returns the Query field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetQueryOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetShowOnDashboard ¶

GetShowOnDashboard returns the ShowOnDashboard field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) GetShowOnDashboardOk ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) HasDuplicationField ¶

HasDuplicationField returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) HasFavorite ¶

HasFavorite returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) HasQuery ¶

HasQuery returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) HasShowOnDashboard ¶

HasShowOnDashboard returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) SetDescription ¶

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

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) SetDuplicationField ¶

SetDuplicationField gets a reference to the given int32 and assigns it to the DuplicationField field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) SetFavorite ¶

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) SetId ¶

SetId sets field value

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) SetQuery ¶

SetQuery gets a reference to the given string and assigns it to the Query field.

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) SetShowOnDashboard ¶

SetShowOnDashboard gets a reference to the given bool and assigns it to the ShowOnDashboard field.

func (KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) ToMap ¶

func (*KeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) UnmarshalJSON ¶

type KeyfactorApiModelsCertificateStoresAddCertificateRequest ¶

type KeyfactorApiModelsCertificateStoresAddCertificateRequest struct {
	CertificateId        int32                                      `json:"CertificateId"`
	CertificateStores    []ModelsCertificateStoreEntry              `json:"CertificateStores"`
	Schedule             KeyfactorCommonSchedulingKeyfactorSchedule `json:"Schedule"`
	CollectionId         *int32                                     `json:"CollectionId,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateStoresAddCertificateRequest struct for KeyfactorApiModelsCertificateStoresAddCertificateRequest

func NewKeyfactorApiModelsCertificateStoresAddCertificateRequest ¶

func NewKeyfactorApiModelsCertificateStoresAddCertificateRequest(certificateId int32, certificateStores []ModelsCertificateStoreEntry, schedule KeyfactorCommonSchedulingKeyfactorSchedule) *KeyfactorApiModelsCertificateStoresAddCertificateRequest

NewKeyfactorApiModelsCertificateStoresAddCertificateRequest instantiates a new KeyfactorApiModelsCertificateStoresAddCertificateRequest 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 NewKeyfactorApiModelsCertificateStoresAddCertificateRequestWithDefaults ¶

func NewKeyfactorApiModelsCertificateStoresAddCertificateRequestWithDefaults() *KeyfactorApiModelsCertificateStoresAddCertificateRequest

NewKeyfactorApiModelsCertificateStoresAddCertificateRequestWithDefaults instantiates a new KeyfactorApiModelsCertificateStoresAddCertificateRequest 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 (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) GetCertificateId ¶

GetCertificateId returns the CertificateId field value

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) GetCertificateIdOk ¶

GetCertificateIdOk returns a tuple with the CertificateId field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) GetCertificateStores ¶

GetCertificateStores returns the CertificateStores field value

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) GetCertificateStoresOk ¶

GetCertificateStoresOk returns a tuple with the CertificateStores field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) GetCollectionId ¶

GetCollectionId returns the CollectionId field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) GetCollectionIdOk ¶

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

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) GetSchedule ¶

GetSchedule returns the Schedule field value

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) GetScheduleOk ¶

GetScheduleOk returns a tuple with the Schedule field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) HasCollectionId ¶

HasCollectionId returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateStoresAddCertificateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) SetCertificateId ¶

SetCertificateId sets field value

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) SetCertificateStores ¶

SetCertificateStores sets field value

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) SetCollectionId ¶

SetCollectionId gets a reference to the given int32 and assigns it to the CollectionId field.

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) SetSchedule ¶

SetSchedule sets field value

func (KeyfactorApiModelsCertificateStoresAddCertificateRequest) ToMap ¶

func (*KeyfactorApiModelsCertificateStoresAddCertificateRequest) UnmarshalJSON ¶

type KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest ¶

type KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest struct {
	Id                   *string                   `json:"Id,omitempty"`
	ContainerId          *int32                    `json:"ContainerId,omitempty"`
	CertStoreType        *int32                    `json:"CertStoreType,omitempty"`
	Properties           *string                   `json:"Properties,omitempty"`
	Password             *ModelsKeyfactorAPISecret `json:"Password,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest struct for KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest

func NewKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest ¶

func NewKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest() *KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest

NewKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest instantiates a new KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest 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 NewKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequestWithDefaults ¶

func NewKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequestWithDefaults() *KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest

NewKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequestWithDefaults instantiates a new KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest 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 (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) GetCertStoreType ¶

GetCertStoreType returns the CertStoreType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) GetCertStoreTypeOk ¶

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

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) GetContainerId ¶

GetContainerId returns the ContainerId field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) GetContainerIdOk ¶

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

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) GetId ¶

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

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) GetIdOk ¶

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 (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) GetPassword ¶

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

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) GetPasswordOk ¶

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 (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) GetProperties ¶

GetProperties returns the Properties field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) GetPropertiesOk ¶

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

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) HasCertStoreType ¶

HasCertStoreType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) HasContainerId ¶

HasContainerId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) HasPassword ¶

HasPassword returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) HasProperties ¶

HasProperties returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) SetCertStoreType ¶

SetCertStoreType gets a reference to the given int32 and assigns it to the CertStoreType field.

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) SetContainerId ¶

SetContainerId gets a reference to the given int32 and assigns it to the ContainerId field.

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) SetId ¶

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

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) SetPassword ¶

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

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) SetProperties ¶

SetProperties gets a reference to the given string and assigns it to the Properties field.

func (KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) ToMap ¶

func (*KeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) UnmarshalJSON ¶

type KeyfactorApiModelsCertificateStoresJobHistoryResponse ¶

type KeyfactorApiModelsCertificateStoresJobHistoryResponse struct {
	JobHistoryId         *int64                                      `json:"JobHistoryId,omitempty"`
	AgentMachine         *string                                     `json:"AgentMachine,omitempty"`
	JobId                *string                                     `json:"JobId,omitempty"`
	Schedule             *KeyfactorCommonSchedulingKeyfactorSchedule `json:"Schedule,omitempty"`
	JobType              *string                                     `json:"JobType,omitempty"`
	OperationStart       *time.Time                                  `json:"OperationStart,omitempty"`
	OperationEnd         *time.Time                                  `json:"OperationEnd,omitempty"`
	Message              *string                                     `json:"Message,omitempty"`
	Result               *int32                                      `json:"Result,omitempty"`
	Status               *int32                                      `json:"Status,omitempty"`
	StorePath            *string                                     `json:"StorePath,omitempty"`
	ClientMachine        *string                                     `json:"ClientMachine,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateStoresJobHistoryResponse struct for KeyfactorApiModelsCertificateStoresJobHistoryResponse

func NewKeyfactorApiModelsCertificateStoresJobHistoryResponse ¶

func NewKeyfactorApiModelsCertificateStoresJobHistoryResponse() *KeyfactorApiModelsCertificateStoresJobHistoryResponse

NewKeyfactorApiModelsCertificateStoresJobHistoryResponse instantiates a new KeyfactorApiModelsCertificateStoresJobHistoryResponse 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 NewKeyfactorApiModelsCertificateStoresJobHistoryResponseWithDefaults ¶

func NewKeyfactorApiModelsCertificateStoresJobHistoryResponseWithDefaults() *KeyfactorApiModelsCertificateStoresJobHistoryResponse

NewKeyfactorApiModelsCertificateStoresJobHistoryResponseWithDefaults instantiates a new KeyfactorApiModelsCertificateStoresJobHistoryResponse 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 (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetAgentMachine ¶

GetAgentMachine returns the AgentMachine field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetAgentMachineOk ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetClientMachine ¶

GetClientMachine returns the ClientMachine field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetClientMachineOk ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetJobHistoryId ¶

GetJobHistoryId returns the JobHistoryId field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetJobHistoryIdOk ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetJobId ¶

GetJobId returns the JobId field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetJobIdOk ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetJobType ¶

GetJobType returns the JobType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetJobTypeOk ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetMessageOk ¶

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 (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetOperationEnd ¶

GetOperationEnd returns the OperationEnd field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetOperationEndOk ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetOperationStart ¶

GetOperationStart returns the OperationStart field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetOperationStartOk ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetResult ¶

GetResult returns the Result field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetResultOk ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetScheduleOk ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetStatus ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetStatusOk ¶

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 (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetStorePath ¶

GetStorePath returns the StorePath field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) GetStorePathOk ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasAgentMachine ¶

HasAgentMachine returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasClientMachine ¶

HasClientMachine returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasJobHistoryId ¶

HasJobHistoryId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasJobId ¶

HasJobId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasJobType ¶

HasJobType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasOperationEnd ¶

HasOperationEnd returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasOperationStart ¶

HasOperationStart returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasResult ¶

HasResult returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasSchedule ¶

HasSchedule returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasStatus ¶

HasStatus returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) HasStorePath ¶

HasStorePath returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateStoresJobHistoryResponse) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetAgentMachine ¶

SetAgentMachine gets a reference to the given string and assigns it to the AgentMachine field.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetClientMachine ¶

SetClientMachine gets a reference to the given string and assigns it to the ClientMachine field.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetJobHistoryId ¶

SetJobHistoryId gets a reference to the given int64 and assigns it to the JobHistoryId field.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetJobId ¶

SetJobId gets a reference to the given string and assigns it to the JobId field.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetJobType ¶

SetJobType gets a reference to the given string and assigns it to the JobType field.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetOperationEnd ¶

SetOperationEnd gets a reference to the given time.Time and assigns it to the OperationEnd field.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetOperationStart ¶

SetOperationStart gets a reference to the given time.Time and assigns it to the OperationStart field.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetResult ¶

SetResult gets a reference to the given int32 and assigns it to the Result field.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetStatus ¶

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

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) SetStorePath ¶

SetStorePath gets a reference to the given string and assigns it to the StorePath field.

func (KeyfactorApiModelsCertificateStoresJobHistoryResponse) ToMap ¶

func (*KeyfactorApiModelsCertificateStoresJobHistoryResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsCertificateStoresReenrollmentRequest ¶

type KeyfactorApiModelsCertificateStoresReenrollmentRequest struct {
	KeystoreId           *string                           `json:"KeystoreId,omitempty"`
	SubjectName          *string                           `json:"SubjectName,omitempty"`
	AgentGuid            *string                           `json:"AgentGuid,omitempty"`
	Alias                *string                           `json:"Alias,omitempty"`
	JobProperties        map[string]map[string]interface{} `json:"JobProperties,omitempty"`
	CertificateAuthority *string                           `json:"CertificateAuthority,omitempty"`
	CertificateTemplate  *string                           `json:"CertificateTemplate,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateStoresReenrollmentRequest struct for KeyfactorApiModelsCertificateStoresReenrollmentRequest

func NewKeyfactorApiModelsCertificateStoresReenrollmentRequest ¶

func NewKeyfactorApiModelsCertificateStoresReenrollmentRequest() *KeyfactorApiModelsCertificateStoresReenrollmentRequest

NewKeyfactorApiModelsCertificateStoresReenrollmentRequest instantiates a new KeyfactorApiModelsCertificateStoresReenrollmentRequest 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 NewKeyfactorApiModelsCertificateStoresReenrollmentRequestWithDefaults ¶

func NewKeyfactorApiModelsCertificateStoresReenrollmentRequestWithDefaults() *KeyfactorApiModelsCertificateStoresReenrollmentRequest

NewKeyfactorApiModelsCertificateStoresReenrollmentRequestWithDefaults instantiates a new KeyfactorApiModelsCertificateStoresReenrollmentRequest 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 (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetAgentGuid ¶

GetAgentGuid returns the AgentGuid field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetAgentGuidOk ¶

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

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetAlias ¶

GetAlias returns the Alias field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetAliasOk ¶

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

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetCertificateAuthority ¶

GetCertificateAuthority returns the CertificateAuthority field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetCertificateAuthorityOk ¶

func (o *KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetCertificateAuthorityOk() (*string, bool)

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

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetCertificateTemplate ¶

GetCertificateTemplate returns the CertificateTemplate field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetCertificateTemplateOk ¶

func (o *KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetCertificateTemplateOk() (*string, bool)

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

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetJobProperties ¶

func (o *KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetJobProperties() map[string]map[string]interface{}

GetJobProperties returns the JobProperties field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetJobPropertiesOk ¶

func (o *KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetJobPropertiesOk() (map[string]map[string]interface{}, bool)

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

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetKeystoreId ¶

GetKeystoreId returns the KeystoreId field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetKeystoreIdOk ¶

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

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetSubjectName ¶

GetSubjectName returns the SubjectName field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) GetSubjectNameOk ¶

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

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) HasAgentGuid ¶

HasAgentGuid returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) HasAlias ¶

HasAlias returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) HasCertificateAuthority ¶

func (o *KeyfactorApiModelsCertificateStoresReenrollmentRequest) HasCertificateAuthority() bool

HasCertificateAuthority returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) HasCertificateTemplate ¶

HasCertificateTemplate returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) HasJobProperties ¶

HasJobProperties returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) HasKeystoreId ¶

HasKeystoreId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) HasSubjectName ¶

HasSubjectName returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateStoresReenrollmentRequest) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) SetAgentGuid ¶

SetAgentGuid gets a reference to the given string and assigns it to the AgentGuid field.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) SetAlias ¶

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) SetCertificateAuthority ¶

func (o *KeyfactorApiModelsCertificateStoresReenrollmentRequest) SetCertificateAuthority(v string)

SetCertificateAuthority gets a reference to the given string and assigns it to the CertificateAuthority field.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) SetCertificateTemplate ¶

SetCertificateTemplate gets a reference to the given string and assigns it to the CertificateTemplate field.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) SetJobProperties ¶

func (o *KeyfactorApiModelsCertificateStoresReenrollmentRequest) SetJobProperties(v map[string]map[string]interface{})

SetJobProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the JobProperties field.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) SetKeystoreId ¶

SetKeystoreId gets a reference to the given string and assigns it to the KeystoreId field.

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) SetSubjectName ¶

SetSubjectName gets a reference to the given string and assigns it to the SubjectName field.

func (KeyfactorApiModelsCertificateStoresReenrollmentRequest) ToMap ¶

func (*KeyfactorApiModelsCertificateStoresReenrollmentRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsCertificateStoresRemoveCertificateRequest ¶

type KeyfactorApiModelsCertificateStoresRemoveCertificateRequest struct {
	CertificateStores    []ModelsCertificateLocationSpecifier       `json:"CertificateStores"`
	Schedule             KeyfactorCommonSchedulingKeyfactorSchedule `json:"Schedule"`
	CollectionId         *int32                                     `json:"CollectionId,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateStoresRemoveCertificateRequest struct for KeyfactorApiModelsCertificateStoresRemoveCertificateRequest

func NewKeyfactorApiModelsCertificateStoresRemoveCertificateRequest ¶

func NewKeyfactorApiModelsCertificateStoresRemoveCertificateRequest(certificateStores []ModelsCertificateLocationSpecifier, schedule KeyfactorCommonSchedulingKeyfactorSchedule) *KeyfactorApiModelsCertificateStoresRemoveCertificateRequest

NewKeyfactorApiModelsCertificateStoresRemoveCertificateRequest instantiates a new KeyfactorApiModelsCertificateStoresRemoveCertificateRequest 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 NewKeyfactorApiModelsCertificateStoresRemoveCertificateRequestWithDefaults ¶

func NewKeyfactorApiModelsCertificateStoresRemoveCertificateRequestWithDefaults() *KeyfactorApiModelsCertificateStoresRemoveCertificateRequest

NewKeyfactorApiModelsCertificateStoresRemoveCertificateRequestWithDefaults instantiates a new KeyfactorApiModelsCertificateStoresRemoveCertificateRequest 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 (*KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) GetCertificateStores ¶

GetCertificateStores returns the CertificateStores field value

func (*KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) GetCertificateStoresOk ¶

GetCertificateStoresOk returns a tuple with the CertificateStores field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) GetCollectionId ¶

GetCollectionId returns the CollectionId field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) GetCollectionIdOk ¶

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

func (*KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) GetSchedule ¶

GetSchedule returns the Schedule field value

func (*KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) GetScheduleOk ¶

GetScheduleOk returns a tuple with the Schedule field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) HasCollectionId ¶

HasCollectionId returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) SetCertificateStores ¶

SetCertificateStores sets field value

func (*KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) SetCollectionId ¶

SetCollectionId gets a reference to the given int32 and assigns it to the CollectionId field.

func (*KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) SetSchedule ¶

SetSchedule sets field value

func (KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) ToMap ¶

func (*KeyfactorApiModelsCertificateStoresRemoveCertificateRequest) UnmarshalJSON ¶

type KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest ¶

type KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest struct {
	Name                 string                                                          `json:"Name"`
	ShortName            string                                                          `json:"ShortName"`
	Capability           *string                                                         `json:"Capability,omitempty"`
	LocalStore           *bool                                                           `json:"LocalStore,omitempty"`
	SupportedOperations  *ModelsCertStoreTypeSupportedOperations                         `json:"SupportedOperations,omitempty"`
	Properties           []ModelsCertificateStoreTypeProperty                            `json:"Properties,omitempty"`
	PasswordOptions      *ModelsCertStoreTypePasswordOptions                             `json:"PasswordOptions,omitempty"`
	StorePathType        *string                                                         `json:"StorePathType,omitempty"`
	StorePathValue       *string                                                         `json:"StorePathValue,omitempty"`
	PrivateKeyAllowed    *string                                                         `json:"PrivateKeyAllowed,omitempty"`
	ServerRequired       *bool                                                           `json:"ServerRequired,omitempty"`
	PowerShell           *bool                                                           `json:"PowerShell,omitempty"`
	BlueprintAllowed     *bool                                                           `json:"BlueprintAllowed,omitempty"`
	CustomAliasAllowed   *string                                                         `json:"CustomAliasAllowed,omitempty"`
	ServerRegistration   *int32                                                          `json:"ServerRegistration,omitempty"`
	InventoryEndpoint    *string                                                         `json:"InventoryEndpoint,omitempty"`
	InventoryJobTypeId   *string                                                         `json:"InventoryJobTypeId,omitempty"`
	ManagementJobTypeId  *string                                                         `json:"ManagementJobTypeId,omitempty"`
	DiscoveryJobTypeId   *string                                                         `json:"DiscoveryJobTypeId,omitempty"`
	EnrollmentJobTypeId  *string                                                         `json:"EnrollmentJobTypeId,omitempty"`
	EntryParameters      []ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter `json:"EntryParameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest struct for KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest

func NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest ¶

func NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest(name string, shortName string) *KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest

NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest instantiates a new KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest 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 NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequestWithDefaults ¶

func NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequestWithDefaults() *KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest

NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequestWithDefaults instantiates a new KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest 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 (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetBlueprintAllowed ¶

GetBlueprintAllowed returns the BlueprintAllowed field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetBlueprintAllowedOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetCapability ¶

GetCapability returns the Capability field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetCapabilityOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetCustomAliasAllowed ¶

GetCustomAliasAllowed returns the CustomAliasAllowed field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetCustomAliasAllowedOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetDiscoveryJobTypeId ¶

GetDiscoveryJobTypeId returns the DiscoveryJobTypeId field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetDiscoveryJobTypeIdOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetEnrollmentJobTypeId ¶

GetEnrollmentJobTypeId returns the EnrollmentJobTypeId field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetEnrollmentJobTypeIdOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetEntryParameters ¶

GetEntryParameters returns the EntryParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetEntryParametersOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetInventoryEndpoint ¶

GetInventoryEndpoint returns the InventoryEndpoint field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetInventoryEndpointOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetInventoryJobTypeId ¶

GetInventoryJobTypeId returns the InventoryJobTypeId field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetInventoryJobTypeIdOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetLocalStore ¶

GetLocalStore returns the LocalStore field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetLocalStoreOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetManagementJobTypeId ¶

GetManagementJobTypeId returns the ManagementJobTypeId field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetManagementJobTypeIdOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetNameOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetPasswordOptions ¶

GetPasswordOptions returns the PasswordOptions field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetPasswordOptionsOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetPowerShell ¶

GetPowerShell returns the PowerShell field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetPowerShellOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetPrivateKeyAllowed ¶

GetPrivateKeyAllowed returns the PrivateKeyAllowed field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetPrivateKeyAllowedOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetProperties ¶

GetProperties returns the Properties field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetPropertiesOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetServerRegistration ¶

GetServerRegistration returns the ServerRegistration field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetServerRegistrationOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetServerRequired ¶

GetServerRequired returns the ServerRequired field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetServerRequiredOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetShortName ¶

GetShortName returns the ShortName field value

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetShortNameOk ¶

GetShortNameOk returns a tuple with the ShortName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetStorePathType ¶

GetStorePathType returns the StorePathType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetStorePathTypeOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetStorePathValue ¶

GetStorePathValue returns the StorePathValue field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetStorePathValueOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetSupportedOperations ¶

GetSupportedOperations returns the SupportedOperations field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) GetSupportedOperationsOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasBlueprintAllowed ¶

HasBlueprintAllowed returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasCapability ¶

HasCapability returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasCustomAliasAllowed ¶

HasCustomAliasAllowed returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasDiscoveryJobTypeId ¶

HasDiscoveryJobTypeId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasEnrollmentJobTypeId ¶

HasEnrollmentJobTypeId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasEntryParameters ¶

HasEntryParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasInventoryEndpoint ¶

HasInventoryEndpoint returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasInventoryJobTypeId ¶

HasInventoryJobTypeId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasLocalStore ¶

HasLocalStore returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasManagementJobTypeId ¶

HasManagementJobTypeId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasPasswordOptions ¶

HasPasswordOptions returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasPowerShell ¶

HasPowerShell returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasPrivateKeyAllowed ¶

HasPrivateKeyAllowed returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasProperties ¶

HasProperties returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasServerRegistration ¶

HasServerRegistration returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasServerRequired ¶

HasServerRequired returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasStorePathType ¶

HasStorePathType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasStorePathValue ¶

HasStorePathValue returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) HasSupportedOperations ¶

HasSupportedOperations returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetBlueprintAllowed ¶

SetBlueprintAllowed gets a reference to the given bool and assigns it to the BlueprintAllowed field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetCapability ¶

SetCapability gets a reference to the given string and assigns it to the Capability field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetCustomAliasAllowed ¶

SetCustomAliasAllowed gets a reference to the given string and assigns it to the CustomAliasAllowed field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetDiscoveryJobTypeId ¶

SetDiscoveryJobTypeId gets a reference to the given string and assigns it to the DiscoveryJobTypeId field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetEnrollmentJobTypeId ¶

SetEnrollmentJobTypeId gets a reference to the given string and assigns it to the EnrollmentJobTypeId field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetEntryParameters ¶

SetEntryParameters gets a reference to the given []ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter and assigns it to the EntryParameters field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetInventoryEndpoint ¶

SetInventoryEndpoint gets a reference to the given string and assigns it to the InventoryEndpoint field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetInventoryJobTypeId ¶

SetInventoryJobTypeId gets a reference to the given string and assigns it to the InventoryJobTypeId field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetLocalStore ¶

SetLocalStore gets a reference to the given bool and assigns it to the LocalStore field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetManagementJobTypeId ¶

SetManagementJobTypeId gets a reference to the given string and assigns it to the ManagementJobTypeId field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetPasswordOptions ¶

SetPasswordOptions gets a reference to the given ModelsCertStoreTypePasswordOptions and assigns it to the PasswordOptions field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetPowerShell ¶

SetPowerShell gets a reference to the given bool and assigns it to the PowerShell field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetPrivateKeyAllowed ¶

SetPrivateKeyAllowed gets a reference to the given string and assigns it to the PrivateKeyAllowed field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetProperties ¶

SetProperties gets a reference to the given []ModelsCertificateStoreTypeProperty and assigns it to the Properties field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetServerRegistration ¶

SetServerRegistration gets a reference to the given int32 and assigns it to the ServerRegistration field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetServerRequired ¶

SetServerRequired gets a reference to the given bool and assigns it to the ServerRequired field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetShortName ¶

SetShortName sets field value

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetStorePathType ¶

SetStorePathType gets a reference to the given string and assigns it to the StorePathType field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetStorePathValue ¶

SetStorePathValue gets a reference to the given string and assigns it to the StorePathValue field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) SetSupportedOperations ¶

SetSupportedOperations gets a reference to the given ModelsCertStoreTypeSupportedOperations and assigns it to the SupportedOperations field.

func (KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) ToMap ¶

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) UnmarshalJSON ¶

type KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse ¶

type KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse struct {
	Name                 *string                                                         `json:"Name,omitempty"`
	ShortName            *string                                                         `json:"ShortName,omitempty"`
	Capability           *string                                                         `json:"Capability,omitempty"`
	StoreType            *int32                                                          `json:"StoreType,omitempty"`
	ImportType           *int32                                                          `json:"ImportType,omitempty"`
	LocalStore           *bool                                                           `json:"LocalStore,omitempty"`
	SupportedOperations  *ModelsCertStoreTypeSupportedOperations                         `json:"SupportedOperations,omitempty"`
	Properties           []ModelsCertificateStoreTypeProperty                            `json:"Properties,omitempty"`
	EntryParameters      []ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter `json:"EntryParameters,omitempty"`
	PasswordOptions      *ModelsCertStoreTypePasswordOptions                             `json:"PasswordOptions,omitempty"`
	StorePathType        *string                                                         `json:"StorePathType,omitempty"`
	StorePathValue       *string                                                         `json:"StorePathValue,omitempty"`
	PrivateKeyAllowed    *string                                                         `json:"PrivateKeyAllowed,omitempty"`
	JobProperties        []string                                                        `json:"JobProperties,omitempty"`
	ServerRequired       *bool                                                           `json:"ServerRequired,omitempty"`
	PowerShell           *bool                                                           `json:"PowerShell,omitempty"`
	BlueprintAllowed     *bool                                                           `json:"BlueprintAllowed,omitempty"`
	CustomAliasAllowed   *string                                                         `json:"CustomAliasAllowed,omitempty"`
	ServerRegistration   *int32                                                          `json:"ServerRegistration,omitempty"`
	InventoryEndpoint    *string                                                         `json:"InventoryEndpoint,omitempty"`
	InventoryJobType     *string                                                         `json:"InventoryJobType,omitempty"`
	ManagementJobType    *string                                                         `json:"ManagementJobType,omitempty"`
	DiscoveryJobType     *string                                                         `json:"DiscoveryJobType,omitempty"`
	EnrollmentJobType    *string                                                         `json:"EnrollmentJobType,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse struct for KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse

func NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse ¶

func NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse() *KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse

NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse instantiates a new KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse 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 NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponseWithDefaults ¶

func NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponseWithDefaults() *KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse

NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponseWithDefaults instantiates a new KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse 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 (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetBlueprintAllowed ¶

GetBlueprintAllowed returns the BlueprintAllowed field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetBlueprintAllowedOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetCapability ¶

GetCapability returns the Capability field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetCapabilityOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetCustomAliasAllowed ¶

GetCustomAliasAllowed returns the CustomAliasAllowed field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetCustomAliasAllowedOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetDiscoveryJobType ¶

GetDiscoveryJobType returns the DiscoveryJobType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetDiscoveryJobTypeOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetEnrollmentJobType ¶

GetEnrollmentJobType returns the EnrollmentJobType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetEnrollmentJobTypeOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetEntryParameters ¶

GetEntryParameters returns the EntryParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetEntryParametersOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetImportType ¶

GetImportType returns the ImportType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetImportTypeOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetInventoryEndpoint ¶

GetInventoryEndpoint returns the InventoryEndpoint field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetInventoryEndpointOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetInventoryJobType ¶

GetInventoryJobType returns the InventoryJobType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetInventoryJobTypeOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetJobProperties ¶

GetJobProperties returns the JobProperties field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetJobPropertiesOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetLocalStore ¶

GetLocalStore returns the LocalStore field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetLocalStoreOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetManagementJobType ¶

GetManagementJobType returns the ManagementJobType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetManagementJobTypeOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetName ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) 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 (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetPasswordOptions ¶

GetPasswordOptions returns the PasswordOptions field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetPasswordOptionsOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetPowerShell ¶

GetPowerShell returns the PowerShell field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetPowerShellOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetPrivateKeyAllowed ¶

GetPrivateKeyAllowed returns the PrivateKeyAllowed field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetPrivateKeyAllowedOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetProperties ¶

GetProperties returns the Properties field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetPropertiesOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetServerRegistration ¶

GetServerRegistration returns the ServerRegistration field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetServerRegistrationOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetServerRequired ¶

GetServerRequired returns the ServerRequired field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetServerRequiredOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetShortName ¶

GetShortName returns the ShortName field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetShortNameOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetStorePathType ¶

GetStorePathType returns the StorePathType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetStorePathTypeOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetStorePathValue ¶

GetStorePathValue returns the StorePathValue field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetStorePathValueOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetStoreType ¶

GetStoreType returns the StoreType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetStoreTypeOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetSupportedOperations ¶

GetSupportedOperations returns the SupportedOperations field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) GetSupportedOperationsOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasBlueprintAllowed ¶

HasBlueprintAllowed returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasCapability ¶

HasCapability returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasCustomAliasAllowed ¶

HasCustomAliasAllowed returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasDiscoveryJobType ¶

HasDiscoveryJobType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasEnrollmentJobType ¶

HasEnrollmentJobType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasEntryParameters ¶

HasEntryParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasImportType ¶

HasImportType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasInventoryEndpoint ¶

HasInventoryEndpoint returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasInventoryJobType ¶

HasInventoryJobType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasJobProperties ¶

HasJobProperties returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasLocalStore ¶

HasLocalStore returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasManagementJobType ¶

HasManagementJobType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasPasswordOptions ¶

HasPasswordOptions returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasPowerShell ¶

HasPowerShell returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasPrivateKeyAllowed ¶

HasPrivateKeyAllowed returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasProperties ¶

HasProperties returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasServerRegistration ¶

HasServerRegistration returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasServerRequired ¶

HasServerRequired returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasShortName ¶

HasShortName returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasStorePathType ¶

HasStorePathType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasStorePathValue ¶

HasStorePathValue returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasStoreType ¶

HasStoreType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) HasSupportedOperations ¶

HasSupportedOperations returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetBlueprintAllowed ¶

SetBlueprintAllowed gets a reference to the given bool and assigns it to the BlueprintAllowed field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetCapability ¶

SetCapability gets a reference to the given string and assigns it to the Capability field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetCustomAliasAllowed ¶

SetCustomAliasAllowed gets a reference to the given string and assigns it to the CustomAliasAllowed field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetDiscoveryJobType ¶

SetDiscoveryJobType gets a reference to the given string and assigns it to the DiscoveryJobType field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetEnrollmentJobType ¶

SetEnrollmentJobType gets a reference to the given string and assigns it to the EnrollmentJobType field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetEntryParameters ¶

SetEntryParameters gets a reference to the given []ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter and assigns it to the EntryParameters field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetImportType ¶

SetImportType gets a reference to the given int32 and assigns it to the ImportType field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetInventoryEndpoint ¶

SetInventoryEndpoint gets a reference to the given string and assigns it to the InventoryEndpoint field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetInventoryJobType ¶

SetInventoryJobType gets a reference to the given string and assigns it to the InventoryJobType field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetJobProperties ¶

SetJobProperties gets a reference to the given []string and assigns it to the JobProperties field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetLocalStore ¶

SetLocalStore gets a reference to the given bool and assigns it to the LocalStore field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetManagementJobType ¶

SetManagementJobType gets a reference to the given string and assigns it to the ManagementJobType field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetName ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetPasswordOptions ¶

SetPasswordOptions gets a reference to the given ModelsCertStoreTypePasswordOptions and assigns it to the PasswordOptions field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetPowerShell ¶

SetPowerShell gets a reference to the given bool and assigns it to the PowerShell field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetPrivateKeyAllowed ¶

SetPrivateKeyAllowed gets a reference to the given string and assigns it to the PrivateKeyAllowed field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetProperties ¶

SetProperties gets a reference to the given []ModelsCertificateStoreTypeProperty and assigns it to the Properties field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetServerRegistration ¶

SetServerRegistration gets a reference to the given int32 and assigns it to the ServerRegistration field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetServerRequired ¶

SetServerRequired gets a reference to the given bool and assigns it to the ServerRequired field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetShortName ¶

SetShortName gets a reference to the given string and assigns it to the ShortName field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetStorePathType ¶

SetStorePathType gets a reference to the given string and assigns it to the StorePathType field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetStorePathValue ¶

SetStorePathValue gets a reference to the given string and assigns it to the StorePathValue field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetStoreType ¶

SetStoreType gets a reference to the given int32 and assigns it to the StoreType field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) SetSupportedOperations ¶

SetSupportedOperations gets a reference to the given ModelsCertStoreTypeSupportedOperations and assigns it to the SupportedOperations field.

func (KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) ToMap ¶

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) UnmarshalJSON ¶

type KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest ¶

type KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest struct {
	StoreType            int32                                                           `json:"StoreType"`
	Name                 string                                                          `json:"Name"`
	ShortName            string                                                          `json:"ShortName"`
	Capability           *string                                                         `json:"Capability,omitempty"`
	LocalStore           *bool                                                           `json:"LocalStore,omitempty"`
	SupportedOperations  *ModelsCertStoreTypeSupportedOperations                         `json:"SupportedOperations,omitempty"`
	Properties           []ModelsCertificateStoreTypeProperty                            `json:"Properties,omitempty"`
	PasswordOptions      *ModelsCertStoreTypePasswordOptions                             `json:"PasswordOptions,omitempty"`
	StorePathType        *string                                                         `json:"StorePathType,omitempty"`
	StorePathValue       *string                                                         `json:"StorePathValue,omitempty"`
	PrivateKeyAllowed    *string                                                         `json:"PrivateKeyAllowed,omitempty"`
	ServerRequired       *bool                                                           `json:"ServerRequired,omitempty"`
	PowerShell           *bool                                                           `json:"PowerShell,omitempty"`
	BlueprintAllowed     *bool                                                           `json:"BlueprintAllowed,omitempty"`
	CustomAliasAllowed   *string                                                         `json:"CustomAliasAllowed,omitempty"`
	EntryParameters      []ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter `json:"EntryParameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest struct for KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest

func NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest ¶

func NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest(storeType int32, name string, shortName string) *KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest

NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest instantiates a new KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest 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 NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequestWithDefaults ¶

func NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequestWithDefaults() *KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest

NewKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequestWithDefaults instantiates a new KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest 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 (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetBlueprintAllowed ¶

GetBlueprintAllowed returns the BlueprintAllowed field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetBlueprintAllowedOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetCapability ¶

GetCapability returns the Capability field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetCapabilityOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetCustomAliasAllowed ¶

GetCustomAliasAllowed returns the CustomAliasAllowed field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetCustomAliasAllowedOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetEntryParameters ¶

GetEntryParameters returns the EntryParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetEntryParametersOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetLocalStore ¶

GetLocalStore returns the LocalStore field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetLocalStoreOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetNameOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetPasswordOptions ¶

GetPasswordOptions returns the PasswordOptions field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetPasswordOptionsOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetPowerShell ¶

GetPowerShell returns the PowerShell field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetPowerShellOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetPrivateKeyAllowed ¶

GetPrivateKeyAllowed returns the PrivateKeyAllowed field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetPrivateKeyAllowedOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetProperties ¶

GetProperties returns the Properties field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetPropertiesOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetServerRequired ¶

GetServerRequired returns the ServerRequired field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetServerRequiredOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetShortName ¶

GetShortName returns the ShortName field value

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetShortNameOk ¶

GetShortNameOk returns a tuple with the ShortName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetStorePathType ¶

GetStorePathType returns the StorePathType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetStorePathTypeOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetStorePathValue ¶

GetStorePathValue returns the StorePathValue field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetStorePathValueOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetStoreType ¶

GetStoreType returns the StoreType field value

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetStoreTypeOk ¶

GetStoreTypeOk returns a tuple with the StoreType field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetSupportedOperations ¶

GetSupportedOperations returns the SupportedOperations field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) GetSupportedOperationsOk ¶

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

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasBlueprintAllowed ¶

HasBlueprintAllowed returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasCapability ¶

HasCapability returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasCustomAliasAllowed ¶

HasCustomAliasAllowed returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasEntryParameters ¶

HasEntryParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasLocalStore ¶

HasLocalStore returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasPasswordOptions ¶

HasPasswordOptions returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasPowerShell ¶

HasPowerShell returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasPrivateKeyAllowed ¶

HasPrivateKeyAllowed returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasProperties ¶

HasProperties returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasServerRequired ¶

HasServerRequired returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasStorePathType ¶

HasStorePathType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasStorePathValue ¶

HasStorePathValue returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) HasSupportedOperations ¶

HasSupportedOperations returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetBlueprintAllowed ¶

SetBlueprintAllowed gets a reference to the given bool and assigns it to the BlueprintAllowed field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetCapability ¶

SetCapability gets a reference to the given string and assigns it to the Capability field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetCustomAliasAllowed ¶

SetCustomAliasAllowed gets a reference to the given string and assigns it to the CustomAliasAllowed field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetEntryParameters ¶

SetEntryParameters gets a reference to the given []ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter and assigns it to the EntryParameters field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetLocalStore ¶

SetLocalStore gets a reference to the given bool and assigns it to the LocalStore field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetPasswordOptions ¶

SetPasswordOptions gets a reference to the given ModelsCertStoreTypePasswordOptions and assigns it to the PasswordOptions field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetPowerShell ¶

SetPowerShell gets a reference to the given bool and assigns it to the PowerShell field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetPrivateKeyAllowed ¶

SetPrivateKeyAllowed gets a reference to the given string and assigns it to the PrivateKeyAllowed field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetProperties ¶

SetProperties gets a reference to the given []ModelsCertificateStoreTypeProperty and assigns it to the Properties field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetServerRequired ¶

SetServerRequired gets a reference to the given bool and assigns it to the ServerRequired field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetShortName ¶

SetShortName sets field value

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetStorePathType ¶

SetStorePathType gets a reference to the given string and assigns it to the StorePathType field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetStorePathValue ¶

SetStorePathValue gets a reference to the given string and assigns it to the StorePathValue field.

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetStoreType ¶

SetStoreType sets field value

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) SetSupportedOperations ¶

SetSupportedOperations gets a reference to the given ModelsCertStoreTypeSupportedOperations and assigns it to the SupportedOperations field.

func (KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) ToMap ¶

func (*KeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) UnmarshalJSON ¶

type KeyfactorApiModelsCertificatesAnalyzeCertificateRequest ¶

type KeyfactorApiModelsCertificatesAnalyzeCertificateRequest struct {
	Certificate          *string `json:"Certificate,omitempty"`
	Password             *string `json:"Password,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificatesAnalyzeCertificateRequest struct for KeyfactorApiModelsCertificatesAnalyzeCertificateRequest

func NewKeyfactorApiModelsCertificatesAnalyzeCertificateRequest ¶

func NewKeyfactorApiModelsCertificatesAnalyzeCertificateRequest() *KeyfactorApiModelsCertificatesAnalyzeCertificateRequest

NewKeyfactorApiModelsCertificatesAnalyzeCertificateRequest instantiates a new KeyfactorApiModelsCertificatesAnalyzeCertificateRequest 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 NewKeyfactorApiModelsCertificatesAnalyzeCertificateRequestWithDefaults ¶

func NewKeyfactorApiModelsCertificatesAnalyzeCertificateRequestWithDefaults() *KeyfactorApiModelsCertificatesAnalyzeCertificateRequest

NewKeyfactorApiModelsCertificatesAnalyzeCertificateRequestWithDefaults instantiates a new KeyfactorApiModelsCertificatesAnalyzeCertificateRequest 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 (*KeyfactorApiModelsCertificatesAnalyzeCertificateRequest) GetCertificate ¶

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

func (*KeyfactorApiModelsCertificatesAnalyzeCertificateRequest) GetCertificateOk ¶

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 (*KeyfactorApiModelsCertificatesAnalyzeCertificateRequest) GetPassword ¶

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

func (*KeyfactorApiModelsCertificatesAnalyzeCertificateRequest) GetPasswordOk ¶

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 (*KeyfactorApiModelsCertificatesAnalyzeCertificateRequest) HasCertificate ¶

HasCertificate returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesAnalyzeCertificateRequest) HasPassword ¶

HasPassword returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificatesAnalyzeCertificateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsCertificatesAnalyzeCertificateRequest) SetCertificate ¶

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

func (*KeyfactorApiModelsCertificatesAnalyzeCertificateRequest) SetPassword ¶

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

func (KeyfactorApiModelsCertificatesAnalyzeCertificateRequest) ToMap ¶

func (*KeyfactorApiModelsCertificatesAnalyzeCertificateRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse ¶

type KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse struct {
	// Id of the account represented by the audit response
	Id *int32 `json:"Id,omitempty"`
	// Name of the account represented by the audit response
	AccountName *string `json:"AccountName,omitempty"`
	// The type of account represented by the audit response (User or Group)
	IdentityType *string `json:"IdentityType,omitempty"`
	// The SID of the account represented by the audit reponse
	SID *string `json:"SID,omitempty"`
	// Permissions granted to the account represented by the audit reponse on the specified certifcate
	Permissions          []KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission `json:"Permissions,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse Represents an account with a list of permission granted to it on a given certificate by either a role or collection

func NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponse ¶

func NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponse() *KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse

NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponse instantiates a new KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse 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 NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseWithDefaults ¶

func NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseWithDefaults() *KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse

NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseWithDefaults instantiates a new KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse 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 (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) GetAccountName ¶

GetAccountName returns the AccountName field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) GetAccountNameOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) GetId ¶

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

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) GetIdOk ¶

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 (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) GetIdentityType ¶

GetIdentityType returns the IdentityType field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) GetIdentityTypeOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) GetPermissions ¶

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) GetPermissionsOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) GetSID ¶

GetSID returns the SID field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) GetSIDOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) HasAccountName ¶

HasAccountName returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) HasIdentityType ¶

HasIdentityType returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) HasPermissions ¶

HasPermissions returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) HasSID ¶

HasSID returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) MarshalJSON ¶

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) SetAccountName ¶

SetAccountName gets a reference to the given string and assigns it to the AccountName field.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) SetId ¶

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

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) SetIdentityType ¶

SetIdentityType gets a reference to the given string and assigns it to the IdentityType field.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) SetPermissions ¶

SetPermissions gets a reference to the given []KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission and assigns it to the Permissions field.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) SetSID ¶

SetSID gets a reference to the given string and assigns it to the SID field.

func (KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) ToMap ¶

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) UnmarshalJSON ¶

type KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission ¶

type KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission struct {
	// The name of the permission
	Name *string `json:"Name,omitempty"`
	// A list of roles or collections that grant the given permission
	GrantedBy            []string `json:"GrantedBy,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission Represents a permission granted to an account for a certificate

func NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission ¶

func NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission() *KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission

NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission instantiates a new KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission 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 NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermissionWithDefaults ¶

func NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermissionWithDefaults() *KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission

NewKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermissionWithDefaults instantiates a new KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission 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 (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) GetGrantedBy ¶

GetGrantedBy returns the GrantedBy field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) GetGrantedByOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) GetName ¶

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

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) 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 (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) HasGrantedBy ¶

HasGrantedBy returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) HasName ¶

HasName returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) MarshalJSON ¶

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) SetGrantedBy ¶

SetGrantedBy gets a reference to the given []string and assigns it to the GrantedBy field.

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) SetName ¶

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

func (KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) ToMap ¶

func (*KeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) UnmarshalJSON ¶

type KeyfactorApiModelsCertificatesCertificateLocationsResponse ¶

type KeyfactorApiModelsCertificatesCertificateLocationsResponse struct {
	Details              []ModelsCertStoreLocationsCertificateLocationsGroup `json:"Details,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificatesCertificateLocationsResponse struct for KeyfactorApiModelsCertificatesCertificateLocationsResponse

func NewKeyfactorApiModelsCertificatesCertificateLocationsResponse ¶

func NewKeyfactorApiModelsCertificatesCertificateLocationsResponse() *KeyfactorApiModelsCertificatesCertificateLocationsResponse

NewKeyfactorApiModelsCertificatesCertificateLocationsResponse instantiates a new KeyfactorApiModelsCertificatesCertificateLocationsResponse 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 NewKeyfactorApiModelsCertificatesCertificateLocationsResponseWithDefaults ¶

func NewKeyfactorApiModelsCertificatesCertificateLocationsResponseWithDefaults() *KeyfactorApiModelsCertificatesCertificateLocationsResponse

NewKeyfactorApiModelsCertificatesCertificateLocationsResponseWithDefaults instantiates a new KeyfactorApiModelsCertificatesCertificateLocationsResponse 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 (*KeyfactorApiModelsCertificatesCertificateLocationsResponse) GetDetails ¶

GetDetails returns the Details field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateLocationsResponse) GetDetailsOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateLocationsResponse) HasDetails ¶

HasDetails returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificatesCertificateLocationsResponse) MarshalJSON ¶

func (*KeyfactorApiModelsCertificatesCertificateLocationsResponse) SetDetails ¶

SetDetails gets a reference to the given []ModelsCertStoreLocationsCertificateLocationsGroup and assigns it to the Details field.

func (KeyfactorApiModelsCertificatesCertificateLocationsResponse) ToMap ¶

func (*KeyfactorApiModelsCertificatesCertificateLocationsResponse) UnmarshalJSON ¶

type KeyfactorApiModelsCertificatesCertificateQueryRequest ¶

type KeyfactorApiModelsCertificatesCertificateQueryRequest struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending *int32 `json:"SortAscending,omitempty"`
	// Select 'true' to include revoked certificates in the results
	IncludeRevoked *bool `json:"IncludeRevoked,omitempty"`
	// Select 'true' to include expired certificates in the results
	IncludeExpired       *bool `json:"IncludeExpired,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsCertificatesCertificateQueryRequest struct for KeyfactorApiModelsCertificatesCertificateQueryRequest

func NewKeyfactorApiModelsCertificatesCertificateQueryRequest ¶

func NewKeyfactorApiModelsCertificatesCertificateQueryRequest() *KeyfactorApiModelsCertificatesCertificateQueryRequest

NewKeyfactorApiModelsCertificatesCertificateQueryRequest instantiates a new KeyfactorApiModelsCertificatesCertificateQueryRequest 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 NewKeyfactorApiModelsCertificatesCertificateQueryRequestWithDefaults ¶

func NewKeyfactorApiModelsCertificatesCertificateQueryRequestWithDefaults() *KeyfactorApiModelsCertificatesCertificateQueryRequest

NewKeyfactorApiModelsCertificatesCertificateQueryRequestWithDefaults instantiates a new KeyfactorApiModelsCertificatesCertificateQueryRequest 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 (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetIncludeExpired ¶

GetIncludeExpired returns the IncludeExpired field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetIncludeExpiredOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetIncludeRevoked ¶

GetIncludeRevoked returns the IncludeRevoked field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetIncludeRevokedOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetPageReturnedOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetQueryStringOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetReturnLimitOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetSortAscendingOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) GetSortFieldOk ¶

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

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) HasIncludeExpired ¶

HasIncludeExpired returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) HasIncludeRevoked ¶

HasIncludeRevoked returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (KeyfactorApiModelsCertificatesCertificateQueryRequest) MarshalJSON ¶

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) SetIncludeExpired ¶

SetIncludeExpired gets a reference to the given bool and assigns it to the IncludeExpired field.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) SetIncludeRevoked ¶

SetIncludeRevoked gets a reference to the given bool and assigns it to the IncludeRevoked field.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (KeyfactorApiModelsCertificatesCertificateQueryRequest) ToMap ¶

func (*KeyfactorApiModelsCertificatesCertificateQueryRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest ¶

type KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest struct {
	ConfigurationTenant  *string `json:"ConfigurationTenant,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest struct for KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest

func NewKeyfactorApiModelsConfigurationTenantConfigurationTenantRequest ¶

func NewKeyfactorApiModelsConfigurationTenantConfigurationTenantRequest() *KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest

NewKeyfactorApiModelsConfigurationTenantConfigurationTenantRequest instantiates a new KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest 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 NewKeyfactorApiModelsConfigurationTenantConfigurationTenantRequestWithDefaults ¶

func NewKeyfactorApiModelsConfigurationTenantConfigurationTenantRequestWithDefaults() *KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest

NewKeyfactorApiModelsConfigurationTenantConfigurationTenantRequestWithDefaults instantiates a new KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest 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 (*KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) GetConfigurationTenant ¶

GetConfigurationTenant returns the ConfigurationTenant field value if set, zero value otherwise.

func (*KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) GetConfigurationTenantOk ¶

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

func (*KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) HasConfigurationTenant ¶

HasConfigurationTenant returns a boolean if a field has been set.

func (KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) MarshalJSON ¶

func (*KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) SetConfigurationTenant ¶

SetConfigurationTenant gets a reference to the given string and assigns it to the ConfigurationTenant field.

func (KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) ToMap ¶

func (*KeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) UnmarshalJSON ¶

type KeyfactorApiModelsEnrollmentEnrollmentManagementRequest ¶

type KeyfactorApiModelsEnrollmentEnrollmentManagementRequest struct {
	// The stores to add the certificate to. Values in this collection will take precedence over values in {Models.Enrollment.SpecificEnrollmentManagementRequest.StoreTypes}.
	Stores               []KeyfactorApiModelsEnrollmentManagementStoreRequest     `json:"Stores,omitempty"`
	StoreIds             []string                                                 `json:"StoreIds,omitempty"`
	StoreTypes           []KeyfactorApiModelsEnrollmentManagementStoreTypeRequest `json:"StoreTypes,omitempty"`
	CertificateId        *int32                                                   `json:"CertificateId,omitempty"`
	RequestId            *int32                                                   `json:"RequestId,omitempty"`
	Password             string                                                   `json:"Password"`
	JobTime              *time.Time                                               `json:"JobTime,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsEnrollmentEnrollmentManagementRequest struct for KeyfactorApiModelsEnrollmentEnrollmentManagementRequest

func NewKeyfactorApiModelsEnrollmentEnrollmentManagementRequest ¶

func NewKeyfactorApiModelsEnrollmentEnrollmentManagementRequest(password string) *KeyfactorApiModelsEnrollmentEnrollmentManagementRequest

NewKeyfactorApiModelsEnrollmentEnrollmentManagementRequest instantiates a new KeyfactorApiModelsEnrollmentEnrollmentManagementRequest 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 NewKeyfactorApiModelsEnrollmentEnrollmentManagementRequestWithDefaults ¶

func NewKeyfactorApiModelsEnrollmentEnrollmentManagementRequestWithDefaults() *KeyfactorApiModelsEnrollmentEnrollmentManagementRequest

NewKeyfactorApiModelsEnrollmentEnrollmentManagementRequestWithDefaults instantiates a new KeyfactorApiModelsEnrollmentEnrollmentManagementRequest 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 (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetCertificateId ¶

GetCertificateId returns the CertificateId field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetCertificateIdOk ¶

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

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetJobTime ¶

GetJobTime returns the JobTime field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetJobTimeOk ¶

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

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetPassword ¶

GetPassword returns the Password field value

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetPasswordOk ¶

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

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetRequestId ¶

GetRequestId returns the RequestId field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetRequestIdOk ¶

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

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetStoreIds ¶

GetStoreIds returns the StoreIds field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetStoreIdsOk ¶

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

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetStoreTypes ¶

GetStoreTypes returns the StoreTypes field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetStoreTypesOk ¶

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

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetStores ¶

GetStores returns the Stores field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) GetStoresOk ¶

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

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) HasCertificateId ¶

HasCertificateId returns a boolean if a field has been set.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) HasJobTime ¶

HasJobTime returns a boolean if a field has been set.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) HasRequestId ¶

HasRequestId returns a boolean if a field has been set.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) HasStoreIds ¶

HasStoreIds returns a boolean if a field has been set.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) HasStoreTypes ¶

HasStoreTypes returns a boolean if a field has been set.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) HasStores ¶

HasStores returns a boolean if a field has been set.

func (KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) MarshalJSON ¶

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) SetCertificateId ¶

SetCertificateId gets a reference to the given int32 and assigns it to the CertificateId field.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) SetJobTime ¶

SetJobTime gets a reference to the given time.Time and assigns it to the JobTime field.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) SetPassword ¶

SetPassword sets field value

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) SetRequestId ¶

SetRequestId gets a reference to the given int32 and assigns it to the RequestId field.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) SetStoreIds ¶

SetStoreIds gets a reference to the given []string and assigns it to the StoreIds field.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) SetStoreTypes ¶

SetStoreTypes gets a reference to the given []KeyfactorApiModelsEnrollmentManagementStoreTypeRequest and assigns it to the StoreTypes field.

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) SetStores ¶

SetStores gets a reference to the given []KeyfactorApiModelsEnrollmentManagementStoreRequest and assigns it to the Stores field.

func (KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) ToMap ¶

func (*KeyfactorApiModelsEnrollmentEnrollmentManagementRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsEnrollmentManagementStoreRequest ¶

type KeyfactorApiModelsEnrollmentManagementStoreRequest struct {
	StoreId              *string                           `json:"StoreId,omitempty"`
	Alias                *string                           `json:"Alias,omitempty"`
	Overwrite            *bool                             `json:"Overwrite,omitempty"`
	Properties           map[string]map[string]interface{} `json:"Properties,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsEnrollmentManagementStoreRequest struct for KeyfactorApiModelsEnrollmentManagementStoreRequest

func NewKeyfactorApiModelsEnrollmentManagementStoreRequest ¶

func NewKeyfactorApiModelsEnrollmentManagementStoreRequest() *KeyfactorApiModelsEnrollmentManagementStoreRequest

NewKeyfactorApiModelsEnrollmentManagementStoreRequest instantiates a new KeyfactorApiModelsEnrollmentManagementStoreRequest 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 NewKeyfactorApiModelsEnrollmentManagementStoreRequestWithDefaults ¶

func NewKeyfactorApiModelsEnrollmentManagementStoreRequestWithDefaults() *KeyfactorApiModelsEnrollmentManagementStoreRequest

NewKeyfactorApiModelsEnrollmentManagementStoreRequestWithDefaults instantiates a new KeyfactorApiModelsEnrollmentManagementStoreRequest 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 (*KeyfactorApiModelsEnrollmentManagementStoreRequest) GetAlias ¶

GetAlias returns the Alias field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) GetAliasOk ¶

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

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) GetOverwrite ¶

GetOverwrite returns the Overwrite field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) GetOverwriteOk ¶

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

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) GetProperties ¶

func (o *KeyfactorApiModelsEnrollmentManagementStoreRequest) GetProperties() map[string]map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) GetPropertiesOk ¶

func (o *KeyfactorApiModelsEnrollmentManagementStoreRequest) GetPropertiesOk() (map[string]map[string]interface{}, bool)

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

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) GetStoreId ¶

GetStoreId returns the StoreId field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) GetStoreIdOk ¶

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

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) HasAlias ¶

HasAlias returns a boolean if a field has been set.

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) HasOverwrite ¶

HasOverwrite returns a boolean if a field has been set.

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) HasProperties ¶

HasProperties returns a boolean if a field has been set.

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) HasStoreId ¶

HasStoreId returns a boolean if a field has been set.

func (KeyfactorApiModelsEnrollmentManagementStoreRequest) MarshalJSON ¶

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) SetAlias ¶

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) SetOverwrite ¶

SetOverwrite gets a reference to the given bool and assigns it to the Overwrite field.

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) SetProperties ¶

func (o *KeyfactorApiModelsEnrollmentManagementStoreRequest) SetProperties(v map[string]map[string]interface{})

SetProperties gets a reference to the given map[string]map[string]interface{} and assigns it to the Properties field.

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) SetStoreId ¶

SetStoreId gets a reference to the given string and assigns it to the StoreId field.

func (KeyfactorApiModelsEnrollmentManagementStoreRequest) ToMap ¶

func (*KeyfactorApiModelsEnrollmentManagementStoreRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsEnrollmentManagementStoreTypeRequest ¶

type KeyfactorApiModelsEnrollmentManagementStoreTypeRequest struct {
	StoreTypeId          *int32                   `json:"StoreTypeId,omitempty"`
	Alias                *string                  `json:"Alias,omitempty"`
	Overwrite            *bool                    `json:"Overwrite,omitempty"`
	Properties           []map[string]interface{} `json:"Properties,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsEnrollmentManagementStoreTypeRequest struct for KeyfactorApiModelsEnrollmentManagementStoreTypeRequest

func NewKeyfactorApiModelsEnrollmentManagementStoreTypeRequest ¶

func NewKeyfactorApiModelsEnrollmentManagementStoreTypeRequest() *KeyfactorApiModelsEnrollmentManagementStoreTypeRequest

NewKeyfactorApiModelsEnrollmentManagementStoreTypeRequest instantiates a new KeyfactorApiModelsEnrollmentManagementStoreTypeRequest 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 NewKeyfactorApiModelsEnrollmentManagementStoreTypeRequestWithDefaults ¶

func NewKeyfactorApiModelsEnrollmentManagementStoreTypeRequestWithDefaults() *KeyfactorApiModelsEnrollmentManagementStoreTypeRequest

NewKeyfactorApiModelsEnrollmentManagementStoreTypeRequestWithDefaults instantiates a new KeyfactorApiModelsEnrollmentManagementStoreTypeRequest 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 (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) GetAlias ¶

GetAlias returns the Alias field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) GetAliasOk ¶

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

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) GetOverwrite ¶

GetOverwrite returns the Overwrite field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) GetOverwriteOk ¶

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

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) GetProperties ¶

func (o *KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) GetProperties() []map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) GetPropertiesOk ¶

func (o *KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) GetPropertiesOk() ([]map[string]interface{}, bool)

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

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) GetStoreTypeId ¶

GetStoreTypeId returns the StoreTypeId field value if set, zero value otherwise.

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) GetStoreTypeIdOk ¶

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

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) HasAlias ¶

HasAlias returns a boolean if a field has been set.

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) HasOverwrite ¶

HasOverwrite returns a boolean if a field has been set.

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) HasProperties ¶

HasProperties returns a boolean if a field has been set.

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) HasStoreTypeId ¶

HasStoreTypeId returns a boolean if a field has been set.

func (KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) MarshalJSON ¶

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) SetAlias ¶

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) SetOverwrite ¶

SetOverwrite gets a reference to the given bool and assigns it to the Overwrite field.

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) SetProperties ¶

func (o *KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) SetProperties(v []map[string]interface{})

SetProperties gets a reference to the given []map[string]interface{} and assigns it to the Properties field.

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) SetStoreTypeId ¶

SetStoreTypeId gets a reference to the given int32 and assigns it to the StoreTypeId field.

func (KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) ToMap ¶

func (*KeyfactorApiModelsEnrollmentManagementStoreTypeRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsEventHandlerEventHandlerParameterRequest ¶

type KeyfactorApiModelsEventHandlerEventHandlerParameterRequest struct {
	Key                  string `json:"Key"`
	DefaultValue         string `json:"DefaultValue"`
	ParameterType        string `json:"ParameterType"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsEventHandlerEventHandlerParameterRequest struct for KeyfactorApiModelsEventHandlerEventHandlerParameterRequest

func NewKeyfactorApiModelsEventHandlerEventHandlerParameterRequest ¶

func NewKeyfactorApiModelsEventHandlerEventHandlerParameterRequest(key string, defaultValue string, parameterType string) *KeyfactorApiModelsEventHandlerEventHandlerParameterRequest

NewKeyfactorApiModelsEventHandlerEventHandlerParameterRequest instantiates a new KeyfactorApiModelsEventHandlerEventHandlerParameterRequest 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 NewKeyfactorApiModelsEventHandlerEventHandlerParameterRequestWithDefaults ¶

func NewKeyfactorApiModelsEventHandlerEventHandlerParameterRequestWithDefaults() *KeyfactorApiModelsEventHandlerEventHandlerParameterRequest

NewKeyfactorApiModelsEventHandlerEventHandlerParameterRequestWithDefaults instantiates a new KeyfactorApiModelsEventHandlerEventHandlerParameterRequest 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 (*KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) GetDefaultValue ¶

GetDefaultValue returns the DefaultValue field value

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) GetDefaultValueOk ¶

GetDefaultValueOk returns a tuple with the DefaultValue field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) GetKey ¶

GetKey returns the Key field value

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) GetKeyOk ¶

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) GetParameterType ¶

GetParameterType returns the ParameterType field value

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) GetParameterTypeOk ¶

GetParameterTypeOk returns a tuple with the ParameterType field value and a boolean to check if the value has been set.

func (KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) MarshalJSON ¶

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) SetDefaultValue ¶

SetDefaultValue sets field value

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) SetKey ¶

SetKey sets field value

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) SetParameterType ¶

SetParameterType sets field value

func (KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) ToMap ¶

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterRequest) UnmarshalJSON ¶

type KeyfactorApiModelsEventHandlerEventHandlerParameterResponse ¶

type KeyfactorApiModelsEventHandlerEventHandlerParameterResponse struct {
	Id                   *int32  `json:"Id,omitempty"`
	Key                  *string `json:"Key,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	ParameterType        *string `json:"ParameterType,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsEventHandlerEventHandlerParameterResponse struct for KeyfactorApiModelsEventHandlerEventHandlerParameterResponse

func NewKeyfactorApiModelsEventHandlerEventHandlerParameterResponse ¶

func NewKeyfactorApiModelsEventHandlerEventHandlerParameterResponse() *KeyfactorApiModelsEventHandlerEventHandlerParameterResponse

NewKeyfactorApiModelsEventHandlerEventHandlerParameterResponse instantiates a new KeyfactorApiModelsEventHandlerEventHandlerParameterResponse 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 NewKeyfactorApiModelsEventHandlerEventHandlerParameterResponseWithDefaults ¶

func NewKeyfactorApiModelsEventHandlerEventHandlerParameterResponseWithDefaults() *KeyfactorApiModelsEventHandlerEventHandlerParameterResponse

NewKeyfactorApiModelsEventHandlerEventHandlerParameterResponseWithDefaults instantiates a new KeyfactorApiModelsEventHandlerEventHandlerParameterResponse 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 (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) GetDefaultValue ¶

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) GetDefaultValueOk ¶

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

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) GetId ¶

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

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) GetIdOk ¶

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 (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) GetKey ¶

GetKey returns the Key field value if set, zero value otherwise.

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) GetKeyOk ¶

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

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) GetParameterType ¶

GetParameterType returns the ParameterType field value if set, zero value otherwise.

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) GetParameterTypeOk ¶

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

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) HasDefaultValue ¶

HasDefaultValue returns a boolean if a field has been set.

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) HasKey ¶

HasKey returns a boolean if a field has been set.

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) HasParameterType ¶

HasParameterType returns a boolean if a field has been set.

func (KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) MarshalJSON ¶

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) SetDefaultValue ¶

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) SetId ¶

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

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) SetKey ¶

SetKey gets a reference to the given string and assigns it to the Key field.

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) SetParameterType ¶

SetParameterType gets a reference to the given string and assigns it to the ParameterType field.

func (KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) ToMap ¶

func (*KeyfactorApiModelsEventHandlerEventHandlerParameterResponse) UnmarshalJSON ¶

type KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest ¶

type KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest struct {
	Id                   int32 `json:"Id"`
	UseHandler           bool  `json:"UseHandler"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest struct for KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest

func NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest ¶

func NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest(id int32, useHandler bool) *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest

NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest instantiates a new KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest 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 NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequestWithDefaults ¶

func NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequestWithDefaults() *KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest

NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequestWithDefaults instantiates a new KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest 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 (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) GetId ¶

GetId returns the Id field value

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) GetIdOk ¶

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

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) GetUseHandler ¶

GetUseHandler returns the UseHandler field value

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) GetUseHandlerOk ¶

GetUseHandlerOk returns a tuple with the UseHandler field value and a boolean to check if the value has been set.

func (KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) MarshalJSON ¶

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) SetId ¶

SetId sets field value

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) SetUseHandler ¶

SetUseHandler sets field value

func (KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) ToMap ¶

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) UnmarshalJSON ¶

type KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse ¶

type KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse struct {
	Id                   *int32  `json:"Id,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	UseHandler           *bool   `json:"UseHandler,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse struct for KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse

func NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse ¶

func NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse() *KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse

NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse instantiates a new KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse 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 NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponseWithDefaults ¶

func NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponseWithDefaults() *KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse

NewKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponseWithDefaults instantiates a new KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse 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 (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) GetDisplayNameOk ¶

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

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) GetId ¶

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

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) GetIdOk ¶

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 (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) GetUseHandler ¶

GetUseHandler returns the UseHandler field value if set, zero value otherwise.

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) GetUseHandlerOk ¶

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

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) HasUseHandler ¶

HasUseHandler returns a boolean if a field has been set.

func (KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) MarshalJSON ¶

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) SetId ¶

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

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) SetUseHandler ¶

SetUseHandler gets a reference to the given bool and assigns it to the UseHandler field.

func (KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) ToMap ¶

func (*KeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) UnmarshalJSON ¶

type KeyfactorApiModelsLicenseLicenseResponse ¶

type KeyfactorApiModelsLicenseLicenseResponse struct {
	KeyfactorVersion     *string                                          `json:"KeyfactorVersion,omitempty"`
	LicenseData          *KeyfactorApiModelsLicenseLicenseResponseLicense `json:"LicenseData,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsLicenseLicenseResponse struct for KeyfactorApiModelsLicenseLicenseResponse

func NewKeyfactorApiModelsLicenseLicenseResponse ¶

func NewKeyfactorApiModelsLicenseLicenseResponse() *KeyfactorApiModelsLicenseLicenseResponse

NewKeyfactorApiModelsLicenseLicenseResponse instantiates a new KeyfactorApiModelsLicenseLicenseResponse 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 NewKeyfactorApiModelsLicenseLicenseResponseWithDefaults ¶

func NewKeyfactorApiModelsLicenseLicenseResponseWithDefaults() *KeyfactorApiModelsLicenseLicenseResponse

NewKeyfactorApiModelsLicenseLicenseResponseWithDefaults instantiates a new KeyfactorApiModelsLicenseLicenseResponse 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 (*KeyfactorApiModelsLicenseLicenseResponse) GetKeyfactorVersion ¶

func (o *KeyfactorApiModelsLicenseLicenseResponse) GetKeyfactorVersion() string

GetKeyfactorVersion returns the KeyfactorVersion field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponse) GetKeyfactorVersionOk ¶

func (o *KeyfactorApiModelsLicenseLicenseResponse) GetKeyfactorVersionOk() (*string, bool)

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

func (*KeyfactorApiModelsLicenseLicenseResponse) GetLicenseData ¶

GetLicenseData returns the LicenseData field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponse) GetLicenseDataOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponse) HasKeyfactorVersion ¶

func (o *KeyfactorApiModelsLicenseLicenseResponse) HasKeyfactorVersion() bool

HasKeyfactorVersion returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponse) HasLicenseData ¶

func (o *KeyfactorApiModelsLicenseLicenseResponse) HasLicenseData() bool

HasLicenseData returns a boolean if a field has been set.

func (KeyfactorApiModelsLicenseLicenseResponse) MarshalJSON ¶

func (*KeyfactorApiModelsLicenseLicenseResponse) SetKeyfactorVersion ¶

func (o *KeyfactorApiModelsLicenseLicenseResponse) SetKeyfactorVersion(v string)

SetKeyfactorVersion gets a reference to the given string and assigns it to the KeyfactorVersion field.

func (*KeyfactorApiModelsLicenseLicenseResponse) SetLicenseData ¶

SetLicenseData gets a reference to the given KeyfactorApiModelsLicenseLicenseResponseLicense and assigns it to the LicenseData field.

func (KeyfactorApiModelsLicenseLicenseResponse) ToMap ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsLicenseLicenseResponseLicense ¶

type KeyfactorApiModelsLicenseLicenseResponseLicense struct {
	LicenseId            *string                                                   `json:"LicenseId,omitempty"`
	Customer             *KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer `json:"Customer,omitempty"`
	IssuedDate           *time.Time                                                `json:"IssuedDate,omitempty"`
	ExpirationDate       *time.Time                                                `json:"ExpirationDate,omitempty"`
	LicensedProducts     []KeyfactorApiModelsLicenseLicenseResponseLicensedProduct `json:"LicensedProducts,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsLicenseLicenseResponseLicense struct for KeyfactorApiModelsLicenseLicenseResponseLicense

func NewKeyfactorApiModelsLicenseLicenseResponseLicense ¶

func NewKeyfactorApiModelsLicenseLicenseResponseLicense() *KeyfactorApiModelsLicenseLicenseResponseLicense

NewKeyfactorApiModelsLicenseLicenseResponseLicense instantiates a new KeyfactorApiModelsLicenseLicenseResponseLicense 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 NewKeyfactorApiModelsLicenseLicenseResponseLicenseWithDefaults ¶

func NewKeyfactorApiModelsLicenseLicenseResponseLicenseWithDefaults() *KeyfactorApiModelsLicenseLicenseResponseLicense

NewKeyfactorApiModelsLicenseLicenseResponseLicenseWithDefaults instantiates a new KeyfactorApiModelsLicenseLicenseResponseLicense 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 (*KeyfactorApiModelsLicenseLicenseResponseLicense) GetCustomer ¶

GetCustomer returns the Customer field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) GetCustomerOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) GetExpirationDate ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) GetExpirationDateOk ¶

func (o *KeyfactorApiModelsLicenseLicenseResponseLicense) 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 (*KeyfactorApiModelsLicenseLicenseResponseLicense) GetIssuedDate ¶

GetIssuedDate returns the IssuedDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) GetIssuedDateOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) GetLicenseId ¶

GetLicenseId returns the LicenseId field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) GetLicenseIdOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) GetLicensedProducts ¶

GetLicensedProducts returns the LicensedProducts field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) GetLicensedProductsOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) HasCustomer ¶

HasCustomer returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) HasExpirationDate ¶

HasExpirationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) HasIssuedDate ¶

HasIssuedDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) HasLicenseId ¶

HasLicenseId returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) HasLicensedProducts ¶

func (o *KeyfactorApiModelsLicenseLicenseResponseLicense) HasLicensedProducts() bool

HasLicensedProducts returns a boolean if a field has been set.

func (KeyfactorApiModelsLicenseLicenseResponseLicense) MarshalJSON ¶

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) SetCustomer ¶

SetCustomer gets a reference to the given KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer and assigns it to the Customer field.

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) SetExpirationDate ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) SetIssuedDate ¶

SetIssuedDate gets a reference to the given time.Time and assigns it to the IssuedDate field.

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) SetLicenseId ¶

SetLicenseId gets a reference to the given string and assigns it to the LicenseId field.

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) SetLicensedProducts ¶

SetLicensedProducts gets a reference to the given []KeyfactorApiModelsLicenseLicenseResponseLicensedProduct and assigns it to the LicensedProducts field.

func (KeyfactorApiModelsLicenseLicenseResponseLicense) ToMap ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicense) UnmarshalJSON ¶

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

type KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer ¶

type KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer struct {
	Name                 *string `json:"Name,omitempty"`
	Id                   *string `json:"Id,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer struct for KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer

func NewKeyfactorApiModelsLicenseLicenseResponseLicensedCustomer ¶

func NewKeyfactorApiModelsLicenseLicenseResponseLicensedCustomer() *KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer

NewKeyfactorApiModelsLicenseLicenseResponseLicensedCustomer instantiates a new KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer 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 NewKeyfactorApiModelsLicenseLicenseResponseLicensedCustomerWithDefaults ¶

func NewKeyfactorApiModelsLicenseLicenseResponseLicensedCustomerWithDefaults() *KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer

NewKeyfactorApiModelsLicenseLicenseResponseLicensedCustomerWithDefaults instantiates a new KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer 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 (*KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) GetId ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) GetIdOk ¶

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 (*KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) GetName ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) 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 (*KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) HasName ¶

HasName returns a boolean if a field has been set.

func (KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) MarshalJSON ¶

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) SetId ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) SetName ¶

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

func (KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) ToMap ¶

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) UnmarshalJSON ¶

type KeyfactorApiModelsLicenseLicenseResponseLicensedFeature ¶

type KeyfactorApiModelsLicenseLicenseResponseLicensedFeature struct {
	FeatureID            *string    `json:"FeatureID,omitempty"`
	DisplayName          *string    `json:"DisplayName,omitempty"`
	Enabled              *bool      `json:"Enabled,omitempty"`
	Quantity             *int32     `json:"Quantity,omitempty"`
	ExpirationDate       *time.Time `json:"ExpirationDate,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsLicenseLicenseResponseLicensedFeature struct for KeyfactorApiModelsLicenseLicenseResponseLicensedFeature

func NewKeyfactorApiModelsLicenseLicenseResponseLicensedFeature ¶

func NewKeyfactorApiModelsLicenseLicenseResponseLicensedFeature() *KeyfactorApiModelsLicenseLicenseResponseLicensedFeature

NewKeyfactorApiModelsLicenseLicenseResponseLicensedFeature instantiates a new KeyfactorApiModelsLicenseLicenseResponseLicensedFeature 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 NewKeyfactorApiModelsLicenseLicenseResponseLicensedFeatureWithDefaults ¶

func NewKeyfactorApiModelsLicenseLicenseResponseLicensedFeatureWithDefaults() *KeyfactorApiModelsLicenseLicenseResponseLicensedFeature

NewKeyfactorApiModelsLicenseLicenseResponseLicensedFeatureWithDefaults instantiates a new KeyfactorApiModelsLicenseLicenseResponseLicensedFeature 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 (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) GetDisplayNameOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) GetEnabledOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) GetExpirationDate ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) GetExpirationDateOk ¶

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 (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) GetFeatureID ¶

GetFeatureID returns the FeatureID field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) GetFeatureIDOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) GetQuantity ¶

GetQuantity returns the Quantity field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) GetQuantityOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) HasExpirationDate ¶

HasExpirationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) HasFeatureID ¶

HasFeatureID returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) HasQuantity ¶

HasQuantity returns a boolean if a field has been set.

func (KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) MarshalJSON ¶

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) SetExpirationDate ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) SetFeatureID ¶

SetFeatureID gets a reference to the given string and assigns it to the FeatureID field.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) SetQuantity ¶

SetQuantity gets a reference to the given int32 and assigns it to the Quantity field.

func (KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) ToMap ¶

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedFeature) UnmarshalJSON ¶

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

type KeyfactorApiModelsLicenseLicenseResponseLicensedProduct ¶

type KeyfactorApiModelsLicenseLicenseResponseLicensedProduct struct {
	ProductId            *string                                                   `json:"ProductId,omitempty"`
	DisplayName          *string                                                   `json:"DisplayName,omitempty"`
	MajorRev             *string                                                   `json:"MajorRev,omitempty"`
	MinorRev             *string                                                   `json:"MinorRev,omitempty"`
	LicensedFeatures     []KeyfactorApiModelsLicenseLicenseResponseLicensedFeature `json:"LicensedFeatures,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsLicenseLicenseResponseLicensedProduct struct for KeyfactorApiModelsLicenseLicenseResponseLicensedProduct

func NewKeyfactorApiModelsLicenseLicenseResponseLicensedProduct ¶

func NewKeyfactorApiModelsLicenseLicenseResponseLicensedProduct() *KeyfactorApiModelsLicenseLicenseResponseLicensedProduct

NewKeyfactorApiModelsLicenseLicenseResponseLicensedProduct instantiates a new KeyfactorApiModelsLicenseLicenseResponseLicensedProduct 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 NewKeyfactorApiModelsLicenseLicenseResponseLicensedProductWithDefaults ¶

func NewKeyfactorApiModelsLicenseLicenseResponseLicensedProductWithDefaults() *KeyfactorApiModelsLicenseLicenseResponseLicensedProduct

NewKeyfactorApiModelsLicenseLicenseResponseLicensedProductWithDefaults instantiates a new KeyfactorApiModelsLicenseLicenseResponseLicensedProduct 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 (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) GetDisplayNameOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) GetLicensedFeatures ¶

GetLicensedFeatures returns the LicensedFeatures field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) GetLicensedFeaturesOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) GetMajorRev ¶

GetMajorRev returns the MajorRev field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) GetMajorRevOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) GetMinorRev ¶

GetMinorRev returns the MinorRev field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) GetMinorRevOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) GetProductId ¶

GetProductId returns the ProductId field value if set, zero value otherwise.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) GetProductIdOk ¶

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

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) HasLicensedFeatures ¶

HasLicensedFeatures returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) HasMajorRev ¶

HasMajorRev returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) HasMinorRev ¶

HasMinorRev returns a boolean if a field has been set.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) HasProductId ¶

HasProductId returns a boolean if a field has been set.

func (KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) MarshalJSON ¶

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) SetLicensedFeatures ¶

SetLicensedFeatures gets a reference to the given []KeyfactorApiModelsLicenseLicenseResponseLicensedFeature and assigns it to the LicensedFeatures field.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) SetMajorRev ¶

SetMajorRev gets a reference to the given string and assigns it to the MajorRev field.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) SetMinorRev ¶

SetMinorRev gets a reference to the given string and assigns it to the MinorRev field.

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) SetProductId ¶

SetProductId gets a reference to the given string and assigns it to the ProductId field.

func (KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) ToMap ¶

func (*KeyfactorApiModelsLicenseLicenseResponseLicensedProduct) UnmarshalJSON ¶

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

type KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel ¶

type KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel struct {
	Id                   *int32  `json:"Id,omitempty"`
	Enabled              *bool   `json:"Enabled,omitempty"`
	Interval             *int32  `json:"Interval,omitempty"`
	UseMetadata          *bool   `json:"UseMetadata,omitempty"`
	MetadataField        *string `json:"MetadataField,omitempty"`
	MetadataValue        *string `json:"MetadataValue,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel struct for KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel

func NewKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel ¶

func NewKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel() *KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel

NewKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel instantiates a new KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel 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 NewKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModelWithDefaults ¶

func NewKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModelWithDefaults() *KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel

NewKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModelWithDefaults instantiates a new KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel 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 (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetEnabledOk ¶

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

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetId ¶

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

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetIdOk ¶

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 (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetInterval ¶

GetInterval returns the Interval field value if set, zero value otherwise.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetIntervalOk ¶

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

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetMetadataField ¶

GetMetadataField returns the MetadataField field value if set, zero value otherwise.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetMetadataFieldOk ¶

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

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetMetadataValue ¶

GetMetadataValue returns the MetadataValue field value if set, zero value otherwise.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetMetadataValueOk ¶

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

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetUseMetadata ¶

GetUseMetadata returns the UseMetadata field value if set, zero value otherwise.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) GetUseMetadataOk ¶

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

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) HasInterval ¶

HasInterval returns a boolean if a field has been set.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) HasMetadataField ¶

HasMetadataField returns a boolean if a field has been set.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) HasMetadataValue ¶

HasMetadataValue returns a boolean if a field has been set.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) HasUseMetadata ¶

HasUseMetadata returns a boolean if a field has been set.

func (KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) MarshalJSON ¶

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) SetId ¶

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

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) SetInterval ¶

SetInterval gets a reference to the given int32 and assigns it to the Interval field.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) SetMetadataField ¶

SetMetadataField gets a reference to the given string and assigns it to the MetadataField field.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) SetMetadataValue ¶

SetMetadataValue gets a reference to the given string and assigns it to the MetadataValue field.

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) SetUseMetadata ¶

SetUseMetadata gets a reference to the given bool and assigns it to the UseMetadata field.

func (KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) ToMap ¶

func (*KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) UnmarshalJSON ¶

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

type KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest ¶

type KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest struct {
	Name                 string  `json:"Name"`
	Description          string  `json:"Description"`
	DataType             int32   `json:"DataType"`
	Hint                 *string `json:"Hint,omitempty"`
	Validation           *string `json:"Validation,omitempty"`
	Enrollment           *int32  `json:"Enrollment,omitempty"`
	Message              *string `json:"Message,omitempty"`
	Options              *string `json:"Options,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	DisplayOrder         *int32  `json:"DisplayOrder,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest struct for KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest

func NewKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest ¶

func NewKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest(name string, description string, dataType int32) *KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest

NewKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest instantiates a new KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest 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 NewKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequestWithDefaults ¶

func NewKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequestWithDefaults() *KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest

NewKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequestWithDefaults instantiates a new KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest 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 (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetDataType ¶

GetDataType returns the DataType field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetDataTypeOk ¶

GetDataTypeOk returns a tuple with the DataType field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetDefaultValue ¶

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetDefaultValueOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetDescription ¶

GetDescription returns the Description field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetDescriptionOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetDisplayOrder ¶

GetDisplayOrder returns the DisplayOrder field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetDisplayOrderOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetEnrollment ¶

GetEnrollment returns the Enrollment field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetEnrollmentOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetHint ¶

GetHint returns the Hint field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetHintOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetMessageOk ¶

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 (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetNameOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetOptions ¶

GetOptions returns the Options field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetOptionsOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetValidation ¶

GetValidation returns the Validation field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) GetValidationOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) HasDefaultValue ¶

HasDefaultValue returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) HasDisplayOrder ¶

HasDisplayOrder returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) HasEnrollment ¶

HasEnrollment returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) HasHint ¶

HasHint returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) HasOptions ¶

HasOptions returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) HasValidation ¶

HasValidation returns a boolean if a field has been set.

func (KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) SetDataType ¶

SetDataType sets field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) SetDefaultValue ¶

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) SetDescription ¶

SetDescription sets field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) SetDisplayOrder ¶

SetDisplayOrder gets a reference to the given int32 and assigns it to the DisplayOrder field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) SetEnrollment ¶

SetEnrollment gets a reference to the given int32 and assigns it to the Enrollment field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) SetHint ¶

SetHint gets a reference to the given string and assigns it to the Hint field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) SetOptions ¶

SetOptions gets a reference to the given string and assigns it to the Options field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) SetValidation ¶

SetValidation gets a reference to the given string and assigns it to the Validation field.

func (KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) ToMap ¶

func (*KeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) UnmarshalJSON ¶

type KeyfactorApiModelsMetadataFieldMetadataFieldResponse ¶

type KeyfactorApiModelsMetadataFieldMetadataFieldResponse struct {
	Id                   *int32  `json:"Id,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	Description          *string `json:"Description,omitempty"`
	DataType             *int32  `json:"DataType,omitempty"`
	Hint                 *string `json:"Hint,omitempty"`
	Validation           *string `json:"Validation,omitempty"`
	Enrollment           *int32  `json:"Enrollment,omitempty"`
	Message              *string `json:"Message,omitempty"`
	Options              *string `json:"Options,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	DisplayOrder         *int32  `json:"DisplayOrder,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMetadataFieldMetadataFieldResponse struct for KeyfactorApiModelsMetadataFieldMetadataFieldResponse

func NewKeyfactorApiModelsMetadataFieldMetadataFieldResponse ¶

func NewKeyfactorApiModelsMetadataFieldMetadataFieldResponse() *KeyfactorApiModelsMetadataFieldMetadataFieldResponse

NewKeyfactorApiModelsMetadataFieldMetadataFieldResponse instantiates a new KeyfactorApiModelsMetadataFieldMetadataFieldResponse 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 NewKeyfactorApiModelsMetadataFieldMetadataFieldResponseWithDefaults ¶

func NewKeyfactorApiModelsMetadataFieldMetadataFieldResponseWithDefaults() *KeyfactorApiModelsMetadataFieldMetadataFieldResponse

NewKeyfactorApiModelsMetadataFieldMetadataFieldResponseWithDefaults instantiates a new KeyfactorApiModelsMetadataFieldMetadataFieldResponse 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 (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetDataType ¶

GetDataType returns the DataType field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetDataTypeOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetDefaultValue ¶

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetDefaultValueOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetDescription ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetDescriptionOk ¶

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 (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetDisplayOrder ¶

GetDisplayOrder returns the DisplayOrder field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetDisplayOrderOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetEnrollment ¶

GetEnrollment returns the Enrollment field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetEnrollmentOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetHint ¶

GetHint returns the Hint field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetHintOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetId ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetIdOk ¶

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 (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetMessageOk ¶

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 (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetName ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) 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 (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetOptions ¶

GetOptions returns the Options field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetOptionsOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetValidation ¶

GetValidation returns the Validation field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) GetValidationOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) HasDataType ¶

HasDataType returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) HasDefaultValue ¶

HasDefaultValue returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) HasDisplayOrder ¶

HasDisplayOrder returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) HasEnrollment ¶

HasEnrollment returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) HasHint ¶

HasHint returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) HasOptions ¶

HasOptions returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) HasValidation ¶

HasValidation returns a boolean if a field has been set.

func (KeyfactorApiModelsMetadataFieldMetadataFieldResponse) MarshalJSON ¶

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) SetDataType ¶

SetDataType gets a reference to the given int32 and assigns it to the DataType field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) SetDefaultValue ¶

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) SetDescription ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) SetDisplayOrder ¶

SetDisplayOrder gets a reference to the given int32 and assigns it to the DisplayOrder field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) SetEnrollment ¶

SetEnrollment gets a reference to the given int32 and assigns it to the Enrollment field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) SetHint ¶

SetHint gets a reference to the given string and assigns it to the Hint field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) SetId ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) SetName ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) SetOptions ¶

SetOptions gets a reference to the given string and assigns it to the Options field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) SetValidation ¶

SetValidation gets a reference to the given string and assigns it to the Validation field.

func (KeyfactorApiModelsMetadataFieldMetadataFieldResponse) ToMap ¶

func (*KeyfactorApiModelsMetadataFieldMetadataFieldResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest ¶

type KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest struct {
	Id                   int32   `json:"Id"`
	Name                 string  `json:"Name"`
	Description          string  `json:"Description"`
	DataType             int32   `json:"DataType"`
	Hint                 *string `json:"Hint,omitempty"`
	Validation           *string `json:"Validation,omitempty"`
	Enrollment           *int32  `json:"Enrollment,omitempty"`
	Message              *string `json:"Message,omitempty"`
	Options              *string `json:"Options,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	DisplayOrder         *int32  `json:"DisplayOrder,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest struct for KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest

func NewKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest ¶

func NewKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest(id int32, name string, description string, dataType int32) *KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest

NewKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest instantiates a new KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest 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 NewKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequestWithDefaults ¶

func NewKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequestWithDefaults() *KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest

NewKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequestWithDefaults instantiates a new KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest 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 (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetDataType ¶

GetDataType returns the DataType field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetDataTypeOk ¶

GetDataTypeOk returns a tuple with the DataType field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetDefaultValue ¶

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetDefaultValueOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetDescription ¶

GetDescription returns the Description field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetDescriptionOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetDisplayOrder ¶

GetDisplayOrder returns the DisplayOrder field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetDisplayOrderOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetEnrollment ¶

GetEnrollment returns the Enrollment field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetEnrollmentOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetHint ¶

GetHint returns the Hint field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetHintOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetId ¶

GetId returns the Id field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetIdOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetMessageOk ¶

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 (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetNameOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetOptions ¶

GetOptions returns the Options field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetOptionsOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetValidation ¶

GetValidation returns the Validation field value if set, zero value otherwise.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) GetValidationOk ¶

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

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) HasDefaultValue ¶

HasDefaultValue returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) HasDisplayOrder ¶

HasDisplayOrder returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) HasEnrollment ¶

HasEnrollment returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) HasHint ¶

HasHint returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) HasOptions ¶

HasOptions returns a boolean if a field has been set.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) HasValidation ¶

HasValidation returns a boolean if a field has been set.

func (KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) SetDataType ¶

SetDataType sets field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) SetDefaultValue ¶

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) SetDescription ¶

SetDescription sets field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) SetDisplayOrder ¶

SetDisplayOrder gets a reference to the given int32 and assigns it to the DisplayOrder field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) SetEnrollment ¶

SetEnrollment gets a reference to the given int32 and assigns it to the Enrollment field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) SetHint ¶

SetHint gets a reference to the given string and assigns it to the Hint field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) SetId ¶

SetId sets field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) SetOptions ¶

SetOptions gets a reference to the given string and assigns it to the Options field.

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) SetValidation ¶

SetValidation gets a reference to the given string and assigns it to the Validation field.

func (KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) ToMap ¶

func (*KeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) UnmarshalJSON ¶

type KeyfactorApiModelsMonitoringDashboardRequest ¶

type KeyfactorApiModelsMonitoringDashboardRequest struct {
	Show                 bool   `json:"Show"`
	WarningHours         *int32 `json:"WarningHours,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMonitoringDashboardRequest struct for KeyfactorApiModelsMonitoringDashboardRequest

func NewKeyfactorApiModelsMonitoringDashboardRequest ¶

func NewKeyfactorApiModelsMonitoringDashboardRequest(show bool) *KeyfactorApiModelsMonitoringDashboardRequest

NewKeyfactorApiModelsMonitoringDashboardRequest instantiates a new KeyfactorApiModelsMonitoringDashboardRequest 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 NewKeyfactorApiModelsMonitoringDashboardRequestWithDefaults ¶

func NewKeyfactorApiModelsMonitoringDashboardRequestWithDefaults() *KeyfactorApiModelsMonitoringDashboardRequest

NewKeyfactorApiModelsMonitoringDashboardRequestWithDefaults instantiates a new KeyfactorApiModelsMonitoringDashboardRequest 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 (*KeyfactorApiModelsMonitoringDashboardRequest) GetShow ¶

GetShow returns the Show field value

func (*KeyfactorApiModelsMonitoringDashboardRequest) GetShowOk ¶

GetShowOk returns a tuple with the Show field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsMonitoringDashboardRequest) GetWarningHours ¶

GetWarningHours returns the WarningHours field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringDashboardRequest) GetWarningHoursOk ¶

func (o *KeyfactorApiModelsMonitoringDashboardRequest) GetWarningHoursOk() (*int32, bool)

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

func (*KeyfactorApiModelsMonitoringDashboardRequest) HasWarningHours ¶

HasWarningHours returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringDashboardRequest) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringDashboardRequest) SetShow ¶

SetShow sets field value

func (*KeyfactorApiModelsMonitoringDashboardRequest) SetWarningHours ¶

SetWarningHours gets a reference to the given int32 and assigns it to the WarningHours field.

func (KeyfactorApiModelsMonitoringDashboardRequest) ToMap ¶

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

func (*KeyfactorApiModelsMonitoringDashboardRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsMonitoringDashboardResponse ¶

type KeyfactorApiModelsMonitoringDashboardResponse struct {
	Show                 *bool  `json:"Show,omitempty"`
	WarningHours         *int32 `json:"WarningHours,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMonitoringDashboardResponse struct for KeyfactorApiModelsMonitoringDashboardResponse

func NewKeyfactorApiModelsMonitoringDashboardResponse ¶

func NewKeyfactorApiModelsMonitoringDashboardResponse() *KeyfactorApiModelsMonitoringDashboardResponse

NewKeyfactorApiModelsMonitoringDashboardResponse instantiates a new KeyfactorApiModelsMonitoringDashboardResponse 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 NewKeyfactorApiModelsMonitoringDashboardResponseWithDefaults ¶

func NewKeyfactorApiModelsMonitoringDashboardResponseWithDefaults() *KeyfactorApiModelsMonitoringDashboardResponse

NewKeyfactorApiModelsMonitoringDashboardResponseWithDefaults instantiates a new KeyfactorApiModelsMonitoringDashboardResponse 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 (*KeyfactorApiModelsMonitoringDashboardResponse) GetShow ¶

GetShow returns the Show field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringDashboardResponse) GetShowOk ¶

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

func (*KeyfactorApiModelsMonitoringDashboardResponse) GetWarningHours ¶

GetWarningHours returns the WarningHours field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringDashboardResponse) GetWarningHoursOk ¶

func (o *KeyfactorApiModelsMonitoringDashboardResponse) GetWarningHoursOk() (*int32, bool)

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

func (*KeyfactorApiModelsMonitoringDashboardResponse) HasShow ¶

HasShow returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringDashboardResponse) HasWarningHours ¶

HasWarningHours returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringDashboardResponse) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringDashboardResponse) SetShow ¶

SetShow gets a reference to the given bool and assigns it to the Show field.

func (*KeyfactorApiModelsMonitoringDashboardResponse) SetWarningHours ¶

SetWarningHours gets a reference to the given int32 and assigns it to the WarningHours field.

func (KeyfactorApiModelsMonitoringDashboardResponse) ToMap ¶

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

func (*KeyfactorApiModelsMonitoringDashboardResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsMonitoringEmailRequest ¶

type KeyfactorApiModelsMonitoringEmailRequest struct {
	EnableReminder       *bool    `json:"EnableReminder,omitempty"`
	WarningDays          *int32   `json:"WarningDays,omitempty"`
	Recipients           []string `json:"Recipients,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMonitoringEmailRequest struct for KeyfactorApiModelsMonitoringEmailRequest

func NewKeyfactorApiModelsMonitoringEmailRequest ¶

func NewKeyfactorApiModelsMonitoringEmailRequest() *KeyfactorApiModelsMonitoringEmailRequest

NewKeyfactorApiModelsMonitoringEmailRequest instantiates a new KeyfactorApiModelsMonitoringEmailRequest 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 NewKeyfactorApiModelsMonitoringEmailRequestWithDefaults ¶

func NewKeyfactorApiModelsMonitoringEmailRequestWithDefaults() *KeyfactorApiModelsMonitoringEmailRequest

NewKeyfactorApiModelsMonitoringEmailRequestWithDefaults instantiates a new KeyfactorApiModelsMonitoringEmailRequest 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 (*KeyfactorApiModelsMonitoringEmailRequest) GetEnableReminder ¶

func (o *KeyfactorApiModelsMonitoringEmailRequest) GetEnableReminder() bool

GetEnableReminder returns the EnableReminder field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringEmailRequest) GetEnableReminderOk ¶

func (o *KeyfactorApiModelsMonitoringEmailRequest) GetEnableReminderOk() (*bool, bool)

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

func (*KeyfactorApiModelsMonitoringEmailRequest) GetRecipients ¶

func (o *KeyfactorApiModelsMonitoringEmailRequest) GetRecipients() []string

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringEmailRequest) GetRecipientsOk ¶

func (o *KeyfactorApiModelsMonitoringEmailRequest) GetRecipientsOk() ([]string, bool)

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

func (*KeyfactorApiModelsMonitoringEmailRequest) GetWarningDays ¶

func (o *KeyfactorApiModelsMonitoringEmailRequest) GetWarningDays() int32

GetWarningDays returns the WarningDays field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringEmailRequest) GetWarningDaysOk ¶

func (o *KeyfactorApiModelsMonitoringEmailRequest) GetWarningDaysOk() (*int32, bool)

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

func (*KeyfactorApiModelsMonitoringEmailRequest) HasEnableReminder ¶

func (o *KeyfactorApiModelsMonitoringEmailRequest) HasEnableReminder() bool

HasEnableReminder returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringEmailRequest) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringEmailRequest) HasWarningDays ¶

func (o *KeyfactorApiModelsMonitoringEmailRequest) HasWarningDays() bool

HasWarningDays returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringEmailRequest) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringEmailRequest) SetEnableReminder ¶

func (o *KeyfactorApiModelsMonitoringEmailRequest) SetEnableReminder(v bool)

SetEnableReminder gets a reference to the given bool and assigns it to the EnableReminder field.

func (*KeyfactorApiModelsMonitoringEmailRequest) SetRecipients ¶

func (o *KeyfactorApiModelsMonitoringEmailRequest) SetRecipients(v []string)

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsMonitoringEmailRequest) SetWarningDays ¶

func (o *KeyfactorApiModelsMonitoringEmailRequest) SetWarningDays(v int32)

SetWarningDays gets a reference to the given int32 and assigns it to the WarningDays field.

func (KeyfactorApiModelsMonitoringEmailRequest) ToMap ¶

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

func (*KeyfactorApiModelsMonitoringEmailRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsMonitoringEmailResponse ¶

type KeyfactorApiModelsMonitoringEmailResponse struct {
	EnableReminder       *bool    `json:"EnableReminder,omitempty"`
	WarningDays          *int32   `json:"WarningDays,omitempty"`
	Recipients           []string `json:"Recipients,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMonitoringEmailResponse struct for KeyfactorApiModelsMonitoringEmailResponse

func NewKeyfactorApiModelsMonitoringEmailResponse ¶

func NewKeyfactorApiModelsMonitoringEmailResponse() *KeyfactorApiModelsMonitoringEmailResponse

NewKeyfactorApiModelsMonitoringEmailResponse instantiates a new KeyfactorApiModelsMonitoringEmailResponse 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 NewKeyfactorApiModelsMonitoringEmailResponseWithDefaults ¶

func NewKeyfactorApiModelsMonitoringEmailResponseWithDefaults() *KeyfactorApiModelsMonitoringEmailResponse

NewKeyfactorApiModelsMonitoringEmailResponseWithDefaults instantiates a new KeyfactorApiModelsMonitoringEmailResponse 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 (*KeyfactorApiModelsMonitoringEmailResponse) GetEnableReminder ¶

func (o *KeyfactorApiModelsMonitoringEmailResponse) GetEnableReminder() bool

GetEnableReminder returns the EnableReminder field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringEmailResponse) GetEnableReminderOk ¶

func (o *KeyfactorApiModelsMonitoringEmailResponse) GetEnableReminderOk() (*bool, bool)

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

func (*KeyfactorApiModelsMonitoringEmailResponse) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringEmailResponse) GetRecipientsOk ¶

func (o *KeyfactorApiModelsMonitoringEmailResponse) GetRecipientsOk() ([]string, bool)

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

func (*KeyfactorApiModelsMonitoringEmailResponse) GetWarningDays ¶

GetWarningDays returns the WarningDays field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringEmailResponse) GetWarningDaysOk ¶

func (o *KeyfactorApiModelsMonitoringEmailResponse) GetWarningDaysOk() (*int32, bool)

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

func (*KeyfactorApiModelsMonitoringEmailResponse) HasEnableReminder ¶

func (o *KeyfactorApiModelsMonitoringEmailResponse) HasEnableReminder() bool

HasEnableReminder returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringEmailResponse) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringEmailResponse) HasWarningDays ¶

func (o *KeyfactorApiModelsMonitoringEmailResponse) HasWarningDays() bool

HasWarningDays returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringEmailResponse) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringEmailResponse) SetEnableReminder ¶

func (o *KeyfactorApiModelsMonitoringEmailResponse) SetEnableReminder(v bool)

SetEnableReminder gets a reference to the given bool and assigns it to the EnableReminder field.

func (*KeyfactorApiModelsMonitoringEmailResponse) SetRecipients ¶

func (o *KeyfactorApiModelsMonitoringEmailResponse) SetRecipients(v []string)

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*KeyfactorApiModelsMonitoringEmailResponse) SetWarningDays ¶

func (o *KeyfactorApiModelsMonitoringEmailResponse) SetWarningDays(v int32)

SetWarningDays gets a reference to the given int32 and assigns it to the WarningDays field.

func (KeyfactorApiModelsMonitoringEmailResponse) ToMap ¶

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

func (*KeyfactorApiModelsMonitoringEmailResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsMonitoringOCSPParametersRequest ¶

type KeyfactorApiModelsMonitoringOCSPParametersRequest struct {
	CertificateContents    *string `json:"CertificateContents,omitempty"`
	CertificateAuthorityId *int32  `json:"CertificateAuthorityId,omitempty"`
	AuthorityName          *string `json:"AuthorityName,omitempty"`
	AuthorityNameId        *string `json:"AuthorityNameId,omitempty"`
	AuthorityKeyId         *string `json:"AuthorityKeyId,omitempty"`
	SampleSerialNumber     *string `json:"SampleSerialNumber,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsMonitoringOCSPParametersRequest struct for KeyfactorApiModelsMonitoringOCSPParametersRequest

func NewKeyfactorApiModelsMonitoringOCSPParametersRequest ¶

func NewKeyfactorApiModelsMonitoringOCSPParametersRequest() *KeyfactorApiModelsMonitoringOCSPParametersRequest

NewKeyfactorApiModelsMonitoringOCSPParametersRequest instantiates a new KeyfactorApiModelsMonitoringOCSPParametersRequest 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 NewKeyfactorApiModelsMonitoringOCSPParametersRequestWithDefaults ¶

func NewKeyfactorApiModelsMonitoringOCSPParametersRequestWithDefaults() *KeyfactorApiModelsMonitoringOCSPParametersRequest

NewKeyfactorApiModelsMonitoringOCSPParametersRequestWithDefaults instantiates a new KeyfactorApiModelsMonitoringOCSPParametersRequest 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 (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetAuthorityKeyId ¶

GetAuthorityKeyId returns the AuthorityKeyId field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetAuthorityKeyIdOk ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) GetAuthorityKeyIdOk() (*string, bool)

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

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetAuthorityName ¶

GetAuthorityName returns the AuthorityName field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetAuthorityNameId ¶

GetAuthorityNameId returns the AuthorityNameId field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetAuthorityNameIdOk ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) GetAuthorityNameIdOk() (*string, bool)

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

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetAuthorityNameOk ¶

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

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetCertificateAuthorityId ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) GetCertificateAuthorityId() int32

GetCertificateAuthorityId returns the CertificateAuthorityId field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetCertificateAuthorityIdOk ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) GetCertificateAuthorityIdOk() (*int32, bool)

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

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetCertificateContents ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) GetCertificateContents() string

GetCertificateContents returns the CertificateContents field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetCertificateContentsOk ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) GetCertificateContentsOk() (*string, bool)

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

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetSampleSerialNumber ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) GetSampleSerialNumber() string

GetSampleSerialNumber returns the SampleSerialNumber field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) GetSampleSerialNumberOk ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) GetSampleSerialNumberOk() (*string, bool)

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

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) HasAuthorityKeyId ¶

HasAuthorityKeyId returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) HasAuthorityName ¶

HasAuthorityName returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) HasAuthorityNameId ¶

HasAuthorityNameId returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) HasCertificateAuthorityId ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) HasCertificateAuthorityId() bool

HasCertificateAuthorityId returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) HasCertificateContents ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) HasCertificateContents() bool

HasCertificateContents returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) HasSampleSerialNumber ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) HasSampleSerialNumber() bool

HasSampleSerialNumber returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringOCSPParametersRequest) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) SetAuthorityKeyId ¶

SetAuthorityKeyId gets a reference to the given string and assigns it to the AuthorityKeyId field.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) SetAuthorityName ¶

SetAuthorityName gets a reference to the given string and assigns it to the AuthorityName field.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) SetAuthorityNameId ¶

SetAuthorityNameId gets a reference to the given string and assigns it to the AuthorityNameId field.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) SetCertificateAuthorityId ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) SetCertificateAuthorityId(v int32)

SetCertificateAuthorityId gets a reference to the given int32 and assigns it to the CertificateAuthorityId field.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) SetCertificateContents ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) SetCertificateContents(v string)

SetCertificateContents gets a reference to the given string and assigns it to the CertificateContents field.

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) SetSampleSerialNumber ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersRequest) SetSampleSerialNumber(v string)

SetSampleSerialNumber gets a reference to the given string and assigns it to the SampleSerialNumber field.

func (KeyfactorApiModelsMonitoringOCSPParametersRequest) ToMap ¶

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

func (*KeyfactorApiModelsMonitoringOCSPParametersRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsMonitoringOCSPParametersResponse ¶

type KeyfactorApiModelsMonitoringOCSPParametersResponse struct {
	CertificateAuthorityId *int32  `json:"CertificateAuthorityId,omitempty"`
	AuthorityName          *string `json:"AuthorityName,omitempty"`
	AuthorityNameId        *string `json:"AuthorityNameId,omitempty"`
	AuthorityKeyId         *string `json:"AuthorityKeyId,omitempty"`
	SampleSerialNumber     *string `json:"SampleSerialNumber,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsMonitoringOCSPParametersResponse struct for KeyfactorApiModelsMonitoringOCSPParametersResponse

func NewKeyfactorApiModelsMonitoringOCSPParametersResponse ¶

func NewKeyfactorApiModelsMonitoringOCSPParametersResponse() *KeyfactorApiModelsMonitoringOCSPParametersResponse

NewKeyfactorApiModelsMonitoringOCSPParametersResponse instantiates a new KeyfactorApiModelsMonitoringOCSPParametersResponse 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 NewKeyfactorApiModelsMonitoringOCSPParametersResponseWithDefaults ¶

func NewKeyfactorApiModelsMonitoringOCSPParametersResponseWithDefaults() *KeyfactorApiModelsMonitoringOCSPParametersResponse

NewKeyfactorApiModelsMonitoringOCSPParametersResponseWithDefaults instantiates a new KeyfactorApiModelsMonitoringOCSPParametersResponse 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 (*KeyfactorApiModelsMonitoringOCSPParametersResponse) GetAuthorityKeyId ¶

GetAuthorityKeyId returns the AuthorityKeyId field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) GetAuthorityKeyIdOk ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersResponse) GetAuthorityKeyIdOk() (*string, bool)

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

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) GetAuthorityName ¶

GetAuthorityName returns the AuthorityName field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) GetAuthorityNameId ¶

GetAuthorityNameId returns the AuthorityNameId field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) GetAuthorityNameIdOk ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersResponse) GetAuthorityNameIdOk() (*string, bool)

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

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) GetAuthorityNameOk ¶

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

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) GetCertificateAuthorityId ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersResponse) GetCertificateAuthorityId() int32

GetCertificateAuthorityId returns the CertificateAuthorityId field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) GetCertificateAuthorityIdOk ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersResponse) GetCertificateAuthorityIdOk() (*int32, bool)

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

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) GetSampleSerialNumber ¶

GetSampleSerialNumber returns the SampleSerialNumber field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) GetSampleSerialNumberOk ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersResponse) GetSampleSerialNumberOk() (*string, bool)

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

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) HasAuthorityKeyId ¶

HasAuthorityKeyId returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) HasAuthorityName ¶

HasAuthorityName returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) HasAuthorityNameId ¶

HasAuthorityNameId returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) HasCertificateAuthorityId ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersResponse) HasCertificateAuthorityId() bool

HasCertificateAuthorityId returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) HasSampleSerialNumber ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersResponse) HasSampleSerialNumber() bool

HasSampleSerialNumber returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringOCSPParametersResponse) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) SetAuthorityKeyId ¶

SetAuthorityKeyId gets a reference to the given string and assigns it to the AuthorityKeyId field.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) SetAuthorityName ¶

SetAuthorityName gets a reference to the given string and assigns it to the AuthorityName field.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) SetAuthorityNameId ¶

SetAuthorityNameId gets a reference to the given string and assigns it to the AuthorityNameId field.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) SetCertificateAuthorityId ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersResponse) SetCertificateAuthorityId(v int32)

SetCertificateAuthorityId gets a reference to the given int32 and assigns it to the CertificateAuthorityId field.

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) SetSampleSerialNumber ¶

func (o *KeyfactorApiModelsMonitoringOCSPParametersResponse) SetSampleSerialNumber(v string)

SetSampleSerialNumber gets a reference to the given string and assigns it to the SampleSerialNumber field.

func (KeyfactorApiModelsMonitoringOCSPParametersResponse) ToMap ¶

func (*KeyfactorApiModelsMonitoringOCSPParametersResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest ¶

type KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest struct {
	EvaluationDate       *time.Time `json:"EvaluationDate,omitempty"`
	SendAlerts           *bool      `json:"SendAlerts,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest struct for KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest

func NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest() *KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest

NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest 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 NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequestWithDefaults ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequestWithDefaults() *KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest

NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequestWithDefaults instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest 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 (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) GetEvaluationDate ¶

GetEvaluationDate returns the EvaluationDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) GetEvaluationDateOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) GetSendAlerts ¶

GetSendAlerts returns the SendAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) GetSendAlertsOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) HasEvaluationDate ¶

HasEvaluationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) HasSendAlerts ¶

HasSendAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) SetEvaluationDate ¶

SetEvaluationDate gets a reference to the given time.Time and assigns it to the EvaluationDate field.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) SetSendAlerts ¶

SetSendAlerts gets a reference to the given bool and assigns it to the SendAlerts field.

func (KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) ToMap ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) UnmarshalJSON ¶

type KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest ¶

type KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest struct {
	AlertId              *int32     `json:"AlertId,omitempty"`
	EvaluationDate       *time.Time `json:"EvaluationDate,omitempty"`
	SendAlerts           *bool      `json:"SendAlerts,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest struct for KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest

func NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest() *KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest

NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest 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 NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequestWithDefaults ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequestWithDefaults() *KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest

NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequestWithDefaults instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest 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 (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) GetAlertId ¶

GetAlertId returns the AlertId field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) GetAlertIdOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) GetEvaluationDate ¶

GetEvaluationDate returns the EvaluationDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) GetEvaluationDateOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) GetSendAlerts ¶

GetSendAlerts returns the SendAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) GetSendAlertsOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) HasAlertId ¶

HasAlertId returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) HasEvaluationDate ¶

HasEvaluationDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) HasSendAlerts ¶

HasSendAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) SetAlertId ¶

SetAlertId gets a reference to the given int32 and assigns it to the AlertId field.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) SetEvaluationDate ¶

SetEvaluationDate gets a reference to the given time.Time and assigns it to the EvaluationDate field.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) SetSendAlerts ¶

SetSendAlerts gets a reference to the given bool and assigns it to the SendAlerts field.

func (KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) ToMap ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) UnmarshalJSON ¶

type KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse ¶

type KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse struct {
	RevocationMonitoringAlerts []ModelsMonitoringRevocationMonitoringAlertResponse `json:"RevocationMonitoringAlerts,omitempty"`
	AlertBuildResult           *int32                                              `json:"AlertBuildResult,omitempty"`
	AdditionalProperties       map[string]interface{}
}

KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse struct for KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse

func NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse() *KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse

NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse 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 NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponseWithDefaults ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponseWithDefaults() *KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse

NewKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponseWithDefaults instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse 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 (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) GetAlertBuildResult ¶

GetAlertBuildResult returns the AlertBuildResult field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) GetAlertBuildResultOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) GetRevocationMonitoringAlerts ¶

GetRevocationMonitoringAlerts returns the RevocationMonitoringAlerts field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) GetRevocationMonitoringAlertsOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) HasAlertBuildResult ¶

HasAlertBuildResult returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) HasRevocationMonitoringAlerts ¶

HasRevocationMonitoringAlerts returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) SetAlertBuildResult ¶

SetAlertBuildResult gets a reference to the given int32 and assigns it to the AlertBuildResult field.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) SetRevocationMonitoringAlerts ¶

SetRevocationMonitoringAlerts gets a reference to the given []ModelsMonitoringRevocationMonitoringAlertResponse and assigns it to the RevocationMonitoringAlerts field.

func (KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) ToMap ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) UnmarshalJSON ¶

type KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest ¶

type KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest struct {
	Name                 string                                             `json:"Name"`
	EndpointType         string                                             `json:"EndpointType"`
	Location             string                                             `json:"Location"`
	Email                *KeyfactorApiModelsMonitoringEmailRequest          `json:"Email,omitempty"`
	Dashboard            KeyfactorApiModelsMonitoringDashboardRequest       `json:"Dashboard"`
	Schedule             *KeyfactorCommonSchedulingKeyfactorSchedule        `json:"Schedule,omitempty"`
	OCSPParameters       *KeyfactorApiModelsMonitoringOCSPParametersRequest `json:"OCSPParameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest struct for KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest

func NewKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest(name string, endpointType string, location string, dashboard KeyfactorApiModelsMonitoringDashboardRequest) *KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest

NewKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest 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 NewKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequestWithDefaults ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequestWithDefaults() *KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest

NewKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequestWithDefaults instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest 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 (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetDashboard ¶

GetDashboard returns the Dashboard field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetDashboardOk ¶

GetDashboardOk returns a tuple with the Dashboard field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetEmail ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetEmailOk ¶

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 (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetEndpointType ¶

GetEndpointType returns the EndpointType field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetEndpointTypeOk ¶

GetEndpointTypeOk returns a tuple with the EndpointType field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetLocation ¶

GetLocation returns the Location field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetLocationOk ¶

GetLocationOk returns a tuple with the Location field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetNameOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetOCSPParameters ¶

GetOCSPParameters returns the OCSPParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetOCSPParametersOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) GetScheduleOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) HasEmail ¶

HasEmail returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) HasOCSPParameters ¶

HasOCSPParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) HasSchedule ¶

HasSchedule returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) SetDashboard ¶

SetDashboard sets field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) SetEmail ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) SetEndpointType ¶

SetEndpointType sets field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) SetLocation ¶

SetLocation sets field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) SetOCSPParameters ¶

SetOCSPParameters gets a reference to the given KeyfactorApiModelsMonitoringOCSPParametersRequest and assigns it to the OCSPParameters field.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) ToMap ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) UnmarshalJSON ¶

type KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse ¶

type KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse struct {
	Id                   *int32                                              `json:"Id,omitempty"`
	Name                 *string                                             `json:"Name,omitempty"`
	EndpointType         *string                                             `json:"EndpointType,omitempty"`
	Location             *string                                             `json:"Location,omitempty"`
	Email                *KeyfactorApiModelsMonitoringEmailResponse          `json:"Email,omitempty"`
	Dashboard            *KeyfactorApiModelsMonitoringDashboardResponse      `json:"Dashboard,omitempty"`
	Schedule             *KeyfactorCommonSchedulingKeyfactorSchedule         `json:"Schedule,omitempty"`
	OCSPParameters       *KeyfactorApiModelsMonitoringOCSPParametersResponse `json:"OCSPParameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse struct for KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse

func NewKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse() *KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse

NewKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse 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 NewKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponseWithDefaults ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponseWithDefaults() *KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse

NewKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponseWithDefaults instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse 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 (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetDashboard ¶

GetDashboard returns the Dashboard field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetDashboardOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetEmail ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetEmailOk ¶

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 (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetEndpointType ¶

GetEndpointType returns the EndpointType field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetEndpointTypeOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetId ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetIdOk ¶

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 (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetLocation ¶

GetLocation returns the Location field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetLocationOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetName ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) 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 (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetOCSPParameters ¶

GetOCSPParameters returns the OCSPParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetOCSPParametersOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) GetScheduleOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) HasDashboard ¶

HasDashboard returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) HasEmail ¶

HasEmail returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) HasEndpointType ¶

HasEndpointType returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) HasLocation ¶

HasLocation returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) HasOCSPParameters ¶

HasOCSPParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) HasSchedule ¶

HasSchedule returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) SetDashboard ¶

SetDashboard gets a reference to the given KeyfactorApiModelsMonitoringDashboardResponse and assigns it to the Dashboard field.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) SetEmail ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) SetEndpointType ¶

SetEndpointType gets a reference to the given string and assigns it to the EndpointType field.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) SetId ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) SetLocation ¶

SetLocation gets a reference to the given string and assigns it to the Location field.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) SetName ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) SetOCSPParameters ¶

SetOCSPParameters gets a reference to the given KeyfactorApiModelsMonitoringOCSPParametersResponse and assigns it to the OCSPParameters field.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) ToMap ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) UnmarshalJSON ¶

type KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest ¶

type KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest struct {
	Id                   *int32                                             `json:"Id,omitempty"`
	Name                 string                                             `json:"Name"`
	EndpointType         string                                             `json:"EndpointType"`
	Location             string                                             `json:"Location"`
	Email                *KeyfactorApiModelsMonitoringEmailRequest          `json:"Email,omitempty"`
	Dashboard            KeyfactorApiModelsMonitoringDashboardRequest       `json:"Dashboard"`
	Schedule             *KeyfactorCommonSchedulingKeyfactorSchedule        `json:"Schedule,omitempty"`
	OCSPParameters       *KeyfactorApiModelsMonitoringOCSPParametersRequest `json:"OCSPParameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest struct for KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest

func NewKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest(name string, endpointType string, location string, dashboard KeyfactorApiModelsMonitoringDashboardRequest) *KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest

NewKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest 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 NewKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequestWithDefaults ¶

func NewKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequestWithDefaults() *KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest

NewKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequestWithDefaults instantiates a new KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest 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 (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetDashboard ¶

GetDashboard returns the Dashboard field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetDashboardOk ¶

GetDashboardOk returns a tuple with the Dashboard field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetEmail ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetEmailOk ¶

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 (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetEndpointType ¶

GetEndpointType returns the EndpointType field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetEndpointTypeOk ¶

GetEndpointTypeOk returns a tuple with the EndpointType field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetId ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetIdOk ¶

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 (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetLocation ¶

GetLocation returns the Location field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetLocationOk ¶

GetLocationOk returns a tuple with the Location field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetNameOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetOCSPParameters ¶

GetOCSPParameters returns the OCSPParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetOCSPParametersOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) GetScheduleOk ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) HasEmail ¶

HasEmail returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) HasOCSPParameters ¶

HasOCSPParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) HasSchedule ¶

HasSchedule returns a boolean if a field has been set.

func (KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) SetDashboard ¶

SetDashboard sets field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) SetEmail ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) SetEndpointType ¶

SetEndpointType sets field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) SetId ¶

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

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) SetLocation ¶

SetLocation sets field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) SetOCSPParameters ¶

SetOCSPParameters gets a reference to the given KeyfactorApiModelsMonitoringOCSPParametersRequest and assigns it to the OCSPParameters field.

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) ToMap ¶

func (*KeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) UnmarshalJSON ¶

type KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest ¶

type KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest struct {
	// List of orchestrator job audit ids to be acknowledged
	JobAuditIds []int64 `json:"JobAuditIds,omitempty"`
	// Query identifying orchestrator jobs to be acknowledged
	Query                *string `json:"Query,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest struct for KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest

func NewKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest ¶

func NewKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest() *KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest

NewKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest instantiates a new KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest 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 NewKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequestWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequestWithDefaults() *KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest

NewKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequestWithDefaults instantiates a new KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest 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 (*KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) GetJobAuditIds ¶

GetJobAuditIds returns the JobAuditIds field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) GetJobAuditIdsOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) GetQuery ¶

GetQuery returns the Query field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) GetQueryOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) HasJobAuditIds ¶

HasJobAuditIds returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) HasQuery ¶

HasQuery returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) SetJobAuditIds ¶

SetJobAuditIds gets a reference to the given []int64 and assigns it to the JobAuditIds field.

func (*KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) SetQuery ¶

SetQuery gets a reference to the given string and assigns it to the Query field.

func (KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) ToMap ¶

func (*KeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsOrchestratorJobsBulkJobResponse ¶

type KeyfactorApiModelsOrchestratorJobsBulkJobResponse struct {
	OrchestratorJobPairs  []ModelsOrchestratorJobsBulkOrchestratorJobPair      `json:"OrchestratorJobPairs,omitempty"`
	FailedOrchestratorIds []string                                             `json:"FailedOrchestratorIds,omitempty"`
	JobTypeName           *string                                              `json:"JobTypeName,omitempty"`
	Schedule              *KeyfactorCommonSchedulingKeyfactorSchedule          `json:"Schedule,omitempty"`
	JobFields             []KeyfactorApiModelsOrchestratorJobsJobFieldResponse `json:"JobFields,omitempty"`
	RequestTimestamp      *time.Time                                           `json:"RequestTimestamp,omitempty"`
	AdditionalProperties  map[string]interface{}
}

KeyfactorApiModelsOrchestratorJobsBulkJobResponse struct for KeyfactorApiModelsOrchestratorJobsBulkJobResponse

func NewKeyfactorApiModelsOrchestratorJobsBulkJobResponse ¶

func NewKeyfactorApiModelsOrchestratorJobsBulkJobResponse() *KeyfactorApiModelsOrchestratorJobsBulkJobResponse

NewKeyfactorApiModelsOrchestratorJobsBulkJobResponse instantiates a new KeyfactorApiModelsOrchestratorJobsBulkJobResponse 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 NewKeyfactorApiModelsOrchestratorJobsBulkJobResponseWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorJobsBulkJobResponseWithDefaults() *KeyfactorApiModelsOrchestratorJobsBulkJobResponse

NewKeyfactorApiModelsOrchestratorJobsBulkJobResponseWithDefaults instantiates a new KeyfactorApiModelsOrchestratorJobsBulkJobResponse 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 (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetFailedOrchestratorIds ¶

func (o *KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetFailedOrchestratorIds() []string

GetFailedOrchestratorIds returns the FailedOrchestratorIds field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetFailedOrchestratorIdsOk ¶

func (o *KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetFailedOrchestratorIdsOk() ([]string, bool)

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

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetJobFields ¶

GetJobFields returns the JobFields field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetJobFieldsOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetJobTypeName ¶

GetJobTypeName returns the JobTypeName field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetJobTypeNameOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetOrchestratorJobPairs ¶

GetOrchestratorJobPairs returns the OrchestratorJobPairs field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetOrchestratorJobPairsOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetRequestTimestamp ¶

GetRequestTimestamp returns the RequestTimestamp field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetRequestTimestampOk ¶

func (o *KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetRequestTimestampOk() (*time.Time, bool)

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

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) GetScheduleOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) HasFailedOrchestratorIds ¶

func (o *KeyfactorApiModelsOrchestratorJobsBulkJobResponse) HasFailedOrchestratorIds() bool

HasFailedOrchestratorIds returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) HasJobFields ¶

HasJobFields returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) HasJobTypeName ¶

HasJobTypeName returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) HasOrchestratorJobPairs ¶

func (o *KeyfactorApiModelsOrchestratorJobsBulkJobResponse) HasOrchestratorJobPairs() bool

HasOrchestratorJobPairs returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) HasRequestTimestamp ¶

HasRequestTimestamp returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) HasSchedule ¶

HasSchedule returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorJobsBulkJobResponse) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) SetFailedOrchestratorIds ¶

func (o *KeyfactorApiModelsOrchestratorJobsBulkJobResponse) SetFailedOrchestratorIds(v []string)

SetFailedOrchestratorIds gets a reference to the given []string and assigns it to the FailedOrchestratorIds field.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) SetJobFields ¶

SetJobFields gets a reference to the given []KeyfactorApiModelsOrchestratorJobsJobFieldResponse and assigns it to the JobFields field.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) SetJobTypeName ¶

SetJobTypeName gets a reference to the given string and assigns it to the JobTypeName field.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) SetOrchestratorJobPairs ¶

SetOrchestratorJobPairs gets a reference to the given []ModelsOrchestratorJobsBulkOrchestratorJobPair and assigns it to the OrchestratorJobPairs field.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) SetRequestTimestamp ¶

SetRequestTimestamp gets a reference to the given time.Time and assigns it to the RequestTimestamp field.

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (KeyfactorApiModelsOrchestratorJobsBulkJobResponse) ToMap ¶

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

func (*KeyfactorApiModelsOrchestratorJobsBulkJobResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse ¶

type KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse struct {
	JobHistoryId         *int64  `json:"JobHistoryId,omitempty"`
	Data                 *string `json:"Data,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse struct for KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse

func NewKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse ¶

func NewKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse() *KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse

NewKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse instantiates a new KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse 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 NewKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponseWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponseWithDefaults() *KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse

NewKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponseWithDefaults instantiates a new KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse 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 (*KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) GetData ¶

GetData returns the Data field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) GetDataOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) GetJobHistoryId ¶

GetJobHistoryId returns the JobHistoryId field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) GetJobHistoryIdOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) HasData ¶

HasData returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) HasJobHistoryId ¶

HasJobHistoryId returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) SetData ¶

SetData gets a reference to the given string and assigns it to the Data field.

func (*KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) SetJobHistoryId ¶

SetJobHistoryId gets a reference to the given int64 and assigns it to the JobHistoryId field.

func (KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) ToMap ¶

func (*KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) UnmarshalJSON ¶

type KeyfactorApiModelsOrchestratorJobsJobFieldResponse ¶

type KeyfactorApiModelsOrchestratorJobsJobFieldResponse struct {
	JobTypeField         *string `json:"JobTypeField,omitempty"`
	Value                *string `json:"Value,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsOrchestratorJobsJobFieldResponse struct for KeyfactorApiModelsOrchestratorJobsJobFieldResponse

func NewKeyfactorApiModelsOrchestratorJobsJobFieldResponse ¶

func NewKeyfactorApiModelsOrchestratorJobsJobFieldResponse() *KeyfactorApiModelsOrchestratorJobsJobFieldResponse

NewKeyfactorApiModelsOrchestratorJobsJobFieldResponse instantiates a new KeyfactorApiModelsOrchestratorJobsJobFieldResponse 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 NewKeyfactorApiModelsOrchestratorJobsJobFieldResponseWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorJobsJobFieldResponseWithDefaults() *KeyfactorApiModelsOrchestratorJobsJobFieldResponse

NewKeyfactorApiModelsOrchestratorJobsJobFieldResponseWithDefaults instantiates a new KeyfactorApiModelsOrchestratorJobsJobFieldResponse 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 (*KeyfactorApiModelsOrchestratorJobsJobFieldResponse) GetJobTypeField ¶

GetJobTypeField returns the JobTypeField field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsJobFieldResponse) GetJobTypeFieldOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobFieldResponse) GetValue ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobFieldResponse) 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 (*KeyfactorApiModelsOrchestratorJobsJobFieldResponse) HasJobTypeField ¶

HasJobTypeField returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobFieldResponse) HasValue ¶

HasValue returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorJobsJobFieldResponse) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorJobsJobFieldResponse) SetJobTypeField ¶

SetJobTypeField gets a reference to the given string and assigns it to the JobTypeField field.

func (*KeyfactorApiModelsOrchestratorJobsJobFieldResponse) SetValue ¶

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

func (KeyfactorApiModelsOrchestratorJobsJobFieldResponse) ToMap ¶

func (*KeyfactorApiModelsOrchestratorJobsJobFieldResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsOrchestratorJobsJobResponse ¶

type KeyfactorApiModelsOrchestratorJobsJobResponse struct {
	JobId                *string                                              `json:"JobId,omitempty"`
	OrchestratorId       *string                                              `json:"OrchestratorId,omitempty"`
	JobTypeName          *string                                              `json:"JobTypeName,omitempty"`
	Schedule             *KeyfactorCommonSchedulingKeyfactorSchedule          `json:"Schedule,omitempty"`
	JobFields            []KeyfactorApiModelsOrchestratorJobsJobFieldResponse `json:"JobFields,omitempty"`
	RequestTimestamp     *time.Time                                           `json:"RequestTimestamp,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsOrchestratorJobsJobResponse struct for KeyfactorApiModelsOrchestratorJobsJobResponse

func NewKeyfactorApiModelsOrchestratorJobsJobResponse ¶

func NewKeyfactorApiModelsOrchestratorJobsJobResponse() *KeyfactorApiModelsOrchestratorJobsJobResponse

NewKeyfactorApiModelsOrchestratorJobsJobResponse instantiates a new KeyfactorApiModelsOrchestratorJobsJobResponse 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 NewKeyfactorApiModelsOrchestratorJobsJobResponseWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorJobsJobResponseWithDefaults() *KeyfactorApiModelsOrchestratorJobsJobResponse

NewKeyfactorApiModelsOrchestratorJobsJobResponseWithDefaults instantiates a new KeyfactorApiModelsOrchestratorJobsJobResponse 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 (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetJobFields ¶

GetJobFields returns the JobFields field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetJobFieldsOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetJobId ¶

GetJobId returns the JobId field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetJobIdOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetJobTypeName ¶

GetJobTypeName returns the JobTypeName field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetJobTypeNameOk ¶

func (o *KeyfactorApiModelsOrchestratorJobsJobResponse) GetJobTypeNameOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetOrchestratorId ¶

GetOrchestratorId returns the OrchestratorId field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetOrchestratorIdOk ¶

func (o *KeyfactorApiModelsOrchestratorJobsJobResponse) GetOrchestratorIdOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetRequestTimestamp ¶

func (o *KeyfactorApiModelsOrchestratorJobsJobResponse) GetRequestTimestamp() time.Time

GetRequestTimestamp returns the RequestTimestamp field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetRequestTimestampOk ¶

func (o *KeyfactorApiModelsOrchestratorJobsJobResponse) GetRequestTimestampOk() (*time.Time, bool)

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

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) GetScheduleOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) HasJobFields ¶

HasJobFields returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) HasJobId ¶

HasJobId returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) HasJobTypeName ¶

HasJobTypeName returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) HasOrchestratorId ¶

func (o *KeyfactorApiModelsOrchestratorJobsJobResponse) HasOrchestratorId() bool

HasOrchestratorId returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) HasRequestTimestamp ¶

func (o *KeyfactorApiModelsOrchestratorJobsJobResponse) HasRequestTimestamp() bool

HasRequestTimestamp returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) HasSchedule ¶

HasSchedule returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorJobsJobResponse) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) SetJobFields ¶

SetJobFields gets a reference to the given []KeyfactorApiModelsOrchestratorJobsJobFieldResponse and assigns it to the JobFields field.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) SetJobId ¶

SetJobId gets a reference to the given string and assigns it to the JobId field.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) SetJobTypeName ¶

SetJobTypeName gets a reference to the given string and assigns it to the JobTypeName field.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) SetOrchestratorId ¶

func (o *KeyfactorApiModelsOrchestratorJobsJobResponse) SetOrchestratorId(v string)

SetOrchestratorId gets a reference to the given string and assigns it to the OrchestratorId field.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) SetRequestTimestamp ¶

func (o *KeyfactorApiModelsOrchestratorJobsJobResponse) SetRequestTimestamp(v time.Time)

SetRequestTimestamp gets a reference to the given time.Time and assigns it to the RequestTimestamp field.

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (KeyfactorApiModelsOrchestratorJobsJobResponse) ToMap ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse ¶

type KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse struct {
	Name                 *string `json:"Name,omitempty"`
	Type                 *int32  `json:"Type,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	Required             *bool   `json:"Required,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse struct for KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse

func NewKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse ¶

func NewKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse() *KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse

NewKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse instantiates a new KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse 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 NewKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponseWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponseWithDefaults() *KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse

NewKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponseWithDefaults instantiates a new KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse 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 (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) GetDefaultValue ¶

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) GetDefaultValueOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) GetName ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) 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 (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) GetRequired ¶

GetRequired returns the Required field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) GetRequiredOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) GetType ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) GetTypeOk ¶

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 (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) HasDefaultValue ¶

HasDefaultValue returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) HasRequired ¶

HasRequired returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) HasType ¶

HasType returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) SetDefaultValue ¶

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) SetName ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) SetRequired ¶

SetRequired gets a reference to the given bool and assigns it to the Required field.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) SetType ¶

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

func (KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) ToMap ¶

func (*KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsOrchestratorJobsJobTypeResponse ¶

type KeyfactorApiModelsOrchestratorJobsJobTypeResponse struct {
	Id                   *string                                                  `json:"Id,omitempty"`
	JobTypeName          *string                                                  `json:"JobTypeName,omitempty"`
	Description          *string                                                  `json:"Description,omitempty"`
	JobTypeFields        []KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse `json:"JobTypeFields,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsOrchestratorJobsJobTypeResponse struct for KeyfactorApiModelsOrchestratorJobsJobTypeResponse

func NewKeyfactorApiModelsOrchestratorJobsJobTypeResponse ¶

func NewKeyfactorApiModelsOrchestratorJobsJobTypeResponse() *KeyfactorApiModelsOrchestratorJobsJobTypeResponse

NewKeyfactorApiModelsOrchestratorJobsJobTypeResponse instantiates a new KeyfactorApiModelsOrchestratorJobsJobTypeResponse 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 NewKeyfactorApiModelsOrchestratorJobsJobTypeResponseWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorJobsJobTypeResponseWithDefaults() *KeyfactorApiModelsOrchestratorJobsJobTypeResponse

NewKeyfactorApiModelsOrchestratorJobsJobTypeResponseWithDefaults instantiates a new KeyfactorApiModelsOrchestratorJobsJobTypeResponse 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 (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) GetDescription ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) GetDescriptionOk ¶

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 (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) GetId ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) GetIdOk ¶

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 (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) GetJobTypeFields ¶

GetJobTypeFields returns the JobTypeFields field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) GetJobTypeFieldsOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) GetJobTypeName ¶

GetJobTypeName returns the JobTypeName field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) GetJobTypeNameOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) HasJobTypeFields ¶

HasJobTypeFields returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) HasJobTypeName ¶

HasJobTypeName returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorJobsJobTypeResponse) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) SetDescription ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) SetId ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) SetJobTypeFields ¶

SetJobTypeFields gets a reference to the given []KeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse and assigns it to the JobTypeFields field.

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) SetJobTypeName ¶

SetJobTypeName gets a reference to the given string and assigns it to the JobTypeName field.

func (KeyfactorApiModelsOrchestratorJobsJobTypeResponse) ToMap ¶

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

func (*KeyfactorApiModelsOrchestratorJobsJobTypeResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest ¶

type KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest struct {
	// List of orchestrator job audit ids to be rescheduled
	JobAuditIds []int64 `json:"JobAuditIds,omitempty"`
	// Query identifying orchestrator jobs to be rescheduled
	Query                *string `json:"Query,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest Class representing orchestrator jobs to be rescheduled

func NewKeyfactorApiModelsOrchestratorJobsRescheduleJobRequest ¶

func NewKeyfactorApiModelsOrchestratorJobsRescheduleJobRequest() *KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest

NewKeyfactorApiModelsOrchestratorJobsRescheduleJobRequest instantiates a new KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest 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 NewKeyfactorApiModelsOrchestratorJobsRescheduleJobRequestWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorJobsRescheduleJobRequestWithDefaults() *KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest

NewKeyfactorApiModelsOrchestratorJobsRescheduleJobRequestWithDefaults instantiates a new KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest 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 (*KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) GetJobAuditIds ¶

GetJobAuditIds returns the JobAuditIds field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) GetJobAuditIdsOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) GetQuery ¶

GetQuery returns the Query field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) GetQueryOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) HasJobAuditIds ¶

HasJobAuditIds returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) HasQuery ¶

HasQuery returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) SetJobAuditIds ¶

SetJobAuditIds gets a reference to the given []int64 and assigns it to the JobAuditIds field.

func (*KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) SetQuery ¶

SetQuery gets a reference to the given string and assigns it to the Query field.

func (KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) ToMap ¶

func (*KeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest ¶

type KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest struct {
	// List of orchestrator job ids to be unscheduled
	JobIds []string `json:"JobIds,omitempty"`
	// Query identifying orchestrator jobs to be unscheduled
	Query                *string `json:"Query,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest Class representing orchestrator jobs to be unscheduled

func NewKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest ¶

func NewKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest() *KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest

NewKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest instantiates a new KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest 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 NewKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequestWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequestWithDefaults() *KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest

NewKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequestWithDefaults instantiates a new KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest 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 (*KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) GetJobIds ¶

GetJobIds returns the JobIds field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) GetJobIdsOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) GetQuery ¶

GetQuery returns the Query field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) GetQueryOk ¶

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

func (*KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) HasJobIds ¶

HasJobIds returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) HasQuery ¶

HasQuery returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) SetJobIds ¶

SetJobIds gets a reference to the given []string and assigns it to the JobIds field.

func (*KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) SetQuery ¶

SetQuery gets a reference to the given string and assigns it to the Query field.

func (KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) ToMap ¶

func (*KeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse ¶

type KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse struct {
	AgentBlueprintJobId   *string                                                      `json:"AgentBlueprintJobId,omitempty"`
	AgentBlueprintStoreId *string                                                      `json:"AgentBlueprintStoreId,omitempty"`
	AgentBlueprintId      *string                                                      `json:"AgentBlueprintId,omitempty"`
	JobType               *string                                                      `json:"JobType,omitempty"`
	JobTypeName           *string                                                      `json:"JobTypeName,omitempty"`
	OperationType         *int32                                                       `json:"OperationType,omitempty"`
	Thumbprint            *string                                                      `json:"Thumbprint,omitempty"`
	Contents              *string                                                      `json:"Contents,omitempty"`
	Alias                 *string                                                      `json:"Alias,omitempty"`
	PrivateKeyEntry       *bool                                                        `json:"PrivateKeyEntry,omitempty"`
	Overwrite             *bool                                                        `json:"Overwrite,omitempty"`
	HasEntryPassword      *bool                                                        `json:"HasEntryPassword,omitempty"`
	HasPfxPassword        *bool                                                        `json:"HasPfxPassword,omitempty"`
	RequestTimestamp      *time.Time                                                   `json:"RequestTimestamp,omitempty"`
	KeyfactorSchedule     *KeyfactorCommonSchedulingKeyfactorSchedule                  `json:"KeyfactorSchedule,omitempty"`
	Subject               *string                                                      `json:"Subject,omitempty"`
	Directories           *string                                                      `json:"Directories,omitempty"`
	IgnoredDirectories    *string                                                      `json:"IgnoredDirectories,omitempty"`
	SymLinks              *bool                                                        `json:"SymLinks,omitempty"`
	Compatibility         *bool                                                        `json:"Compatibility,omitempty"`
	FileExtensions        *string                                                      `json:"FileExtensions,omitempty"`
	FileNamePatterns      *string                                                      `json:"FileNamePatterns,omitempty"`
	AgentBlueprintStores  *KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse `json:"AgentBlueprintStores,omitempty"`
	AdditionalProperties  map[string]interface{}
}

KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse struct for KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse

func NewKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse ¶

func NewKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse() *KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse

NewKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse instantiates a new KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse 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 NewKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponseWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponseWithDefaults() *KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse

NewKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponseWithDefaults instantiates a new KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse 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 (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAgentBlueprintId ¶

GetAgentBlueprintId returns the AgentBlueprintId field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAgentBlueprintIdOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAgentBlueprintJobId ¶

GetAgentBlueprintJobId returns the AgentBlueprintJobId field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAgentBlueprintJobIdOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAgentBlueprintJobIdOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAgentBlueprintStoreId ¶

GetAgentBlueprintStoreId returns the AgentBlueprintStoreId field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAgentBlueprintStoreIdOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAgentBlueprintStoreIdOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAgentBlueprintStores ¶

GetAgentBlueprintStores returns the AgentBlueprintStores field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAgentBlueprintStoresOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAlias ¶

GetAlias returns the Alias field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetAliasOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetCompatibility ¶

GetCompatibility returns the Compatibility field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetCompatibilityOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetContents ¶

GetContents returns the Contents field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetContentsOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetDirectories ¶

GetDirectories returns the Directories field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetDirectoriesOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetFileExtensions ¶

GetFileExtensions returns the FileExtensions field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetFileExtensionsOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetFileNamePatterns ¶

GetFileNamePatterns returns the FileNamePatterns field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetFileNamePatternsOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetHasEntryPassword ¶

GetHasEntryPassword returns the HasEntryPassword field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetHasEntryPasswordOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetHasPfxPassword ¶

GetHasPfxPassword returns the HasPfxPassword field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetHasPfxPasswordOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetIgnoredDirectories ¶

GetIgnoredDirectories returns the IgnoredDirectories field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetIgnoredDirectoriesOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetJobType ¶

GetJobType returns the JobType field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetJobTypeName ¶

GetJobTypeName returns the JobTypeName field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetJobTypeNameOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetJobTypeOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetKeyfactorSchedule ¶

GetKeyfactorSchedule returns the KeyfactorSchedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetKeyfactorScheduleOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetOperationType ¶

GetOperationType returns the OperationType field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetOperationTypeOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetOverwrite ¶

GetOverwrite returns the Overwrite field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetOverwriteOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetPrivateKeyEntry ¶

GetPrivateKeyEntry returns the PrivateKeyEntry field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetPrivateKeyEntryOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetRequestTimestamp ¶

GetRequestTimestamp returns the RequestTimestamp field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetRequestTimestampOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetSubject ¶

GetSubject returns the Subject field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetSubjectOk ¶

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

GetSymLinks returns the SymLinks field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetSymLinksOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetThumbprint ¶

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) GetThumbprintOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasAgentBlueprintId ¶

HasAgentBlueprintId returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasAgentBlueprintJobId ¶

HasAgentBlueprintJobId returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasAgentBlueprintStoreId ¶

HasAgentBlueprintStoreId returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasAgentBlueprintStores ¶

HasAgentBlueprintStores returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasAlias ¶

HasAlias returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasCompatibility ¶

HasCompatibility returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasContents ¶

HasContents returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasDirectories ¶

HasDirectories returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasFileExtensions ¶

HasFileExtensions returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasFileNamePatterns ¶

HasFileNamePatterns returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasHasEntryPassword ¶

HasHasEntryPassword returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasHasPfxPassword ¶

HasHasPfxPassword returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasIgnoredDirectories ¶

HasIgnoredDirectories returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasJobType ¶

HasJobType returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasJobTypeName ¶

HasJobTypeName returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasKeyfactorSchedule ¶

HasKeyfactorSchedule returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasOperationType ¶

HasOperationType returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasOverwrite ¶

HasOverwrite returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasPrivateKeyEntry ¶

HasPrivateKeyEntry returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasRequestTimestamp ¶

HasRequestTimestamp returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasSubject ¶

HasSubject returns a boolean if a field has been set.

HasSymLinks returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) HasThumbprint ¶

HasThumbprint returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetAgentBlueprintId ¶

SetAgentBlueprintId gets a reference to the given string and assigns it to the AgentBlueprintId field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetAgentBlueprintJobId ¶

SetAgentBlueprintJobId gets a reference to the given string and assigns it to the AgentBlueprintJobId field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetAgentBlueprintStoreId ¶

SetAgentBlueprintStoreId gets a reference to the given string and assigns it to the AgentBlueprintStoreId field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetAgentBlueprintStores ¶

SetAgentBlueprintStores gets a reference to the given KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse and assigns it to the AgentBlueprintStores field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetAlias ¶

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetCompatibility ¶

SetCompatibility gets a reference to the given bool and assigns it to the Compatibility field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetContents ¶

SetContents gets a reference to the given string and assigns it to the Contents field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetDirectories ¶

SetDirectories gets a reference to the given string and assigns it to the Directories field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetFileExtensions ¶

SetFileExtensions gets a reference to the given string and assigns it to the FileExtensions field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetFileNamePatterns ¶

SetFileNamePatterns gets a reference to the given string and assigns it to the FileNamePatterns field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetHasEntryPassword ¶

SetHasEntryPassword gets a reference to the given bool and assigns it to the HasEntryPassword field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetHasPfxPassword ¶

SetHasPfxPassword gets a reference to the given bool and assigns it to the HasPfxPassword field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetIgnoredDirectories ¶

SetIgnoredDirectories gets a reference to the given string and assigns it to the IgnoredDirectories field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetJobType ¶

SetJobType gets a reference to the given string and assigns it to the JobType field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetJobTypeName ¶

SetJobTypeName gets a reference to the given string and assigns it to the JobTypeName field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetKeyfactorSchedule ¶

SetKeyfactorSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the KeyfactorSchedule field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetOperationType ¶

SetOperationType gets a reference to the given int32 and assigns it to the OperationType field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetOverwrite ¶

SetOverwrite gets a reference to the given bool and assigns it to the Overwrite field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetPrivateKeyEntry ¶

SetPrivateKeyEntry gets a reference to the given bool and assigns it to the PrivateKeyEntry field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetRequestTimestamp ¶

SetRequestTimestamp gets a reference to the given time.Time and assigns it to the RequestTimestamp field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetSubject ¶

SetSubject gets a reference to the given string and assigns it to the Subject field.

SetSymLinks gets a reference to the given bool and assigns it to the SymLinks field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) SetThumbprint ¶

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) ToMap ¶

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) UnmarshalJSON ¶

type KeyfactorApiModelsOrchestratorsAgentBlueprintResponse ¶

type KeyfactorApiModelsOrchestratorsAgentBlueprintResponse struct {
	AgentBlueprintId     *string    `json:"AgentBlueprintId,omitempty"`
	Name                 *string    `json:"Name,omitempty"`
	RequiredCapabilities []string   `json:"RequiredCapabilities,omitempty"`
	LastModified         *time.Time `json:"LastModified,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsOrchestratorsAgentBlueprintResponse struct for KeyfactorApiModelsOrchestratorsAgentBlueprintResponse

func NewKeyfactorApiModelsOrchestratorsAgentBlueprintResponse ¶

func NewKeyfactorApiModelsOrchestratorsAgentBlueprintResponse() *KeyfactorApiModelsOrchestratorsAgentBlueprintResponse

NewKeyfactorApiModelsOrchestratorsAgentBlueprintResponse instantiates a new KeyfactorApiModelsOrchestratorsAgentBlueprintResponse 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 NewKeyfactorApiModelsOrchestratorsAgentBlueprintResponseWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorsAgentBlueprintResponseWithDefaults() *KeyfactorApiModelsOrchestratorsAgentBlueprintResponse

NewKeyfactorApiModelsOrchestratorsAgentBlueprintResponseWithDefaults instantiates a new KeyfactorApiModelsOrchestratorsAgentBlueprintResponse 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 (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) GetAgentBlueprintId ¶

GetAgentBlueprintId returns the AgentBlueprintId field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) GetAgentBlueprintIdOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) GetAgentBlueprintIdOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) GetLastModified ¶

GetLastModified returns the LastModified field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) GetLastModifiedOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) GetName ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) 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 (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) GetRequiredCapabilities ¶

func (o *KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) GetRequiredCapabilities() []string

GetRequiredCapabilities returns the RequiredCapabilities field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) GetRequiredCapabilitiesOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) GetRequiredCapabilitiesOk() ([]string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) HasAgentBlueprintId ¶

HasAgentBlueprintId returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) HasLastModified ¶

HasLastModified returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) HasRequiredCapabilities ¶

func (o *KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) HasRequiredCapabilities() bool

HasRequiredCapabilities returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) SetAgentBlueprintId ¶

SetAgentBlueprintId gets a reference to the given string and assigns it to the AgentBlueprintId field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) SetLastModified ¶

SetLastModified gets a reference to the given time.Time and assigns it to the LastModified field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) SetName ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) SetRequiredCapabilities ¶

func (o *KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) SetRequiredCapabilities(v []string)

SetRequiredCapabilities gets a reference to the given []string and assigns it to the RequiredCapabilities field.

func (KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) ToMap ¶

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse ¶

type KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse struct {
	AgentBlueprintStoreId *string `json:"AgentBlueprintStoreId,omitempty"`
	AgentBlueprintId      *string `json:"AgentBlueprintId,omitempty"`
	StorePath             *string `json:"StorePath,omitempty"`
	ContainerId           *int32  `json:"ContainerId,omitempty"`
	CertStoreType         *int32  `json:"CertStoreType,omitempty"`
	CertStoreTypeName     *string `json:"CertStoreTypeName,omitempty"`
	Approved              *bool   `json:"Approved,omitempty"`
	CreateIfMissing       *bool   `json:"CreateIfMissing,omitempty"`
	Properties            *string `json:"Properties,omitempty"`
	AdditionalProperties  map[string]interface{}
}

KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse struct for KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse

func NewKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse ¶

func NewKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse() *KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse

NewKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse instantiates a new KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse 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 NewKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponseWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponseWithDefaults() *KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse

NewKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponseWithDefaults instantiates a new KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse 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 (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetAgentBlueprintId ¶

GetAgentBlueprintId returns the AgentBlueprintId field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetAgentBlueprintIdOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetAgentBlueprintStoreId ¶

GetAgentBlueprintStoreId returns the AgentBlueprintStoreId field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetAgentBlueprintStoreIdOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetAgentBlueprintStoreIdOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetApproved ¶

GetApproved returns the Approved field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetApprovedOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetCertStoreType ¶

GetCertStoreType returns the CertStoreType field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetCertStoreTypeName ¶

GetCertStoreTypeName returns the CertStoreTypeName field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetCertStoreTypeNameOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetCertStoreTypeOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetContainerId ¶

GetContainerId returns the ContainerId field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetContainerIdOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetCreateIfMissing ¶

GetCreateIfMissing returns the CreateIfMissing field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetCreateIfMissingOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetProperties ¶

GetProperties returns the Properties field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetPropertiesOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetStorePath ¶

GetStorePath returns the StorePath field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) GetStorePathOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) HasAgentBlueprintId ¶

HasAgentBlueprintId returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) HasAgentBlueprintStoreId ¶

HasAgentBlueprintStoreId returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) HasApproved ¶

HasApproved returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) HasCertStoreType ¶

HasCertStoreType returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) HasCertStoreTypeName ¶

HasCertStoreTypeName returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) HasContainerId ¶

HasContainerId returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) HasCreateIfMissing ¶

HasCreateIfMissing returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) HasProperties ¶

HasProperties returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) HasStorePath ¶

HasStorePath returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) SetAgentBlueprintId ¶

SetAgentBlueprintId gets a reference to the given string and assigns it to the AgentBlueprintId field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) SetAgentBlueprintStoreId ¶

SetAgentBlueprintStoreId gets a reference to the given string and assigns it to the AgentBlueprintStoreId field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) SetApproved ¶

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) SetCertStoreType ¶

SetCertStoreType gets a reference to the given int32 and assigns it to the CertStoreType field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) SetCertStoreTypeName ¶

SetCertStoreTypeName gets a reference to the given string and assigns it to the CertStoreTypeName field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) SetContainerId ¶

SetContainerId gets a reference to the given int32 and assigns it to the ContainerId field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) SetCreateIfMissing ¶

SetCreateIfMissing gets a reference to the given bool and assigns it to the CreateIfMissing field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) SetProperties ¶

SetProperties gets a reference to the given string and assigns it to the Properties field.

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) SetStorePath ¶

SetStorePath gets a reference to the given string and assigns it to the StorePath field.

func (KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) ToMap ¶

func (*KeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) UnmarshalJSON ¶

type KeyfactorApiModelsOrchestratorsAgentResponse ¶

type KeyfactorApiModelsOrchestratorsAgentResponse struct {
	AgentId                     *string    `json:"AgentId,omitempty"`
	ClientMachine               *string    `json:"ClientMachine,omitempty"`
	Username                    *string    `json:"Username,omitempty"`
	AgentPlatform               *int32     `json:"AgentPlatform,omitempty"`
	Version                     *string    `json:"Version,omitempty"`
	Status                      *int32     `json:"Status,omitempty"`
	LastSeen                    *time.Time `json:"LastSeen,omitempty"`
	Capabilities                []string   `json:"Capabilities,omitempty"`
	Blueprint                   *string    `json:"Blueprint,omitempty"`
	Thumbprint                  *string    `json:"Thumbprint,omitempty"`
	LegacyThumbprint            *string    `json:"LegacyThumbprint,omitempty"`
	AuthCertificateReenrollment *string    `json:"AuthCertificateReenrollment,omitempty"`
	LastThumbprintUsed          *string    `json:"LastThumbprintUsed,omitempty"`
	LastErrorCode               *int64     `json:"LastErrorCode,omitempty"`
	LastErrorMessage            *string    `json:"LastErrorMessage,omitempty"`
	AdditionalProperties        map[string]interface{}
}

KeyfactorApiModelsOrchestratorsAgentResponse struct for KeyfactorApiModelsOrchestratorsAgentResponse

func NewKeyfactorApiModelsOrchestratorsAgentResponse ¶

func NewKeyfactorApiModelsOrchestratorsAgentResponse() *KeyfactorApiModelsOrchestratorsAgentResponse

NewKeyfactorApiModelsOrchestratorsAgentResponse instantiates a new KeyfactorApiModelsOrchestratorsAgentResponse 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 NewKeyfactorApiModelsOrchestratorsAgentResponseWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorsAgentResponseWithDefaults() *KeyfactorApiModelsOrchestratorsAgentResponse

NewKeyfactorApiModelsOrchestratorsAgentResponseWithDefaults instantiates a new KeyfactorApiModelsOrchestratorsAgentResponse 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 (*KeyfactorApiModelsOrchestratorsAgentResponse) GetAgentId ¶

GetAgentId returns the AgentId field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetAgentIdOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetAgentPlatform ¶

GetAgentPlatform returns the AgentPlatform field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetAgentPlatformOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetAgentPlatformOk() (*int32, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetAuthCertificateReenrollment ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetAuthCertificateReenrollment() string

GetAuthCertificateReenrollment returns the AuthCertificateReenrollment field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetAuthCertificateReenrollmentOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetAuthCertificateReenrollmentOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetBlueprint ¶

GetBlueprint returns the Blueprint field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetBlueprintOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetCapabilities ¶

GetCapabilities returns the Capabilities field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetCapabilitiesOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetCapabilitiesOk() ([]string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetClientMachine ¶

GetClientMachine returns the ClientMachine field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetClientMachineOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetClientMachineOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetLastErrorCode ¶

GetLastErrorCode returns the LastErrorCode field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetLastErrorCodeOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetLastErrorCodeOk() (*int64, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetLastErrorMessage ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetLastErrorMessage() string

GetLastErrorMessage returns the LastErrorMessage field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetLastErrorMessageOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetLastErrorMessageOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetLastSeen ¶

GetLastSeen returns the LastSeen field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetLastSeenOk ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetLastThumbprintUsed ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetLastThumbprintUsed() string

GetLastThumbprintUsed returns the LastThumbprintUsed field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetLastThumbprintUsedOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetLastThumbprintUsedOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetLegacyThumbprint ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetLegacyThumbprint() string

GetLegacyThumbprint returns the LegacyThumbprint field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetLegacyThumbprintOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetLegacyThumbprintOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetStatus ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetStatusOk ¶

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 (*KeyfactorApiModelsOrchestratorsAgentResponse) GetThumbprint ¶

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetThumbprintOk ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) GetThumbprintOk() (*string, bool)

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetUsername ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetUsernameOk ¶

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 (*KeyfactorApiModelsOrchestratorsAgentResponse) GetVersion ¶

GetVersion returns the Version field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) GetVersionOk ¶

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 (*KeyfactorApiModelsOrchestratorsAgentResponse) HasAgentId ¶

HasAgentId returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasAgentPlatform ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) HasAgentPlatform() bool

HasAgentPlatform returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasAuthCertificateReenrollment ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) HasAuthCertificateReenrollment() bool

HasAuthCertificateReenrollment returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasBlueprint ¶

HasBlueprint returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasCapabilities ¶

HasCapabilities returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasClientMachine ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) HasClientMachine() bool

HasClientMachine returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasLastErrorCode ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) HasLastErrorCode() bool

HasLastErrorCode returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasLastErrorMessage ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) HasLastErrorMessage() bool

HasLastErrorMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasLastSeen ¶

HasLastSeen returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasLastThumbprintUsed ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) HasLastThumbprintUsed() bool

HasLastThumbprintUsed returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasLegacyThumbprint ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) HasLegacyThumbprint() bool

HasLegacyThumbprint returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasStatus ¶

HasStatus returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasThumbprint ¶

HasThumbprint returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasUsername ¶

HasUsername returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) HasVersion ¶

HasVersion returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorsAgentResponse) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetAgentId ¶

SetAgentId gets a reference to the given string and assigns it to the AgentId field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetAgentPlatform ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) SetAgentPlatform(v int32)

SetAgentPlatform gets a reference to the given int32 and assigns it to the AgentPlatform field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetAuthCertificateReenrollment ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) SetAuthCertificateReenrollment(v string)

SetAuthCertificateReenrollment gets a reference to the given string and assigns it to the AuthCertificateReenrollment field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetBlueprint ¶

SetBlueprint gets a reference to the given string and assigns it to the Blueprint field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetCapabilities ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) SetCapabilities(v []string)

SetCapabilities gets a reference to the given []string and assigns it to the Capabilities field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetClientMachine ¶

SetClientMachine gets a reference to the given string and assigns it to the ClientMachine field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetLastErrorCode ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) SetLastErrorCode(v int64)

SetLastErrorCode gets a reference to the given int64 and assigns it to the LastErrorCode field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetLastErrorMessage ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) SetLastErrorMessage(v string)

SetLastErrorMessage gets a reference to the given string and assigns it to the LastErrorMessage field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetLastSeen ¶

SetLastSeen gets a reference to the given time.Time and assigns it to the LastSeen field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetLastThumbprintUsed ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) SetLastThumbprintUsed(v string)

SetLastThumbprintUsed gets a reference to the given string and assigns it to the LastThumbprintUsed field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetLegacyThumbprint ¶

func (o *KeyfactorApiModelsOrchestratorsAgentResponse) SetLegacyThumbprint(v string)

SetLegacyThumbprint gets a reference to the given string and assigns it to the LegacyThumbprint field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetStatus ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetThumbprint ¶

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetUsername ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) SetVersion ¶

SetVersion gets a reference to the given string and assigns it to the Version field.

func (KeyfactorApiModelsOrchestratorsAgentResponse) ToMap ¶

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

func (*KeyfactorApiModelsOrchestratorsAgentResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest ¶

type KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest struct {
	OrchestratorIds      []string `json:"OrchestratorIds,omitempty"`
	Status               string   `json:"Status"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest struct for KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest

func NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest ¶

func NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest(status string) *KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest

NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest instantiates a new KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest 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 NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequestWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequestWithDefaults() *KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest

NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequestWithDefaults instantiates a new KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest 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 (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) GetOrchestratorIds ¶

GetOrchestratorIds returns the OrchestratorIds field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) GetOrchestratorIdsOk ¶

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

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) GetStatus ¶

GetStatus returns the Status field value

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) GetStatusOk ¶

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

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) HasOrchestratorIds ¶

HasOrchestratorIds returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) SetOrchestratorIds ¶

SetOrchestratorIds gets a reference to the given []string and assigns it to the OrchestratorIds field.

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) SetStatus ¶

SetStatus sets field value

func (KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) ToMap ¶

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) UnmarshalJSON ¶

type KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse ¶

type KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse struct {
	FailedOrchestratorIds []string `json:"FailedOrchestratorIds,omitempty"`
	Status                *int32   `json:"Status,omitempty"`
	AdditionalProperties  map[string]interface{}
}

KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse struct for KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse

func NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse ¶

func NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse() *KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse

NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse instantiates a new KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse 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 NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponseWithDefaults ¶

func NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponseWithDefaults() *KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse

NewKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponseWithDefaults instantiates a new KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse 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 (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) GetFailedOrchestratorIds ¶

GetFailedOrchestratorIds returns the FailedOrchestratorIds field value if set, zero value otherwise.

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) GetFailedOrchestratorIdsOk ¶

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

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) GetStatus ¶

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

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) GetStatusOk ¶

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 (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) HasFailedOrchestratorIds ¶

HasFailedOrchestratorIds returns a boolean if a field has been set.

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) HasStatus ¶

HasStatus returns a boolean if a field has been set.

func (KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) MarshalJSON ¶

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) SetFailedOrchestratorIds ¶

SetFailedOrchestratorIds gets a reference to the given []string and assigns it to the FailedOrchestratorIds field.

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) SetStatus ¶

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

func (KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) ToMap ¶

func (*KeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) UnmarshalJSON ¶

type KeyfactorApiModelsSecurityRolesAreaPermissionResponse ¶

type KeyfactorApiModelsSecurityRolesAreaPermissionResponse struct {
	Type                 *string `json:"Type,omitempty"`
	Area                 *string `json:"Area,omitempty"`
	Permission           *string `json:"Permission,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSecurityRolesAreaPermissionResponse struct for KeyfactorApiModelsSecurityRolesAreaPermissionResponse

func NewKeyfactorApiModelsSecurityRolesAreaPermissionResponse ¶

func NewKeyfactorApiModelsSecurityRolesAreaPermissionResponse() *KeyfactorApiModelsSecurityRolesAreaPermissionResponse

NewKeyfactorApiModelsSecurityRolesAreaPermissionResponse instantiates a new KeyfactorApiModelsSecurityRolesAreaPermissionResponse 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 NewKeyfactorApiModelsSecurityRolesAreaPermissionResponseWithDefaults ¶

func NewKeyfactorApiModelsSecurityRolesAreaPermissionResponseWithDefaults() *KeyfactorApiModelsSecurityRolesAreaPermissionResponse

NewKeyfactorApiModelsSecurityRolesAreaPermissionResponseWithDefaults instantiates a new KeyfactorApiModelsSecurityRolesAreaPermissionResponse 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 (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) GetArea ¶

GetArea returns the Area field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) GetAreaOk ¶

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

func (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) GetPermission ¶

GetPermission returns the Permission field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) GetPermissionOk ¶

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

func (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) GetType ¶

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

func (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) GetTypeOk ¶

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 (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) HasArea ¶

HasArea returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) HasPermission ¶

HasPermission returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) HasType ¶

HasType returns a boolean if a field has been set.

func (KeyfactorApiModelsSecurityRolesAreaPermissionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) SetArea ¶

SetArea gets a reference to the given string and assigns it to the Area field.

func (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) SetPermission ¶

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) SetType ¶

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

func (KeyfactorApiModelsSecurityRolesAreaPermissionResponse) ToMap ¶

func (*KeyfactorApiModelsSecurityRolesAreaPermissionResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsSecurityRolesContainerPermissionRequest ¶

type KeyfactorApiModelsSecurityRolesContainerPermissionRequest struct {
	ContainerId          *int32  `json:"ContainerId,omitempty"`
	Permission           *string `json:"Permission,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSecurityRolesContainerPermissionRequest struct for KeyfactorApiModelsSecurityRolesContainerPermissionRequest

func NewKeyfactorApiModelsSecurityRolesContainerPermissionRequest ¶

func NewKeyfactorApiModelsSecurityRolesContainerPermissionRequest() *KeyfactorApiModelsSecurityRolesContainerPermissionRequest

NewKeyfactorApiModelsSecurityRolesContainerPermissionRequest instantiates a new KeyfactorApiModelsSecurityRolesContainerPermissionRequest 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 NewKeyfactorApiModelsSecurityRolesContainerPermissionRequestWithDefaults ¶

func NewKeyfactorApiModelsSecurityRolesContainerPermissionRequestWithDefaults() *KeyfactorApiModelsSecurityRolesContainerPermissionRequest

NewKeyfactorApiModelsSecurityRolesContainerPermissionRequestWithDefaults instantiates a new KeyfactorApiModelsSecurityRolesContainerPermissionRequest 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 (*KeyfactorApiModelsSecurityRolesContainerPermissionRequest) GetContainerId ¶

GetContainerId returns the ContainerId field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesContainerPermissionRequest) GetContainerIdOk ¶

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

func (*KeyfactorApiModelsSecurityRolesContainerPermissionRequest) GetPermission ¶

GetPermission returns the Permission field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesContainerPermissionRequest) GetPermissionOk ¶

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

func (*KeyfactorApiModelsSecurityRolesContainerPermissionRequest) HasContainerId ¶

HasContainerId returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesContainerPermissionRequest) HasPermission ¶

HasPermission returns a boolean if a field has been set.

func (KeyfactorApiModelsSecurityRolesContainerPermissionRequest) MarshalJSON ¶

func (*KeyfactorApiModelsSecurityRolesContainerPermissionRequest) SetContainerId ¶

SetContainerId gets a reference to the given int32 and assigns it to the ContainerId field.

func (*KeyfactorApiModelsSecurityRolesContainerPermissionRequest) SetPermission ¶

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (KeyfactorApiModelsSecurityRolesContainerPermissionRequest) ToMap ¶

func (*KeyfactorApiModelsSecurityRolesContainerPermissionRequest) UnmarshalJSON ¶

type KeyfactorApiModelsSecurityRolesContainerPermissionResponse ¶

type KeyfactorApiModelsSecurityRolesContainerPermissionResponse struct {
	ContainerId          *int32  `json:"ContainerId,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	Permission           *string `json:"Permission,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSecurityRolesContainerPermissionResponse struct for KeyfactorApiModelsSecurityRolesContainerPermissionResponse

func NewKeyfactorApiModelsSecurityRolesContainerPermissionResponse ¶

func NewKeyfactorApiModelsSecurityRolesContainerPermissionResponse() *KeyfactorApiModelsSecurityRolesContainerPermissionResponse

NewKeyfactorApiModelsSecurityRolesContainerPermissionResponse instantiates a new KeyfactorApiModelsSecurityRolesContainerPermissionResponse 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 NewKeyfactorApiModelsSecurityRolesContainerPermissionResponseWithDefaults ¶

func NewKeyfactorApiModelsSecurityRolesContainerPermissionResponseWithDefaults() *KeyfactorApiModelsSecurityRolesContainerPermissionResponse

NewKeyfactorApiModelsSecurityRolesContainerPermissionResponseWithDefaults instantiates a new KeyfactorApiModelsSecurityRolesContainerPermissionResponse 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 (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) GetContainerId ¶

GetContainerId returns the ContainerId field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) GetContainerIdOk ¶

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

func (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) GetName ¶

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

func (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) 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 (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) GetPermission ¶

GetPermission returns the Permission field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) GetPermissionOk ¶

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

func (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) HasContainerId ¶

HasContainerId returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) HasPermission ¶

HasPermission returns a boolean if a field has been set.

func (KeyfactorApiModelsSecurityRolesContainerPermissionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) SetContainerId ¶

SetContainerId gets a reference to the given int32 and assigns it to the ContainerId field.

func (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) SetName ¶

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

func (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) SetPermission ¶

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (KeyfactorApiModelsSecurityRolesContainerPermissionResponse) ToMap ¶

func (*KeyfactorApiModelsSecurityRolesContainerPermissionResponse) UnmarshalJSON ¶

type KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest ¶

type KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest struct {
	CollectionId         *int32  `json:"CollectionId,omitempty"`
	Permission           *string `json:"Permission,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest struct for KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest ¶

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest() *KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest

NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest instantiates a new KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest 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 NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequestWithDefaults ¶

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequestWithDefaults() *KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest

NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequestWithDefaults instantiates a new KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest 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 (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) GetCollectionId ¶

GetCollectionId returns the CollectionId field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) GetCollectionIdOk ¶

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

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) GetPermission ¶

GetPermission returns the Permission field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) GetPermissionOk ¶

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

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) HasCollectionId ¶

HasCollectionId returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) HasPermission ¶

HasPermission returns a boolean if a field has been set.

func (KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) MarshalJSON ¶

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) SetCollectionId ¶

SetCollectionId gets a reference to the given int32 and assigns it to the CollectionId field.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) SetPermission ¶

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) ToMap ¶

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) UnmarshalJSON ¶

type KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse ¶

type KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse struct {
	CollectionId         *int32  `json:"CollectionId,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	Permission           *string `json:"Permission,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse struct for KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse ¶

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse() *KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse

NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse instantiates a new KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse 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 NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponseWithDefaults ¶

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponseWithDefaults() *KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse

NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponseWithDefaults instantiates a new KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse 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 (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) GetCollectionId ¶

GetCollectionId returns the CollectionId field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) GetCollectionIdOk ¶

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

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) GetName ¶

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

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) 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 (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) GetPermission ¶

GetPermission returns the Permission field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) GetPermissionOk ¶

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

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) HasCollectionId ¶

HasCollectionId returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) HasPermission ¶

HasPermission returns a boolean if a field has been set.

func (KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) SetCollectionId ¶

SetCollectionId gets a reference to the given int32 and assigns it to the CollectionId field.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) SetName ¶

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

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) SetPermission ¶

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) ToMap ¶

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) UnmarshalJSON ¶

type KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest ¶

type KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest struct {
	Area                 *string `json:"Area,omitempty"`
	Permission           *string `json:"Permission,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest struct for KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest ¶

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest() *KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest

NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest instantiates a new KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest 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 NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequestWithDefaults ¶

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequestWithDefaults() *KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest

NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequestWithDefaults instantiates a new KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest 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 (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) GetArea ¶

GetArea returns the Area field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) GetAreaOk ¶

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

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) GetPermission ¶

GetPermission returns the Permission field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) GetPermissionOk ¶

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

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) HasArea ¶

HasArea returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) HasPermission ¶

HasPermission returns a boolean if a field has been set.

func (KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) MarshalJSON ¶

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) SetArea ¶

SetArea gets a reference to the given string and assigns it to the Area field.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) SetPermission ¶

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) ToMap ¶

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) UnmarshalJSON ¶

type KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse ¶

type KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse struct {
	Area                 *string `json:"Area,omitempty"`
	Permission           *string `json:"Permission,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse struct for KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse ¶

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse() *KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse

NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse instantiates a new KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse 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 NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponseWithDefaults ¶

func NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponseWithDefaults() *KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse

NewKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponseWithDefaults instantiates a new KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse 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 (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) GetArea ¶

GetArea returns the Area field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) GetAreaOk ¶

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

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) GetPermission ¶

GetPermission returns the Permission field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) GetPermissionOk ¶

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

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) HasArea ¶

HasArea returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) HasPermission ¶

HasPermission returns a boolean if a field has been set.

func (KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) SetArea ¶

SetArea gets a reference to the given string and assigns it to the Area field.

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) SetPermission ¶

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) ToMap ¶

func (*KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) UnmarshalJSON ¶

type KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest ¶

type KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest struct {
	Ids                  []int32 `json:"Ids,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest struct for KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest

func NewKeyfactorApiModelsSecurityRolesRoleIdentitiesRequest ¶

func NewKeyfactorApiModelsSecurityRolesRoleIdentitiesRequest() *KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest

NewKeyfactorApiModelsSecurityRolesRoleIdentitiesRequest instantiates a new KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest 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 NewKeyfactorApiModelsSecurityRolesRoleIdentitiesRequestWithDefaults ¶

func NewKeyfactorApiModelsSecurityRolesRoleIdentitiesRequestWithDefaults() *KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest

NewKeyfactorApiModelsSecurityRolesRoleIdentitiesRequestWithDefaults instantiates a new KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest 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 (*KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) GetIds ¶

GetIds returns the Ids field value if set, zero value otherwise.

func (*KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) GetIdsOk ¶

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

func (*KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) HasIds ¶

HasIds returns a boolean if a field has been set.

func (KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) MarshalJSON ¶

func (*KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) SetIds ¶

SetIds gets a reference to the given []int32 and assigns it to the Ids field.

func (KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) ToMap ¶

func (*KeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse ¶

type KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse struct {
	Id                   *int32  `json:"Id,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse struct for KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse

func NewKeyfactorApiModelsSecurityRolesRoleIdentitiesResponse ¶

func NewKeyfactorApiModelsSecurityRolesRoleIdentitiesResponse() *KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse

NewKeyfactorApiModelsSecurityRolesRoleIdentitiesResponse instantiates a new KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse 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 NewKeyfactorApiModelsSecurityRolesRoleIdentitiesResponseWithDefaults ¶

func NewKeyfactorApiModelsSecurityRolesRoleIdentitiesResponseWithDefaults() *KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse

NewKeyfactorApiModelsSecurityRolesRoleIdentitiesResponseWithDefaults instantiates a new KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse 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 (*KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) GetId ¶

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

func (*KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) GetIdOk ¶

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 (*KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) GetName ¶

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

func (*KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) 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 (*KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) MarshalJSON ¶

func (*KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) SetId ¶

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

func (*KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) SetName ¶

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

func (KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) ToMap ¶

func (*KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest ¶

type KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest struct {
	Name                 *string `json:"Name,omitempty"`
	Description          *string `json:"Description,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest struct for KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest

func NewKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest ¶

func NewKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest() *KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest

NewKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest instantiates a new KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest 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 NewKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequestWithDefaults ¶

func NewKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequestWithDefaults() *KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest

NewKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequestWithDefaults instantiates a new KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest 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 (*KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) GetDescription ¶

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

func (*KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) GetDescriptionOk ¶

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 (*KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) GetName ¶

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

func (*KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) 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 (*KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) HasName ¶

HasName returns a boolean if a field has been set.

func (KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) MarshalJSON ¶

func (*KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) SetDescription ¶

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

func (*KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) SetName ¶

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

func (KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) ToMap ¶

func (*KeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsSslCreateNetworkRequest ¶

type KeyfactorApiModelsSslCreateNetworkRequest struct {
	Name                 string                                      `json:"Name"`
	AgentPoolName        string                                      `json:"AgentPoolName"`
	Description          string                                      `json:"Description"`
	Enabled              *bool                                       `json:"Enabled,omitempty"`
	DiscoverSchedule     *KeyfactorCommonSchedulingKeyfactorSchedule `json:"DiscoverSchedule,omitempty"`
	MonitorSchedule      *KeyfactorCommonSchedulingKeyfactorSchedule `json:"MonitorSchedule,omitempty"`
	SslAlertRecipients   []string                                    `json:"SslAlertRecipients,omitempty"`
	AutoMonitor          *bool                                       `json:"AutoMonitor,omitempty"`
	GetRobots            *bool                                       `json:"GetRobots,omitempty"`
	DiscoverTimeoutMs    *float64                                    `json:"DiscoverTimeoutMs,omitempty"`
	MonitorTimeoutMs     *float64                                    `json:"MonitorTimeoutMs,omitempty"`
	ExpirationAlertDays  *float64                                    `json:"ExpirationAlertDays,omitempty"`
	QuietHours           []KeyfactorApiModelsSslQuietHourRequest     `json:"QuietHours,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSslCreateNetworkRequest struct for KeyfactorApiModelsSslCreateNetworkRequest

func NewKeyfactorApiModelsSslCreateNetworkRequest ¶

func NewKeyfactorApiModelsSslCreateNetworkRequest(name string, agentPoolName string, description string) *KeyfactorApiModelsSslCreateNetworkRequest

NewKeyfactorApiModelsSslCreateNetworkRequest instantiates a new KeyfactorApiModelsSslCreateNetworkRequest 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 NewKeyfactorApiModelsSslCreateNetworkRequestWithDefaults ¶

func NewKeyfactorApiModelsSslCreateNetworkRequestWithDefaults() *KeyfactorApiModelsSslCreateNetworkRequest

NewKeyfactorApiModelsSslCreateNetworkRequestWithDefaults instantiates a new KeyfactorApiModelsSslCreateNetworkRequest 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 (*KeyfactorApiModelsSslCreateNetworkRequest) GetAgentPoolName ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetAgentPoolName() string

GetAgentPoolName returns the AgentPoolName field value

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetAgentPoolNameOk ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetAgentPoolNameOk() (*string, bool)

GetAgentPoolNameOk returns a tuple with the AgentPoolName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetAutoMonitor ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetAutoMonitor() bool

GetAutoMonitor returns the AutoMonitor field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetAutoMonitorOk ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetAutoMonitorOk() (*bool, bool)

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetDescription ¶

GetDescription returns the Description field value

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetDescriptionOk ¶

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

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetDiscoverSchedule ¶

GetDiscoverSchedule returns the DiscoverSchedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetDiscoverScheduleOk ¶

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetDiscoverTimeoutMs() float64

GetDiscoverTimeoutMs returns the DiscoverTimeoutMs field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetDiscoverTimeoutMsOk ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetDiscoverTimeoutMsOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetEnabledOk ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetEnabledOk() (*bool, bool)

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetExpirationAlertDays() float64

GetExpirationAlertDays returns the ExpirationAlertDays field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetExpirationAlertDaysOk ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetExpirationAlertDaysOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetGetRobots ¶

GetGetRobots returns the GetRobots field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetGetRobotsOk ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetGetRobotsOk() (*bool, bool)

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetMonitorSchedule ¶

GetMonitorSchedule returns the MonitorSchedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetMonitorScheduleOk ¶

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetMonitorTimeoutMs() float64

GetMonitorTimeoutMs returns the MonitorTimeoutMs field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetMonitorTimeoutMsOk ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetMonitorTimeoutMsOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetNameOk ¶

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetQuietHours ¶

GetQuietHours returns the QuietHours field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetQuietHoursOk ¶

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetSslAlertRecipients() []string

GetSslAlertRecipients returns the SslAlertRecipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslCreateNetworkRequest) GetSslAlertRecipientsOk ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) GetSslAlertRecipientsOk() ([]string, bool)

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) HasAutoMonitor ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) HasAutoMonitor() bool

HasAutoMonitor returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslCreateNetworkRequest) HasDiscoverSchedule ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) HasDiscoverSchedule() bool

HasDiscoverSchedule returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslCreateNetworkRequest) HasDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) HasDiscoverTimeoutMs() bool

HasDiscoverTimeoutMs returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslCreateNetworkRequest) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslCreateNetworkRequest) HasExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) HasExpirationAlertDays() bool

HasExpirationAlertDays returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslCreateNetworkRequest) HasGetRobots ¶

HasGetRobots returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslCreateNetworkRequest) HasMonitorSchedule ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) HasMonitorSchedule() bool

HasMonitorSchedule returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslCreateNetworkRequest) HasMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) HasMonitorTimeoutMs() bool

HasMonitorTimeoutMs returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslCreateNetworkRequest) HasQuietHours ¶

HasQuietHours returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslCreateNetworkRequest) HasSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) HasSslAlertRecipients() bool

HasSslAlertRecipients returns a boolean if a field has been set.

func (KeyfactorApiModelsSslCreateNetworkRequest) MarshalJSON ¶

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetAgentPoolName ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) SetAgentPoolName(v string)

SetAgentPoolName sets field value

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetAutoMonitor ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) SetAutoMonitor(v bool)

SetAutoMonitor gets a reference to the given bool and assigns it to the AutoMonitor field.

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetDescription ¶

SetDescription sets field value

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetDiscoverSchedule ¶

SetDiscoverSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the DiscoverSchedule field.

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) SetDiscoverTimeoutMs(v float64)

SetDiscoverTimeoutMs gets a reference to the given float64 and assigns it to the DiscoverTimeoutMs field.

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) SetExpirationAlertDays(v float64)

SetExpirationAlertDays gets a reference to the given float64 and assigns it to the ExpirationAlertDays field.

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetGetRobots ¶

SetGetRobots gets a reference to the given bool and assigns it to the GetRobots field.

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetMonitorSchedule ¶

SetMonitorSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the MonitorSchedule field.

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) SetMonitorTimeoutMs(v float64)

SetMonitorTimeoutMs gets a reference to the given float64 and assigns it to the MonitorTimeoutMs field.

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetQuietHours ¶

SetQuietHours gets a reference to the given []KeyfactorApiModelsSslQuietHourRequest and assigns it to the QuietHours field.

func (*KeyfactorApiModelsSslCreateNetworkRequest) SetSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslCreateNetworkRequest) SetSslAlertRecipients(v []string)

SetSslAlertRecipients gets a reference to the given []string and assigns it to the SslAlertRecipients field.

func (KeyfactorApiModelsSslCreateNetworkRequest) ToMap ¶

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

func (*KeyfactorApiModelsSslCreateNetworkRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsSslNetworkQueryResponse ¶

type KeyfactorApiModelsSslNetworkQueryResponse struct {
	NetworkId               *string                                     `json:"NetworkId,omitempty"`
	Name                    *string                                     `json:"Name,omitempty"`
	AgentPoolName           *string                                     `json:"AgentPoolName,omitempty"`
	AgentPoolId             *string                                     `json:"AgentPoolId,omitempty"`
	Description             *string                                     `json:"Description,omitempty"`
	Enabled                 *bool                                       `json:"Enabled,omitempty"`
	DiscoverSchedule        *KeyfactorCommonSchedulingKeyfactorSchedule `json:"DiscoverSchedule,omitempty"`
	MonitorSchedule         *KeyfactorCommonSchedulingKeyfactorSchedule `json:"MonitorSchedule,omitempty"`
	DiscoverPercentComplete *float64                                    `json:"DiscoverPercentComplete,omitempty"`
	MonitorPercentComplete  *float64                                    `json:"MonitorPercentComplete,omitempty"`
	DiscoverStatus          *int32                                      `json:"DiscoverStatus,omitempty"`
	MonitorStatus           *int32                                      `json:"MonitorStatus,omitempty"`
	DiscoverLastScanned     *time.Time                                  `json:"DiscoverLastScanned,omitempty"`
	MonitorLastScanned      *time.Time                                  `json:"MonitorLastScanned,omitempty"`
	SslAlertRecipients      []string                                    `json:"SslAlertRecipients,omitempty"`
	AutoMonitor             *bool                                       `json:"AutoMonitor,omitempty"`
	GetRobots               *bool                                       `json:"GetRobots,omitempty"`
	DiscoverTimeoutMs       *float64                                    `json:"DiscoverTimeoutMs,omitempty"`
	MonitorTimeoutMs        *float64                                    `json:"MonitorTimeoutMs,omitempty"`
	ExpirationAlertDays     *float64                                    `json:"ExpirationAlertDays,omitempty"`
	DiscoverJobParts        *int32                                      `json:"DiscoverJobParts,omitempty"`
	MonitorJobParts         *int32                                      `json:"MonitorJobParts,omitempty"`
	QuietHours              []KeyfactorApiModelsSslQuietHourResponse    `json:"QuietHours,omitempty"`
	AdditionalProperties    map[string]interface{}
}

KeyfactorApiModelsSslNetworkQueryResponse struct for KeyfactorApiModelsSslNetworkQueryResponse

func NewKeyfactorApiModelsSslNetworkQueryResponse ¶

func NewKeyfactorApiModelsSslNetworkQueryResponse() *KeyfactorApiModelsSslNetworkQueryResponse

NewKeyfactorApiModelsSslNetworkQueryResponse instantiates a new KeyfactorApiModelsSslNetworkQueryResponse 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 NewKeyfactorApiModelsSslNetworkQueryResponseWithDefaults ¶

func NewKeyfactorApiModelsSslNetworkQueryResponseWithDefaults() *KeyfactorApiModelsSslNetworkQueryResponse

NewKeyfactorApiModelsSslNetworkQueryResponseWithDefaults instantiates a new KeyfactorApiModelsSslNetworkQueryResponse 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 (*KeyfactorApiModelsSslNetworkQueryResponse) GetAgentPoolId ¶

GetAgentPoolId returns the AgentPoolId field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetAgentPoolIdOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetAgentPoolIdOk() (*string, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetAgentPoolName ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetAgentPoolName() string

GetAgentPoolName returns the AgentPoolName field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetAgentPoolNameOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetAgentPoolNameOk() (*string, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetAutoMonitor ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetAutoMonitor() bool

GetAutoMonitor returns the AutoMonitor field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetAutoMonitorOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetAutoMonitorOk() (*bool, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDescription ¶

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDescriptionOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) 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 (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverJobParts ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverJobParts() int32

GetDiscoverJobParts returns the DiscoverJobParts field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverJobPartsOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverJobPartsOk() (*int32, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverLastScanned() time.Time

GetDiscoverLastScanned returns the DiscoverLastScanned field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverLastScannedOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverLastScannedOk() (*time.Time, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverPercentComplete() float64

GetDiscoverPercentComplete returns the DiscoverPercentComplete field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverPercentCompleteOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverPercentCompleteOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverSchedule ¶

GetDiscoverSchedule returns the DiscoverSchedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverScheduleOk ¶

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverStatus ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverStatus() int32

GetDiscoverStatus returns the DiscoverStatus field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverStatusOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverStatusOk() (*int32, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverTimeoutMs() float64

GetDiscoverTimeoutMs returns the DiscoverTimeoutMs field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverTimeoutMsOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetDiscoverTimeoutMsOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetEnabledOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetEnabledOk() (*bool, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetExpirationAlertDays() float64

GetExpirationAlertDays returns the ExpirationAlertDays field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetExpirationAlertDaysOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetExpirationAlertDaysOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetGetRobots ¶

GetGetRobots returns the GetRobots field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetGetRobotsOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetGetRobotsOk() (*bool, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorJobParts ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorJobParts() int32

GetMonitorJobParts returns the MonitorJobParts field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorJobPartsOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorJobPartsOk() (*int32, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorLastScanned() time.Time

GetMonitorLastScanned returns the MonitorLastScanned field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorLastScannedOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorLastScannedOk() (*time.Time, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorPercentComplete() float64

GetMonitorPercentComplete returns the MonitorPercentComplete field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorPercentCompleteOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorPercentCompleteOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorSchedule ¶

GetMonitorSchedule returns the MonitorSchedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorScheduleOk ¶

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorStatus ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorStatus() int32

GetMonitorStatus returns the MonitorStatus field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorStatusOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorStatusOk() (*int32, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorTimeoutMs() float64

GetMonitorTimeoutMs returns the MonitorTimeoutMs field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorTimeoutMsOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetMonitorTimeoutMsOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetName ¶

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) 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 (*KeyfactorApiModelsSslNetworkQueryResponse) GetNetworkId ¶

GetNetworkId returns the NetworkId field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetNetworkIdOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetNetworkIdOk() (*string, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetQuietHours ¶

GetQuietHours returns the QuietHours field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetQuietHoursOk ¶

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetSslAlertRecipients() []string

GetSslAlertRecipients returns the SslAlertRecipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkQueryResponse) GetSslAlertRecipientsOk ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) GetSslAlertRecipientsOk() ([]string, bool)

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasAgentPoolId ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasAgentPoolId() bool

HasAgentPoolId returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasAgentPoolName ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasAgentPoolName() bool

HasAgentPoolName returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasAutoMonitor ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasAutoMonitor() bool

HasAutoMonitor returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasDescription ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverJobParts ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverJobParts() bool

HasDiscoverJobParts returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverLastScanned() bool

HasDiscoverLastScanned returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverPercentComplete() bool

HasDiscoverPercentComplete returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverSchedule ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverSchedule() bool

HasDiscoverSchedule returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverStatus ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverStatus() bool

HasDiscoverStatus returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasDiscoverTimeoutMs() bool

HasDiscoverTimeoutMs returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasExpirationAlertDays() bool

HasExpirationAlertDays returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasGetRobots ¶

HasGetRobots returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorJobParts ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorJobParts() bool

HasMonitorJobParts returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorLastScanned() bool

HasMonitorLastScanned returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorPercentComplete() bool

HasMonitorPercentComplete returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorSchedule ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorSchedule() bool

HasMonitorSchedule returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorStatus ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorStatus() bool

HasMonitorStatus returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasMonitorTimeoutMs() bool

HasMonitorTimeoutMs returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasNetworkId ¶

HasNetworkId returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasQuietHours ¶

HasQuietHours returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkQueryResponse) HasSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) HasSslAlertRecipients() bool

HasSslAlertRecipients returns a boolean if a field has been set.

func (KeyfactorApiModelsSslNetworkQueryResponse) MarshalJSON ¶

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetAgentPoolId ¶

SetAgentPoolId gets a reference to the given string and assigns it to the AgentPoolId field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetAgentPoolName ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetAgentPoolName(v string)

SetAgentPoolName gets a reference to the given string and assigns it to the AgentPoolName field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetAutoMonitor ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetAutoMonitor(v bool)

SetAutoMonitor gets a reference to the given bool and assigns it to the AutoMonitor field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetDescription ¶

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetDiscoverJobParts ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetDiscoverJobParts(v int32)

SetDiscoverJobParts gets a reference to the given int32 and assigns it to the DiscoverJobParts field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetDiscoverLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetDiscoverLastScanned(v time.Time)

SetDiscoverLastScanned gets a reference to the given time.Time and assigns it to the DiscoverLastScanned field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetDiscoverPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetDiscoverPercentComplete(v float64)

SetDiscoverPercentComplete gets a reference to the given float64 and assigns it to the DiscoverPercentComplete field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetDiscoverSchedule ¶

SetDiscoverSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the DiscoverSchedule field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetDiscoverStatus ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetDiscoverStatus(v int32)

SetDiscoverStatus gets a reference to the given int32 and assigns it to the DiscoverStatus field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetDiscoverTimeoutMs(v float64)

SetDiscoverTimeoutMs gets a reference to the given float64 and assigns it to the DiscoverTimeoutMs field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetExpirationAlertDays(v float64)

SetExpirationAlertDays gets a reference to the given float64 and assigns it to the ExpirationAlertDays field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetGetRobots ¶

SetGetRobots gets a reference to the given bool and assigns it to the GetRobots field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetMonitorJobParts ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetMonitorJobParts(v int32)

SetMonitorJobParts gets a reference to the given int32 and assigns it to the MonitorJobParts field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetMonitorLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetMonitorLastScanned(v time.Time)

SetMonitorLastScanned gets a reference to the given time.Time and assigns it to the MonitorLastScanned field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetMonitorPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetMonitorPercentComplete(v float64)

SetMonitorPercentComplete gets a reference to the given float64 and assigns it to the MonitorPercentComplete field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetMonitorSchedule ¶

SetMonitorSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the MonitorSchedule field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetMonitorStatus ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetMonitorStatus(v int32)

SetMonitorStatus gets a reference to the given int32 and assigns it to the MonitorStatus field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetMonitorTimeoutMs(v float64)

SetMonitorTimeoutMs gets a reference to the given float64 and assigns it to the MonitorTimeoutMs field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetName ¶

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetNetworkId ¶

SetNetworkId gets a reference to the given string and assigns it to the NetworkId field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetQuietHours ¶

SetQuietHours gets a reference to the given []KeyfactorApiModelsSslQuietHourResponse and assigns it to the QuietHours field.

func (*KeyfactorApiModelsSslNetworkQueryResponse) SetSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslNetworkQueryResponse) SetSslAlertRecipients(v []string)

SetSslAlertRecipients gets a reference to the given []string and assigns it to the SslAlertRecipients field.

func (KeyfactorApiModelsSslNetworkQueryResponse) ToMap ¶

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

func (*KeyfactorApiModelsSslNetworkQueryResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsSslNetworkResponse ¶

type KeyfactorApiModelsSslNetworkResponse struct {
	NetworkId               *string                                     `json:"NetworkId,omitempty"`
	Name                    *string                                     `json:"Name,omitempty"`
	AgentPoolName           *string                                     `json:"AgentPoolName,omitempty"`
	AgentPoolId             *string                                     `json:"AgentPoolId,omitempty"`
	Description             *string                                     `json:"Description,omitempty"`
	Enabled                 *bool                                       `json:"Enabled,omitempty"`
	DiscoverSchedule        *KeyfactorCommonSchedulingKeyfactorSchedule `json:"DiscoverSchedule,omitempty"`
	MonitorSchedule         *KeyfactorCommonSchedulingKeyfactorSchedule `json:"MonitorSchedule,omitempty"`
	DiscoverPercentComplete *float64                                    `json:"DiscoverPercentComplete,omitempty"`
	MonitorPercentComplete  *float64                                    `json:"MonitorPercentComplete,omitempty"`
	DiscoverStatus          *int32                                      `json:"DiscoverStatus,omitempty"`
	MonitorStatus           *int32                                      `json:"MonitorStatus,omitempty"`
	DiscoverLastScanned     *time.Time                                  `json:"DiscoverLastScanned,omitempty"`
	MonitorLastScanned      *time.Time                                  `json:"MonitorLastScanned,omitempty"`
	SslAlertRecipients      []string                                    `json:"SslAlertRecipients,omitempty"`
	AutoMonitor             *bool                                       `json:"AutoMonitor,omitempty"`
	GetRobots               *bool                                       `json:"GetRobots,omitempty"`
	DiscoverTimeoutMs       *float64                                    `json:"DiscoverTimeoutMs,omitempty"`
	MonitorTimeoutMs        *float64                                    `json:"MonitorTimeoutMs,omitempty"`
	ExpirationAlertDays     *float64                                    `json:"ExpirationAlertDays,omitempty"`
	DiscoverJobParts        *int32                                      `json:"DiscoverJobParts,omitempty"`
	MonitorJobParts         *int32                                      `json:"MonitorJobParts,omitempty"`
	QuietHours              []KeyfactorApiModelsSslQuietHourResponse    `json:"QuietHours,omitempty"`
	AdditionalProperties    map[string]interface{}
}

KeyfactorApiModelsSslNetworkResponse struct for KeyfactorApiModelsSslNetworkResponse

func NewKeyfactorApiModelsSslNetworkResponse ¶

func NewKeyfactorApiModelsSslNetworkResponse() *KeyfactorApiModelsSslNetworkResponse

NewKeyfactorApiModelsSslNetworkResponse instantiates a new KeyfactorApiModelsSslNetworkResponse 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 NewKeyfactorApiModelsSslNetworkResponseWithDefaults ¶

func NewKeyfactorApiModelsSslNetworkResponseWithDefaults() *KeyfactorApiModelsSslNetworkResponse

NewKeyfactorApiModelsSslNetworkResponseWithDefaults instantiates a new KeyfactorApiModelsSslNetworkResponse 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 (*KeyfactorApiModelsSslNetworkResponse) GetAgentPoolId ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetAgentPoolId() string

GetAgentPoolId returns the AgentPoolId field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetAgentPoolIdOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetAgentPoolIdOk() (*string, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetAgentPoolName ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetAgentPoolName() string

GetAgentPoolName returns the AgentPoolName field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetAgentPoolNameOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetAgentPoolNameOk() (*string, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetAutoMonitor ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetAutoMonitor() bool

GetAutoMonitor returns the AutoMonitor field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetAutoMonitorOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetAutoMonitorOk() (*bool, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetDescription ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetDescription() string

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

func (*KeyfactorApiModelsSslNetworkResponse) GetDescriptionOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) 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 (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverJobParts ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetDiscoverJobParts() int32

GetDiscoverJobParts returns the DiscoverJobParts field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverJobPartsOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetDiscoverJobPartsOk() (*int32, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetDiscoverLastScanned() time.Time

GetDiscoverLastScanned returns the DiscoverLastScanned field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverLastScannedOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetDiscoverLastScannedOk() (*time.Time, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetDiscoverPercentComplete() float64

GetDiscoverPercentComplete returns the DiscoverPercentComplete field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverPercentCompleteOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetDiscoverPercentCompleteOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverSchedule ¶

GetDiscoverSchedule returns the DiscoverSchedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverScheduleOk ¶

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

func (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverStatus ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetDiscoverStatus() int32

GetDiscoverStatus returns the DiscoverStatus field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverStatusOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetDiscoverStatusOk() (*int32, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetDiscoverTimeoutMs() float64

GetDiscoverTimeoutMs returns the DiscoverTimeoutMs field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetDiscoverTimeoutMsOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetDiscoverTimeoutMsOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetEnabledOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetEnabledOk() (*bool, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetExpirationAlertDays() float64

GetExpirationAlertDays returns the ExpirationAlertDays field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetExpirationAlertDaysOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetExpirationAlertDaysOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetGetRobots ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetGetRobots() bool

GetGetRobots returns the GetRobots field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetGetRobotsOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetGetRobotsOk() (*bool, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorJobParts ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetMonitorJobParts() int32

GetMonitorJobParts returns the MonitorJobParts field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorJobPartsOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetMonitorJobPartsOk() (*int32, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetMonitorLastScanned() time.Time

GetMonitorLastScanned returns the MonitorLastScanned field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorLastScannedOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetMonitorLastScannedOk() (*time.Time, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetMonitorPercentComplete() float64

GetMonitorPercentComplete returns the MonitorPercentComplete field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorPercentCompleteOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetMonitorPercentCompleteOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorSchedule ¶

GetMonitorSchedule returns the MonitorSchedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorScheduleOk ¶

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

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorStatus ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetMonitorStatus() int32

GetMonitorStatus returns the MonitorStatus field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorStatusOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetMonitorStatusOk() (*int32, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetMonitorTimeoutMs() float64

GetMonitorTimeoutMs returns the MonitorTimeoutMs field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetMonitorTimeoutMsOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetMonitorTimeoutMsOk() (*float64, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetName ¶

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

func (*KeyfactorApiModelsSslNetworkResponse) 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 (*KeyfactorApiModelsSslNetworkResponse) GetNetworkId ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetNetworkId() string

GetNetworkId returns the NetworkId field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetNetworkIdOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetNetworkIdOk() (*string, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) GetQuietHours ¶

GetQuietHours returns the QuietHours field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetQuietHoursOk ¶

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

func (*KeyfactorApiModelsSslNetworkResponse) GetSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetSslAlertRecipients() []string

GetSslAlertRecipients returns the SslAlertRecipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslNetworkResponse) GetSslAlertRecipientsOk ¶

func (o *KeyfactorApiModelsSslNetworkResponse) GetSslAlertRecipientsOk() ([]string, bool)

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

func (*KeyfactorApiModelsSslNetworkResponse) HasAgentPoolId ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasAgentPoolId() bool

HasAgentPoolId returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasAgentPoolName ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasAgentPoolName() bool

HasAgentPoolName returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasAutoMonitor ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasAutoMonitor() bool

HasAutoMonitor returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasDescription ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasDiscoverJobParts ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasDiscoverJobParts() bool

HasDiscoverJobParts returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasDiscoverLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasDiscoverLastScanned() bool

HasDiscoverLastScanned returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasDiscoverPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasDiscoverPercentComplete() bool

HasDiscoverPercentComplete returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasDiscoverSchedule ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasDiscoverSchedule() bool

HasDiscoverSchedule returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasDiscoverStatus ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasDiscoverStatus() bool

HasDiscoverStatus returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasDiscoverTimeoutMs() bool

HasDiscoverTimeoutMs returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasExpirationAlertDays() bool

HasExpirationAlertDays returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasGetRobots ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasGetRobots() bool

HasGetRobots returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasMonitorJobParts ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasMonitorJobParts() bool

HasMonitorJobParts returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasMonitorLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasMonitorLastScanned() bool

HasMonitorLastScanned returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasMonitorPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasMonitorPercentComplete() bool

HasMonitorPercentComplete returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasMonitorSchedule ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasMonitorSchedule() bool

HasMonitorSchedule returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasMonitorStatus ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasMonitorStatus() bool

HasMonitorStatus returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasMonitorTimeoutMs() bool

HasMonitorTimeoutMs returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasNetworkId ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasNetworkId() bool

HasNetworkId returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasQuietHours ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasQuietHours() bool

HasQuietHours returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslNetworkResponse) HasSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslNetworkResponse) HasSslAlertRecipients() bool

HasSslAlertRecipients returns a boolean if a field has been set.

func (KeyfactorApiModelsSslNetworkResponse) MarshalJSON ¶

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

func (*KeyfactorApiModelsSslNetworkResponse) SetAgentPoolId ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetAgentPoolId(v string)

SetAgentPoolId gets a reference to the given string and assigns it to the AgentPoolId field.

func (*KeyfactorApiModelsSslNetworkResponse) SetAgentPoolName ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetAgentPoolName(v string)

SetAgentPoolName gets a reference to the given string and assigns it to the AgentPoolName field.

func (*KeyfactorApiModelsSslNetworkResponse) SetAutoMonitor ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetAutoMonitor(v bool)

SetAutoMonitor gets a reference to the given bool and assigns it to the AutoMonitor field.

func (*KeyfactorApiModelsSslNetworkResponse) SetDescription ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetDescription(v string)

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

func (*KeyfactorApiModelsSslNetworkResponse) SetDiscoverJobParts ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetDiscoverJobParts(v int32)

SetDiscoverJobParts gets a reference to the given int32 and assigns it to the DiscoverJobParts field.

func (*KeyfactorApiModelsSslNetworkResponse) SetDiscoverLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetDiscoverLastScanned(v time.Time)

SetDiscoverLastScanned gets a reference to the given time.Time and assigns it to the DiscoverLastScanned field.

func (*KeyfactorApiModelsSslNetworkResponse) SetDiscoverPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetDiscoverPercentComplete(v float64)

SetDiscoverPercentComplete gets a reference to the given float64 and assigns it to the DiscoverPercentComplete field.

func (*KeyfactorApiModelsSslNetworkResponse) SetDiscoverSchedule ¶

SetDiscoverSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the DiscoverSchedule field.

func (*KeyfactorApiModelsSslNetworkResponse) SetDiscoverStatus ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetDiscoverStatus(v int32)

SetDiscoverStatus gets a reference to the given int32 and assigns it to the DiscoverStatus field.

func (*KeyfactorApiModelsSslNetworkResponse) SetDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetDiscoverTimeoutMs(v float64)

SetDiscoverTimeoutMs gets a reference to the given float64 and assigns it to the DiscoverTimeoutMs field.

func (*KeyfactorApiModelsSslNetworkResponse) SetEnabled ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*KeyfactorApiModelsSslNetworkResponse) SetExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetExpirationAlertDays(v float64)

SetExpirationAlertDays gets a reference to the given float64 and assigns it to the ExpirationAlertDays field.

func (*KeyfactorApiModelsSslNetworkResponse) SetGetRobots ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetGetRobots(v bool)

SetGetRobots gets a reference to the given bool and assigns it to the GetRobots field.

func (*KeyfactorApiModelsSslNetworkResponse) SetMonitorJobParts ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetMonitorJobParts(v int32)

SetMonitorJobParts gets a reference to the given int32 and assigns it to the MonitorJobParts field.

func (*KeyfactorApiModelsSslNetworkResponse) SetMonitorLastScanned ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetMonitorLastScanned(v time.Time)

SetMonitorLastScanned gets a reference to the given time.Time and assigns it to the MonitorLastScanned field.

func (*KeyfactorApiModelsSslNetworkResponse) SetMonitorPercentComplete ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetMonitorPercentComplete(v float64)

SetMonitorPercentComplete gets a reference to the given float64 and assigns it to the MonitorPercentComplete field.

func (*KeyfactorApiModelsSslNetworkResponse) SetMonitorSchedule ¶

SetMonitorSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the MonitorSchedule field.

func (*KeyfactorApiModelsSslNetworkResponse) SetMonitorStatus ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetMonitorStatus(v int32)

SetMonitorStatus gets a reference to the given int32 and assigns it to the MonitorStatus field.

func (*KeyfactorApiModelsSslNetworkResponse) SetMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetMonitorTimeoutMs(v float64)

SetMonitorTimeoutMs gets a reference to the given float64 and assigns it to the MonitorTimeoutMs field.

func (*KeyfactorApiModelsSslNetworkResponse) SetName ¶

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

func (*KeyfactorApiModelsSslNetworkResponse) SetNetworkId ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetNetworkId(v string)

SetNetworkId gets a reference to the given string and assigns it to the NetworkId field.

func (*KeyfactorApiModelsSslNetworkResponse) SetQuietHours ¶

SetQuietHours gets a reference to the given []KeyfactorApiModelsSslQuietHourResponse and assigns it to the QuietHours field.

func (*KeyfactorApiModelsSslNetworkResponse) SetSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslNetworkResponse) SetSslAlertRecipients(v []string)

SetSslAlertRecipients gets a reference to the given []string and assigns it to the SslAlertRecipients field.

func (KeyfactorApiModelsSslNetworkResponse) ToMap ¶

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

func (*KeyfactorApiModelsSslNetworkResponse) UnmarshalJSON ¶

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

type KeyfactorApiModelsSslQuietHourRequest ¶

type KeyfactorApiModelsSslQuietHourRequest struct {
	StartDay             *int32     `json:"StartDay,omitempty"`
	StartTime            *time.Time `json:"StartTime,omitempty"`
	EndDay               *int32     `json:"EndDay,omitempty"`
	EndTime              *time.Time `json:"EndTime,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSslQuietHourRequest struct for KeyfactorApiModelsSslQuietHourRequest

func NewKeyfactorApiModelsSslQuietHourRequest ¶

func NewKeyfactorApiModelsSslQuietHourRequest() *KeyfactorApiModelsSslQuietHourRequest

NewKeyfactorApiModelsSslQuietHourRequest instantiates a new KeyfactorApiModelsSslQuietHourRequest 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 NewKeyfactorApiModelsSslQuietHourRequestWithDefaults ¶

func NewKeyfactorApiModelsSslQuietHourRequestWithDefaults() *KeyfactorApiModelsSslQuietHourRequest

NewKeyfactorApiModelsSslQuietHourRequestWithDefaults instantiates a new KeyfactorApiModelsSslQuietHourRequest 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 (*KeyfactorApiModelsSslQuietHourRequest) GetEndDay ¶

GetEndDay returns the EndDay field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslQuietHourRequest) GetEndDayOk ¶

func (o *KeyfactorApiModelsSslQuietHourRequest) GetEndDayOk() (*int32, bool)

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

func (*KeyfactorApiModelsSslQuietHourRequest) GetEndTime ¶

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslQuietHourRequest) GetEndTimeOk ¶

func (o *KeyfactorApiModelsSslQuietHourRequest) GetEndTimeOk() (*time.Time, bool)

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

func (*KeyfactorApiModelsSslQuietHourRequest) GetStartDay ¶

GetStartDay returns the StartDay field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslQuietHourRequest) GetStartDayOk ¶

func (o *KeyfactorApiModelsSslQuietHourRequest) GetStartDayOk() (*int32, bool)

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

func (*KeyfactorApiModelsSslQuietHourRequest) GetStartTime ¶

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslQuietHourRequest) GetStartTimeOk ¶

func (o *KeyfactorApiModelsSslQuietHourRequest) GetStartTimeOk() (*time.Time, bool)

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

func (*KeyfactorApiModelsSslQuietHourRequest) HasEndDay ¶

HasEndDay returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslQuietHourRequest) HasEndTime ¶

HasEndTime returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslQuietHourRequest) HasStartDay ¶

HasStartDay returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslQuietHourRequest) HasStartTime ¶

func (o *KeyfactorApiModelsSslQuietHourRequest) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (KeyfactorApiModelsSslQuietHourRequest) MarshalJSON ¶

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

func (*KeyfactorApiModelsSslQuietHourRequest) SetEndDay ¶

SetEndDay gets a reference to the given int32 and assigns it to the EndDay field.

func (*KeyfactorApiModelsSslQuietHourRequest) SetEndTime ¶

SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field.

func (*KeyfactorApiModelsSslQuietHourRequest) SetStartDay ¶

func (o *KeyfactorApiModelsSslQuietHourRequest) SetStartDay(v int32)

SetStartDay gets a reference to the given int32 and assigns it to the StartDay field.

func (*KeyfactorApiModelsSslQuietHourRequest) SetStartTime ¶

func (o *KeyfactorApiModelsSslQuietHourRequest) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (KeyfactorApiModelsSslQuietHourRequest) ToMap ¶

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

func (*KeyfactorApiModelsSslQuietHourRequest) UnmarshalJSON ¶

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

type KeyfactorApiModelsSslQuietHourResponse ¶

type KeyfactorApiModelsSslQuietHourResponse struct {
	StartDay             *int32     `json:"StartDay,omitempty"`
	StartTime            *time.Time `json:"StartTime,omitempty"`
	EndDay               *int32     `json:"EndDay,omitempty"`
	EndTime              *time.Time `json:"EndTime,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSslQuietHourResponse struct for KeyfactorApiModelsSslQuietHourResponse

func NewKeyfactorApiModelsSslQuietHourResponse ¶

func NewKeyfactorApiModelsSslQuietHourResponse() *KeyfactorApiModelsSslQuietHourResponse

NewKeyfactorApiModelsSslQuietHourResponse instantiates a new KeyfactorApiModelsSslQuietHourResponse 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 NewKeyfactorApiModelsSslQuietHourResponseWithDefaults ¶

func NewKeyfactorApiModelsSslQuietHourResponseWithDefaults() *KeyfactorApiModelsSslQuietHourResponse

NewKeyfactorApiModelsSslQuietHourResponseWithDefaults instantiates a new KeyfactorApiModelsSslQuietHourResponse 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 (*KeyfactorApiModelsSslQuietHourResponse) GetEndDay ¶

GetEndDay returns the EndDay field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslQuietHourResponse) GetEndDayOk ¶

func (o *KeyfactorApiModelsSslQuietHourResponse) GetEndDayOk() (*int32, bool)

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

func (*KeyfactorApiModelsSslQuietHourResponse) GetEndTime ¶

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslQuietHourResponse) GetEndTimeOk ¶

func (o *KeyfactorApiModelsSslQuietHourResponse) GetEndTimeOk() (*time.Time, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslQuietHourResponse) GetStartDay ¶

GetStartDay returns the StartDay field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslQuietHourResponse) GetStartDayOk ¶

func (o *KeyfactorApiModelsSslQuietHourResponse) GetStartDayOk() (*int32, bool)

GetStartDayOk returns a tuple with the StartDay field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslQuietHourResponse) GetStartTime ¶

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslQuietHourResponse) GetStartTimeOk ¶

func (o *KeyfactorApiModelsSslQuietHourResponse) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslQuietHourResponse) HasEndDay ¶

HasEndDay returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslQuietHourResponse) HasEndTime ¶

HasEndTime returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslQuietHourResponse) HasStartDay ¶

HasStartDay returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslQuietHourResponse) HasStartTime ¶

func (o *KeyfactorApiModelsSslQuietHourResponse) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (KeyfactorApiModelsSslQuietHourResponse) MarshalJSON ¶

func (o KeyfactorApiModelsSslQuietHourResponse) MarshalJSON() ([]byte, error)

func (*KeyfactorApiModelsSslQuietHourResponse) SetEndDay ¶

SetEndDay gets a reference to the given int32 and assigns it to the EndDay field.

func (*KeyfactorApiModelsSslQuietHourResponse) SetEndTime ¶

SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field.

func (*KeyfactorApiModelsSslQuietHourResponse) SetStartDay ¶

SetStartDay gets a reference to the given int32 and assigns it to the StartDay field.

func (*KeyfactorApiModelsSslQuietHourResponse) SetStartTime ¶

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (KeyfactorApiModelsSslQuietHourResponse) ToMap ¶

func (o KeyfactorApiModelsSslQuietHourResponse) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiModelsSslQuietHourResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsSslQuietHourResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsSslUpdateNetworkRequest ¶

type KeyfactorApiModelsSslUpdateNetworkRequest struct {
	NetworkId            string                                      `json:"NetworkId"`
	Name                 string                                      `json:"Name"`
	AgentPoolName        string                                      `json:"AgentPoolName"`
	Description          string                                      `json:"Description"`
	Enabled              *bool                                       `json:"Enabled,omitempty"`
	DiscoverSchedule     *KeyfactorCommonSchedulingKeyfactorSchedule `json:"DiscoverSchedule,omitempty"`
	MonitorSchedule      *KeyfactorCommonSchedulingKeyfactorSchedule `json:"MonitorSchedule,omitempty"`
	SslAlertRecipients   []string                                    `json:"SslAlertRecipients,omitempty"`
	AutoMonitor          *bool                                       `json:"AutoMonitor,omitempty"`
	GetRobots            *bool                                       `json:"GetRobots,omitempty"`
	DiscoverTimeoutMs    *float64                                    `json:"DiscoverTimeoutMs,omitempty"`
	MonitorTimeoutMs     *float64                                    `json:"MonitorTimeoutMs,omitempty"`
	ExpirationAlertDays  *float64                                    `json:"ExpirationAlertDays,omitempty"`
	QuietHours           []KeyfactorApiModelsSslQuietHourRequest     `json:"QuietHours,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsSslUpdateNetworkRequest struct for KeyfactorApiModelsSslUpdateNetworkRequest

func NewKeyfactorApiModelsSslUpdateNetworkRequest ¶

func NewKeyfactorApiModelsSslUpdateNetworkRequest(networkId string, name string, agentPoolName string, description string) *KeyfactorApiModelsSslUpdateNetworkRequest

NewKeyfactorApiModelsSslUpdateNetworkRequest instantiates a new KeyfactorApiModelsSslUpdateNetworkRequest 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 NewKeyfactorApiModelsSslUpdateNetworkRequestWithDefaults ¶

func NewKeyfactorApiModelsSslUpdateNetworkRequestWithDefaults() *KeyfactorApiModelsSslUpdateNetworkRequest

NewKeyfactorApiModelsSslUpdateNetworkRequestWithDefaults instantiates a new KeyfactorApiModelsSslUpdateNetworkRequest 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 (*KeyfactorApiModelsSslUpdateNetworkRequest) GetAgentPoolName ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetAgentPoolName() string

GetAgentPoolName returns the AgentPoolName field value

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetAgentPoolNameOk ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetAgentPoolNameOk() (*string, bool)

GetAgentPoolNameOk returns a tuple with the AgentPoolName field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetAutoMonitor ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetAutoMonitor() bool

GetAutoMonitor returns the AutoMonitor field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetAutoMonitorOk ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetAutoMonitorOk() (*bool, bool)

GetAutoMonitorOk returns a tuple with the AutoMonitor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetDescription ¶

GetDescription returns the Description field value

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetDescriptionOk ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetDiscoverSchedule ¶

GetDiscoverSchedule returns the DiscoverSchedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetDiscoverScheduleOk ¶

GetDiscoverScheduleOk returns a tuple with the DiscoverSchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetDiscoverTimeoutMs() float64

GetDiscoverTimeoutMs returns the DiscoverTimeoutMs field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetDiscoverTimeoutMsOk ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetDiscoverTimeoutMsOk() (*float64, bool)

GetDiscoverTimeoutMsOk returns a tuple with the DiscoverTimeoutMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetEnabledOk ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetExpirationAlertDays() float64

GetExpirationAlertDays returns the ExpirationAlertDays field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetExpirationAlertDaysOk ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetExpirationAlertDaysOk() (*float64, bool)

GetExpirationAlertDaysOk returns a tuple with the ExpirationAlertDays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetGetRobots ¶

GetGetRobots returns the GetRobots field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetGetRobotsOk ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetGetRobotsOk() (*bool, bool)

GetGetRobotsOk returns a tuple with the GetRobots field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetMonitorSchedule ¶

GetMonitorSchedule returns the MonitorSchedule field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetMonitorScheduleOk ¶

GetMonitorScheduleOk returns a tuple with the MonitorSchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetMonitorTimeoutMs() float64

GetMonitorTimeoutMs returns the MonitorTimeoutMs field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetMonitorTimeoutMsOk ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetMonitorTimeoutMsOk() (*float64, bool)

GetMonitorTimeoutMsOk returns a tuple with the MonitorTimeoutMs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetNameOk ¶

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetNetworkId ¶

GetNetworkId returns the NetworkId field value

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetNetworkIdOk ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetNetworkIdOk() (*string, bool)

GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetQuietHours ¶

GetQuietHours returns the QuietHours field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetQuietHoursOk ¶

GetQuietHoursOk returns a tuple with the QuietHours field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetSslAlertRecipients() []string

GetSslAlertRecipients returns the SslAlertRecipients field value if set, zero value otherwise.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) GetSslAlertRecipientsOk ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) GetSslAlertRecipientsOk() ([]string, bool)

GetSslAlertRecipientsOk returns a tuple with the SslAlertRecipients field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) HasAutoMonitor ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) HasAutoMonitor() bool

HasAutoMonitor returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) HasDiscoverSchedule ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) HasDiscoverSchedule() bool

HasDiscoverSchedule returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) HasDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) HasDiscoverTimeoutMs() bool

HasDiscoverTimeoutMs returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) HasExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) HasExpirationAlertDays() bool

HasExpirationAlertDays returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) HasGetRobots ¶

HasGetRobots returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) HasMonitorSchedule ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) HasMonitorSchedule() bool

HasMonitorSchedule returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) HasMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) HasMonitorTimeoutMs() bool

HasMonitorTimeoutMs returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) HasQuietHours ¶

HasQuietHours returns a boolean if a field has been set.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) HasSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) HasSslAlertRecipients() bool

HasSslAlertRecipients returns a boolean if a field has been set.

func (KeyfactorApiModelsSslUpdateNetworkRequest) MarshalJSON ¶

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetAgentPoolName ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) SetAgentPoolName(v string)

SetAgentPoolName sets field value

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetAutoMonitor ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) SetAutoMonitor(v bool)

SetAutoMonitor gets a reference to the given bool and assigns it to the AutoMonitor field.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetDescription ¶

SetDescription sets field value

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetDiscoverSchedule ¶

SetDiscoverSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the DiscoverSchedule field.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetDiscoverTimeoutMs ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) SetDiscoverTimeoutMs(v float64)

SetDiscoverTimeoutMs gets a reference to the given float64 and assigns it to the DiscoverTimeoutMs field.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetExpirationAlertDays ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) SetExpirationAlertDays(v float64)

SetExpirationAlertDays gets a reference to the given float64 and assigns it to the ExpirationAlertDays field.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetGetRobots ¶

SetGetRobots gets a reference to the given bool and assigns it to the GetRobots field.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetMonitorSchedule ¶

SetMonitorSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the MonitorSchedule field.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetMonitorTimeoutMs ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) SetMonitorTimeoutMs(v float64)

SetMonitorTimeoutMs gets a reference to the given float64 and assigns it to the MonitorTimeoutMs field.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetNetworkId ¶

SetNetworkId sets field value

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetQuietHours ¶

SetQuietHours gets a reference to the given []KeyfactorApiModelsSslQuietHourRequest and assigns it to the QuietHours field.

func (*KeyfactorApiModelsSslUpdateNetworkRequest) SetSslAlertRecipients ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) SetSslAlertRecipients(v []string)

SetSslAlertRecipients gets a reference to the given []string and assigns it to the SslAlertRecipients field.

func (KeyfactorApiModelsSslUpdateNetworkRequest) ToMap ¶

func (o KeyfactorApiModelsSslUpdateNetworkRequest) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiModelsSslUpdateNetworkRequest) UnmarshalJSON ¶

func (o *KeyfactorApiModelsSslUpdateNetworkRequest) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest ¶

type KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest struct {
	// The subject part to apply the default to.
	SubjectPart string `json:"SubjectPart"`
	// The value to apply by default.
	Value                *string `json:"Value,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest struct for KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest

func NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest(subjectPart string) *KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest

NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest 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 NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequestWithDefaults ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequestWithDefaults() *KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest

NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequestWithDefaults instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest 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 (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) GetSubjectPartOk ¶

GetSubjectPartOk returns a tuple with the SubjectPart field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) 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 (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) HasValue ¶

HasValue returns a boolean if a field has been set.

func (KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) SetSubjectPart ¶

SetSubjectPart sets field value

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) SetValue ¶

SetValue gets a reference to the given string and assigns it to the Value field.

func (KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) ToMap ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) UnmarshalJSON ¶

func (o *KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse ¶

type KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse struct {
	// The subject part to apply the default to.
	SubjectPart *string `json:"SubjectPart,omitempty"`
	// The value to apply by default.
	Value                *string `json:"Value,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse struct for KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse

func NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse() *KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse

NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse 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 NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponseWithDefaults ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponseWithDefaults() *KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse

NewKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponseWithDefaults instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse 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 (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) GetSubjectPartOk ¶

GetSubjectPartOk returns a tuple with the SubjectPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) 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 (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) HasSubjectPart ¶

HasSubjectPart returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) HasValue ¶

HasValue returns a boolean if a field has been set.

func (KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) SetSubjectPart ¶

SetSubjectPart gets a reference to the given string and assigns it to the SubjectPart field.

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) SetValue ¶

SetValue gets a reference to the given string and assigns it to the Value field.

func (KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) ToMap ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) UnmarshalJSON ¶

type KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest ¶

type KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest struct {
	// The allowed RSA key sizes.
	RSAValidKeySizes []int32 `json:"RSAValidKeySizes"`
	// The allowed ECC curves.
	ECCValidCurves []string `json:"ECCValidCurves"`
	// Whether or not keys can be reused.
	AllowKeyReuse bool `json:"AllowKeyReuse"`
	// Whether or not wildcards can be used.
	AllowWildcards bool `json:"AllowWildcards"`
	// Whether or not RFC 2818 compliance should be enforced.
	RFCEnforcement       bool `json:"RFCEnforcement"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest struct for KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest

func NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest(rSAValidKeySizes []int32, eCCValidCurves []string, allowKeyReuse bool, allowWildcards bool, rFCEnforcement bool) *KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest

NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest instantiates a new KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest 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 NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequestWithDefaults ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequestWithDefaults() *KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest

NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequestWithDefaults instantiates a new KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest 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 (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) GetAllowKeyReuse ¶

GetAllowKeyReuse returns the AllowKeyReuse field value

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) GetAllowKeyReuseOk ¶

GetAllowKeyReuseOk returns a tuple with the AllowKeyReuse field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) GetAllowWildcards ¶

GetAllowWildcards returns the AllowWildcards field value

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) GetAllowWildcardsOk ¶

GetAllowWildcardsOk returns a tuple with the AllowWildcards field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) GetECCValidCurves ¶

GetECCValidCurves returns the ECCValidCurves field value

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) GetECCValidCurvesOk ¶

GetECCValidCurvesOk returns a tuple with the ECCValidCurves field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) GetRFCEnforcement ¶

GetRFCEnforcement returns the RFCEnforcement field value

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) GetRFCEnforcementOk ¶

GetRFCEnforcementOk returns a tuple with the RFCEnforcement field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) GetRSAValidKeySizes ¶

GetRSAValidKeySizes returns the RSAValidKeySizes field value

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) GetRSAValidKeySizesOk ¶

func (o *KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) GetRSAValidKeySizesOk() ([]int32, bool)

GetRSAValidKeySizesOk returns a tuple with the RSAValidKeySizes field value and a boolean to check if the value has been set.

func (KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) SetAllowKeyReuse ¶

SetAllowKeyReuse sets field value

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) SetAllowWildcards ¶

SetAllowWildcards sets field value

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) SetECCValidCurves ¶

SetECCValidCurves sets field value

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) SetRFCEnforcement ¶

SetRFCEnforcement sets field value

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) SetRSAValidKeySizes ¶

SetRSAValidKeySizes sets field value

func (KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) ToMap ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) UnmarshalJSON ¶

func (o *KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse ¶

type KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse struct {
	// The allowed RSA key sizes.
	RSAValidKeySizes []int32 `json:"RSAValidKeySizes,omitempty"`
	// The allowed ECC curves.
	ECCValidCurves []string `json:"ECCValidCurves,omitempty"`
	// Whether or not keys can be reused.
	AllowKeyReuse *bool `json:"AllowKeyReuse,omitempty"`
	// Whether or not wildcards can be used.
	AllowWildcards *bool `json:"AllowWildcards,omitempty"`
	// Whether or not RFC 2818 compliance should be enforced.
	RFCEnforcement       *bool `json:"RFCEnforcement,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse struct for KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse

func NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse() *KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse

NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse instantiates a new KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse 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 NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponseWithDefaults ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponseWithDefaults() *KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse

NewKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponseWithDefaults instantiates a new KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse 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 (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) GetAllowKeyReuse ¶

GetAllowKeyReuse returns the AllowKeyReuse field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) GetAllowKeyReuseOk ¶

GetAllowKeyReuseOk returns a tuple with the AllowKeyReuse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) GetAllowWildcards ¶

GetAllowWildcards returns the AllowWildcards field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) GetAllowWildcardsOk ¶

GetAllowWildcardsOk returns a tuple with the AllowWildcards field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) GetECCValidCurves ¶

GetECCValidCurves returns the ECCValidCurves field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) GetECCValidCurvesOk ¶

GetECCValidCurvesOk returns a tuple with the ECCValidCurves field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) GetRFCEnforcement ¶

GetRFCEnforcement returns the RFCEnforcement field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) GetRFCEnforcementOk ¶

GetRFCEnforcementOk returns a tuple with the RFCEnforcement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) GetRSAValidKeySizes ¶

GetRSAValidKeySizes returns the RSAValidKeySizes field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) GetRSAValidKeySizesOk ¶

func (o *KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) GetRSAValidKeySizesOk() ([]int32, bool)

GetRSAValidKeySizesOk returns a tuple with the RSAValidKeySizes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) HasAllowKeyReuse ¶

HasAllowKeyReuse returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) HasAllowWildcards ¶

HasAllowWildcards returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) HasECCValidCurves ¶

HasECCValidCurves returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) HasRFCEnforcement ¶

HasRFCEnforcement returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) HasRSAValidKeySizes ¶

HasRSAValidKeySizes returns a boolean if a field has been set.

func (KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) SetAllowKeyReuse ¶

SetAllowKeyReuse gets a reference to the given bool and assigns it to the AllowKeyReuse field.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) SetAllowWildcards ¶

SetAllowWildcards gets a reference to the given bool and assigns it to the AllowWildcards field.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) SetECCValidCurves ¶

SetECCValidCurves gets a reference to the given []string and assigns it to the ECCValidCurves field.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) SetRFCEnforcement ¶

SetRFCEnforcement gets a reference to the given bool and assigns it to the RFCEnforcement field.

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) SetRSAValidKeySizes ¶

SetRSAValidKeySizes gets a reference to the given []int32 and assigns it to the RSAValidKeySizes field.

func (KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) ToMap ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest ¶

type KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest struct {
	// The subject part to apply the regular expression to.
	SubjectPart string `json:"SubjectPart"`
	// The regular expression to apply to the subject part.
	Regex *string `json:"Regex,omitempty"`
	// The error message to show when the regex validation fails.
	Error                *string `json:"Error,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest struct for KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest

func NewKeyfactorApiModelsTemplatesGlobalTemplateRegexRequest ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplateRegexRequest(subjectPart string) *KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest

NewKeyfactorApiModelsTemplatesGlobalTemplateRegexRequest instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest 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 NewKeyfactorApiModelsTemplatesGlobalTemplateRegexRequestWithDefaults ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplateRegexRequestWithDefaults() *KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest

NewKeyfactorApiModelsTemplatesGlobalTemplateRegexRequestWithDefaults instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest 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 (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) GetRegex ¶

GetRegex returns the Regex field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) GetRegexOk ¶

GetRegexOk returns a tuple with the Regex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) GetSubjectPartOk ¶

GetSubjectPartOk returns a tuple with the SubjectPart field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) HasError ¶

HasError returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) HasRegex ¶

HasRegex returns a boolean if a field has been set.

func (KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) SetError ¶

SetError gets a reference to the given string and assigns it to the Error field.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) SetRegex ¶

SetRegex gets a reference to the given string and assigns it to the Regex field.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) SetSubjectPart ¶

SetSubjectPart sets field value

func (KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) ToMap ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) UnmarshalJSON ¶

func (o *KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse ¶

type KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse struct {
	// The subject part to apply the regular expression to.
	SubjectPart *string `json:"SubjectPart,omitempty"`
	// The regular expression to apply to the subject part.
	Regex *string `json:"Regex,omitempty"`
	// The error message to show when the regex validation fails.
	Error                *string `json:"Error,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse struct for KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse

func NewKeyfactorApiModelsTemplatesGlobalTemplateRegexResponse ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplateRegexResponse() *KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse

NewKeyfactorApiModelsTemplatesGlobalTemplateRegexResponse instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse 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 NewKeyfactorApiModelsTemplatesGlobalTemplateRegexResponseWithDefaults ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplateRegexResponseWithDefaults() *KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse

NewKeyfactorApiModelsTemplatesGlobalTemplateRegexResponseWithDefaults instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse 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 (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) GetRegex ¶

GetRegex returns the Regex field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) GetRegexOk ¶

GetRegexOk returns a tuple with the Regex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) GetSubjectPartOk ¶

GetSubjectPartOk returns a tuple with the SubjectPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) HasError ¶

HasError returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) HasRegex ¶

HasRegex returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) HasSubjectPart ¶

HasSubjectPart returns a boolean if a field has been set.

func (KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) SetError ¶

SetError gets a reference to the given string and assigns it to the Error field.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) SetRegex ¶

SetRegex gets a reference to the given string and assigns it to the Regex field.

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) SetSubjectPart ¶

SetSubjectPart gets a reference to the given string and assigns it to the SubjectPart field.

func (KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) ToMap ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest ¶

type KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest struct {
	// The regular expressions to use for validation during enrollment.
	TemplateRegexes []KeyfactorApiModelsTemplatesGlobalTemplateRegexRequest `json:"TemplateRegexes"`
	// The default values to use during enrollment.
	TemplateDefaults     []KeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest `json:"TemplateDefaults"`
	TemplatePolicy       KeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest    `json:"TemplatePolicy"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest struct for KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest

func NewKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest ¶

NewKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest 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 NewKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequestWithDefaults ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequestWithDefaults() *KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest

NewKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequestWithDefaults instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest 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 (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) GetTemplateDefaults ¶

GetTemplateDefaults returns the TemplateDefaults field value

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) GetTemplateDefaultsOk ¶

GetTemplateDefaultsOk returns a tuple with the TemplateDefaults field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) GetTemplatePolicy ¶

GetTemplatePolicy returns the TemplatePolicy field value

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) GetTemplatePolicyOk ¶

GetTemplatePolicyOk returns a tuple with the TemplatePolicy field value and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) GetTemplateRegexes ¶

GetTemplateRegexes returns the TemplateRegexes field value

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) GetTemplateRegexesOk ¶

GetTemplateRegexesOk returns a tuple with the TemplateRegexes field value and a boolean to check if the value has been set.

func (KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) SetTemplateDefaults ¶

SetTemplateDefaults sets field value

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) SetTemplatePolicy ¶

SetTemplatePolicy sets field value

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) SetTemplateRegexes ¶

SetTemplateRegexes sets field value

func (KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) ToMap ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) UnmarshalJSON ¶

type KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse ¶

type KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse struct {
	// The regular expressions to use for validation during enrollment.
	TemplateRegexes []KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse `json:"TemplateRegexes,omitempty"`
	// The default values to use during enrollment.
	TemplateDefaults     []KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse `json:"TemplateDefaults,omitempty"`
	TemplatePolicy       *KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse   `json:"TemplatePolicy,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse struct for KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse

func NewKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse() *KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse

NewKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse 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 NewKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponseWithDefaults ¶

func NewKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponseWithDefaults() *KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse

NewKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponseWithDefaults instantiates a new KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse 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 (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) GetTemplateDefaults ¶

GetTemplateDefaults returns the TemplateDefaults field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) GetTemplateDefaultsOk ¶

GetTemplateDefaultsOk returns a tuple with the TemplateDefaults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) GetTemplatePolicy ¶

GetTemplatePolicy returns the TemplatePolicy field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) GetTemplatePolicyOk ¶

GetTemplatePolicyOk returns a tuple with the TemplatePolicy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) GetTemplateRegexes ¶

GetTemplateRegexes returns the TemplateRegexes field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) GetTemplateRegexesOk ¶

GetTemplateRegexesOk returns a tuple with the TemplateRegexes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) HasTemplateDefaults ¶

HasTemplateDefaults returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) HasTemplatePolicy ¶

HasTemplatePolicy returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) HasTemplateRegexes ¶

HasTemplateRegexes returns a boolean if a field has been set.

func (KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) SetTemplateDefaults ¶

SetTemplateDefaults gets a reference to the given []KeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse and assigns it to the TemplateDefaults field.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) SetTemplatePolicy ¶

SetTemplatePolicy gets a reference to the given KeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse and assigns it to the TemplatePolicy field.

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) SetTemplateRegexes ¶

SetTemplateRegexes gets a reference to the given []KeyfactorApiModelsTemplatesGlobalTemplateRegexResponse and assigns it to the TemplateRegexes field.

func (KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) ToMap ¶

func (*KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) UnmarshalJSON ¶

type KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse ¶

type KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse struct {
	// The subject part to apply the default to.
	SubjectPart *string `json:"SubjectPart,omitempty"`
	// The value to apply by default.
	Value                *string `json:"Value,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse struct for KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse ¶

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse() *KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse

NewKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse instantiates a new KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse 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 NewKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponseWithDefaults ¶

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponseWithDefaults() *KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse

NewKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponseWithDefaults instantiates a new KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse 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 (*KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) GetSubjectPartOk ¶

GetSubjectPartOk returns a tuple with the SubjectPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) 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 (*KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) HasSubjectPart ¶

HasSubjectPart returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) HasValue ¶

HasValue returns a boolean if a field has been set.

func (KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) SetSubjectPart ¶

SetSubjectPart gets a reference to the given string and assigns it to the SubjectPart field.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) SetValue ¶

SetValue gets a reference to the given string and assigns it to the Value field.

func (KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) ToMap ¶

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) UnmarshalJSON ¶

type KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse ¶

type KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse struct {
	// The allowed RSA key sizes.
	RSAValidKeySizes []int32 `json:"RSAValidKeySizes,omitempty"`
	// The allowed ECC curves.
	ECCValidCurves []string `json:"ECCValidCurves,omitempty"`
	// Whether or not keys can be reused.
	AllowKeyReuse *bool `json:"AllowKeyReuse,omitempty"`
	// Whether or not wildcards can be used.
	AllowWildcards *bool `json:"AllowWildcards,omitempty"`
	// Whether or not RFC 2818 compliance should be enforced.
	RFCEnforcement       *bool `json:"RFCEnforcement,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse struct for KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse ¶

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse() *KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse

NewKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse instantiates a new KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse 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 NewKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponseWithDefaults ¶

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponseWithDefaults() *KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse

NewKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponseWithDefaults instantiates a new KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse 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 (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) GetAllowKeyReuse ¶

GetAllowKeyReuse returns the AllowKeyReuse field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) GetAllowKeyReuseOk ¶

GetAllowKeyReuseOk returns a tuple with the AllowKeyReuse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) GetAllowWildcards ¶

GetAllowWildcards returns the AllowWildcards field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) GetAllowWildcardsOk ¶

GetAllowWildcardsOk returns a tuple with the AllowWildcards field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) GetECCValidCurves ¶

GetECCValidCurves returns the ECCValidCurves field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) GetECCValidCurvesOk ¶

GetECCValidCurvesOk returns a tuple with the ECCValidCurves field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) GetRFCEnforcement ¶

GetRFCEnforcement returns the RFCEnforcement field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) GetRFCEnforcementOk ¶

GetRFCEnforcementOk returns a tuple with the RFCEnforcement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) GetRSAValidKeySizes ¶

GetRSAValidKeySizes returns the RSAValidKeySizes field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) GetRSAValidKeySizesOk ¶

GetRSAValidKeySizesOk returns a tuple with the RSAValidKeySizes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) HasAllowKeyReuse ¶

HasAllowKeyReuse returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) HasAllowWildcards ¶

HasAllowWildcards returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) HasECCValidCurves ¶

HasECCValidCurves returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) HasRFCEnforcement ¶

HasRFCEnforcement returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) HasRSAValidKeySizes ¶

HasRSAValidKeySizes returns a boolean if a field has been set.

func (KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) SetAllowKeyReuse ¶

SetAllowKeyReuse gets a reference to the given bool and assigns it to the AllowKeyReuse field.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) SetAllowWildcards ¶

SetAllowWildcards gets a reference to the given bool and assigns it to the AllowWildcards field.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) SetECCValidCurves ¶

SetECCValidCurves gets a reference to the given []string and assigns it to the ECCValidCurves field.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) SetRFCEnforcement ¶

SetRFCEnforcement gets a reference to the given bool and assigns it to the RFCEnforcement field.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) SetRSAValidKeySizes ¶

SetRSAValidKeySizes gets a reference to the given []int32 and assigns it to the RSAValidKeySizes field.

func (KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) ToMap ¶

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) UnmarshalJSON ¶

type KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse ¶

type KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse struct {
	// The subject part to apply the regular expression to.
	SubjectPart *string `json:"SubjectPart,omitempty"`
	// The regular expression to apply to the subject part.
	Regex *string `json:"Regex,omitempty"`
	// The error message to show when the regex validation fails.
	Error                *string `json:"Error,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse struct for KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse ¶

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse() *KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse

NewKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse instantiates a new KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse 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 NewKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponseWithDefaults ¶

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponseWithDefaults() *KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse

NewKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponseWithDefaults instantiates a new KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse 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 (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) GetRegex ¶

GetRegex returns the Regex field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) GetRegexOk ¶

GetRegexOk returns a tuple with the Regex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) GetSubjectPartOk ¶

GetSubjectPartOk returns a tuple with the SubjectPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) HasError ¶

HasError returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) HasRegex ¶

HasRegex returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) HasSubjectPart ¶

HasSubjectPart returns a boolean if a field has been set.

func (KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) SetError ¶

SetError gets a reference to the given string and assigns it to the Error field.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) SetRegex ¶

SetRegex gets a reference to the given string and assigns it to the Regex field.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) SetSubjectPart ¶

SetSubjectPart gets a reference to the given string and assigns it to the SubjectPart field.

func (KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) ToMap ¶

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) UnmarshalJSON ¶

type KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse ¶

type KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse struct {
	// The regular expressions to use for validation during enrollment.
	TemplateRegexes []KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse `json:"TemplateRegexes,omitempty"`
	// The default values to use during enrollment.
	TemplateDefaults     []KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse `json:"TemplateDefaults,omitempty"`
	TemplatePolicy       *KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse   `json:"TemplatePolicy,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse struct for KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse ¶

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse() *KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse

NewKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse instantiates a new KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse 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 NewKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponseWithDefaults ¶

func NewKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponseWithDefaults() *KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse

NewKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponseWithDefaults instantiates a new KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse 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 (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) GetTemplateDefaults ¶

GetTemplateDefaults returns the TemplateDefaults field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) GetTemplateDefaultsOk ¶

GetTemplateDefaultsOk returns a tuple with the TemplateDefaults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) GetTemplatePolicy ¶

GetTemplatePolicy returns the TemplatePolicy field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) GetTemplatePolicyOk ¶

GetTemplatePolicyOk returns a tuple with the TemplatePolicy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) GetTemplateRegexes ¶

GetTemplateRegexes returns the TemplateRegexes field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) GetTemplateRegexesOk ¶

GetTemplateRegexesOk returns a tuple with the TemplateRegexes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) HasTemplateDefaults ¶

HasTemplateDefaults returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) HasTemplatePolicy ¶

HasTemplatePolicy returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) HasTemplateRegexes ¶

HasTemplateRegexes returns a boolean if a field has been set.

func (KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) SetTemplateDefaults ¶

SetTemplateDefaults gets a reference to the given []KeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse and assigns it to the TemplateDefaults field.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) SetTemplatePolicy ¶

SetTemplatePolicy gets a reference to the given KeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse and assigns it to the TemplatePolicy field.

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) SetTemplateRegexes ¶

SetTemplateRegexes gets a reference to the given []KeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse and assigns it to the TemplateRegexes field.

func (KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) ToMap ¶

func (*KeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) UnmarshalJSON ¶

type KeyfactorApiModelsTemplatesValidSubjectPartResponse ¶

type KeyfactorApiModelsTemplatesValidSubjectPartResponse struct {
	SubjectPart          *string `json:"SubjectPart,omitempty"`
	SubjectPartName      *string `json:"SubjectPartName,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsTemplatesValidSubjectPartResponse struct for KeyfactorApiModelsTemplatesValidSubjectPartResponse

func NewKeyfactorApiModelsTemplatesValidSubjectPartResponse ¶

func NewKeyfactorApiModelsTemplatesValidSubjectPartResponse() *KeyfactorApiModelsTemplatesValidSubjectPartResponse

NewKeyfactorApiModelsTemplatesValidSubjectPartResponse instantiates a new KeyfactorApiModelsTemplatesValidSubjectPartResponse 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 NewKeyfactorApiModelsTemplatesValidSubjectPartResponseWithDefaults ¶

func NewKeyfactorApiModelsTemplatesValidSubjectPartResponseWithDefaults() *KeyfactorApiModelsTemplatesValidSubjectPartResponse

NewKeyfactorApiModelsTemplatesValidSubjectPartResponseWithDefaults instantiates a new KeyfactorApiModelsTemplatesValidSubjectPartResponse 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 (*KeyfactorApiModelsTemplatesValidSubjectPartResponse) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesValidSubjectPartResponse) GetSubjectPartName ¶

GetSubjectPartName returns the SubjectPartName field value if set, zero value otherwise.

func (*KeyfactorApiModelsTemplatesValidSubjectPartResponse) GetSubjectPartNameOk ¶

func (o *KeyfactorApiModelsTemplatesValidSubjectPartResponse) GetSubjectPartNameOk() (*string, bool)

GetSubjectPartNameOk returns a tuple with the SubjectPartName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesValidSubjectPartResponse) GetSubjectPartOk ¶

GetSubjectPartOk returns a tuple with the SubjectPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsTemplatesValidSubjectPartResponse) HasSubjectPart ¶

HasSubjectPart returns a boolean if a field has been set.

func (*KeyfactorApiModelsTemplatesValidSubjectPartResponse) HasSubjectPartName ¶

HasSubjectPartName returns a boolean if a field has been set.

func (KeyfactorApiModelsTemplatesValidSubjectPartResponse) MarshalJSON ¶

func (*KeyfactorApiModelsTemplatesValidSubjectPartResponse) SetSubjectPart ¶

SetSubjectPart gets a reference to the given string and assigns it to the SubjectPart field.

func (*KeyfactorApiModelsTemplatesValidSubjectPartResponse) SetSubjectPartName ¶

SetSubjectPartName gets a reference to the given string and assigns it to the SubjectPartName field.

func (KeyfactorApiModelsTemplatesValidSubjectPartResponse) ToMap ¶

func (*KeyfactorApiModelsTemplatesValidSubjectPartResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsTemplatesValidSubjectPartResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsAvailableSignalResponse ¶

type KeyfactorApiModelsWorkflowsAvailableSignalResponse struct {
	// The name of the signal.
	SignalName *string `json:"SignalName,omitempty"`
	// The signal Id.
	StepSignalId *string `json:"StepSignalId,omitempty"`
	// Whether or not the signal has been received.
	SignalReceived       *bool `json:"SignalReceived,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsAvailableSignalResponse struct for KeyfactorApiModelsWorkflowsAvailableSignalResponse

func NewKeyfactorApiModelsWorkflowsAvailableSignalResponse ¶

func NewKeyfactorApiModelsWorkflowsAvailableSignalResponse() *KeyfactorApiModelsWorkflowsAvailableSignalResponse

NewKeyfactorApiModelsWorkflowsAvailableSignalResponse instantiates a new KeyfactorApiModelsWorkflowsAvailableSignalResponse 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 NewKeyfactorApiModelsWorkflowsAvailableSignalResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsAvailableSignalResponseWithDefaults() *KeyfactorApiModelsWorkflowsAvailableSignalResponse

NewKeyfactorApiModelsWorkflowsAvailableSignalResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsAvailableSignalResponse 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 (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) GetSignalName ¶

GetSignalName returns the SignalName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) GetSignalNameOk ¶

GetSignalNameOk returns a tuple with the SignalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) GetSignalReceived ¶

GetSignalReceived returns the SignalReceived field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) GetSignalReceivedOk ¶

func (o *KeyfactorApiModelsWorkflowsAvailableSignalResponse) GetSignalReceivedOk() (*bool, bool)

GetSignalReceivedOk returns a tuple with the SignalReceived field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) GetStepSignalId ¶

GetStepSignalId returns the StepSignalId field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) GetStepSignalIdOk ¶

GetStepSignalIdOk returns a tuple with the StepSignalId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) HasSignalName ¶

HasSignalName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) HasSignalReceived ¶

HasSignalReceived returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) HasStepSignalId ¶

HasStepSignalId returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsAvailableSignalResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) SetSignalName ¶

SetSignalName gets a reference to the given string and assigns it to the SignalName field.

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) SetSignalReceived ¶

SetSignalReceived gets a reference to the given bool and assigns it to the SignalReceived field.

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) SetStepSignalId ¶

SetStepSignalId gets a reference to the given string and assigns it to the StepSignalId field.

func (KeyfactorApiModelsWorkflowsAvailableSignalResponse) ToMap ¶

func (*KeyfactorApiModelsWorkflowsAvailableSignalResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsAvailableSignalResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsAvailableStepQueryResponse ¶

type KeyfactorApiModelsWorkflowsAvailableStepQueryResponse struct {
	// The display name of the step.
	DisplayName *string `json:"DisplayName,omitempty"`
	// The extension name of the step.
	ExtensionName *string `json:"ExtensionName,omitempty"`
	// The workflow types which this step can be a part of.
	SupportedWorkflowTypes            []string                                                           `json:"SupportedWorkflowTypes,omitempty"`
	ConfigurationParametersDefinition *map[string]KeyfactorApiModelsWorkflowsParameterDefinitionResponse `json:"ConfigurationParametersDefinition,omitempty"`
	SignalsDefinition                 *map[string]KeyfactorApiModelsWorkflowsSignalDefinitionResponse    `json:"SignalsDefinition,omitempty"`
	AdditionalProperties              map[string]interface{}
}

KeyfactorApiModelsWorkflowsAvailableStepQueryResponse struct for KeyfactorApiModelsWorkflowsAvailableStepQueryResponse

func NewKeyfactorApiModelsWorkflowsAvailableStepQueryResponse ¶

func NewKeyfactorApiModelsWorkflowsAvailableStepQueryResponse() *KeyfactorApiModelsWorkflowsAvailableStepQueryResponse

NewKeyfactorApiModelsWorkflowsAvailableStepQueryResponse instantiates a new KeyfactorApiModelsWorkflowsAvailableStepQueryResponse 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 NewKeyfactorApiModelsWorkflowsAvailableStepQueryResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsAvailableStepQueryResponseWithDefaults() *KeyfactorApiModelsWorkflowsAvailableStepQueryResponse

NewKeyfactorApiModelsWorkflowsAvailableStepQueryResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsAvailableStepQueryResponse 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 (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetConfigurationParametersDefinition ¶

GetConfigurationParametersDefinition returns the ConfigurationParametersDefinition field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetConfigurationParametersDefinitionOk ¶

GetConfigurationParametersDefinitionOk returns a tuple with the ConfigurationParametersDefinition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetExtensionName ¶

GetExtensionName returns the ExtensionName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetExtensionNameOk ¶

GetExtensionNameOk returns a tuple with the ExtensionName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetSignalsDefinition ¶

GetSignalsDefinition returns the SignalsDefinition field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetSignalsDefinitionOk ¶

GetSignalsDefinitionOk returns a tuple with the SignalsDefinition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetSupportedWorkflowTypes ¶

func (o *KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetSupportedWorkflowTypes() []string

GetSupportedWorkflowTypes returns the SupportedWorkflowTypes field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetSupportedWorkflowTypesOk ¶

func (o *KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) GetSupportedWorkflowTypesOk() ([]string, bool)

GetSupportedWorkflowTypesOk returns a tuple with the SupportedWorkflowTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) HasConfigurationParametersDefinition ¶

func (o *KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) HasConfigurationParametersDefinition() bool

HasConfigurationParametersDefinition returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) HasExtensionName ¶

HasExtensionName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) HasSignalsDefinition ¶

HasSignalsDefinition returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) HasSupportedWorkflowTypes ¶

func (o *KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) HasSupportedWorkflowTypes() bool

HasSupportedWorkflowTypes returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) SetConfigurationParametersDefinition ¶

SetConfigurationParametersDefinition gets a reference to the given map[string]KeyfactorApiModelsWorkflowsParameterDefinitionResponse and assigns it to the ConfigurationParametersDefinition field.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) SetExtensionName ¶

SetExtensionName gets a reference to the given string and assigns it to the ExtensionName field.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) SetSignalsDefinition ¶

SetSignalsDefinition gets a reference to the given map[string]KeyfactorApiModelsWorkflowsSignalDefinitionResponse and assigns it to the SignalsDefinition field.

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) SetSupportedWorkflowTypes ¶

func (o *KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) SetSupportedWorkflowTypes(v []string)

SetSupportedWorkflowTypes gets a reference to the given []string and assigns it to the SupportedWorkflowTypes field.

func (KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) ToMap ¶

func (*KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsAvailableStepQueryResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsAvailableStepResponse ¶

type KeyfactorApiModelsWorkflowsAvailableStepResponse struct {
	// The display name of the step.
	DisplayName *string `json:"DisplayName,omitempty"`
	// The name of the extension.
	ExtensionName *string `json:"ExtensionName,omitempty"`
	// The possible outputs of the step.
	Outputs                           []string                                                           `json:"Outputs,omitempty"`
	ConfigurationParametersDefinition *map[string]KeyfactorApiModelsWorkflowsParameterDefinitionResponse `json:"ConfigurationParametersDefinition,omitempty"`
	SignalsDefinition                 *map[string]KeyfactorApiModelsWorkflowsSignalDefinitionResponse    `json:"SignalsDefinition,omitempty"`
	AdditionalProperties              map[string]interface{}
}

KeyfactorApiModelsWorkflowsAvailableStepResponse struct for KeyfactorApiModelsWorkflowsAvailableStepResponse

func NewKeyfactorApiModelsWorkflowsAvailableStepResponse ¶

func NewKeyfactorApiModelsWorkflowsAvailableStepResponse() *KeyfactorApiModelsWorkflowsAvailableStepResponse

NewKeyfactorApiModelsWorkflowsAvailableStepResponse instantiates a new KeyfactorApiModelsWorkflowsAvailableStepResponse 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 NewKeyfactorApiModelsWorkflowsAvailableStepResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsAvailableStepResponseWithDefaults() *KeyfactorApiModelsWorkflowsAvailableStepResponse

NewKeyfactorApiModelsWorkflowsAvailableStepResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsAvailableStepResponse 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 (*KeyfactorApiModelsWorkflowsAvailableStepResponse) GetConfigurationParametersDefinition ¶

GetConfigurationParametersDefinition returns the ConfigurationParametersDefinition field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) GetConfigurationParametersDefinitionOk ¶

GetConfigurationParametersDefinitionOk returns a tuple with the ConfigurationParametersDefinition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) GetExtensionName ¶

GetExtensionName returns the ExtensionName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) GetExtensionNameOk ¶

func (o *KeyfactorApiModelsWorkflowsAvailableStepResponse) GetExtensionNameOk() (*string, bool)

GetExtensionNameOk returns a tuple with the ExtensionName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) GetOutputs ¶

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) GetOutputsOk ¶

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) GetSignalsDefinition ¶

GetSignalsDefinition returns the SignalsDefinition field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) GetSignalsDefinitionOk ¶

GetSignalsDefinitionOk returns a tuple with the SignalsDefinition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) HasConfigurationParametersDefinition ¶

func (o *KeyfactorApiModelsWorkflowsAvailableStepResponse) HasConfigurationParametersDefinition() bool

HasConfigurationParametersDefinition returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) HasExtensionName ¶

HasExtensionName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) HasOutputs ¶

HasOutputs returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) HasSignalsDefinition ¶

func (o *KeyfactorApiModelsWorkflowsAvailableStepResponse) HasSignalsDefinition() bool

HasSignalsDefinition returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsAvailableStepResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) SetConfigurationParametersDefinition ¶

SetConfigurationParametersDefinition gets a reference to the given map[string]KeyfactorApiModelsWorkflowsParameterDefinitionResponse and assigns it to the ConfigurationParametersDefinition field.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) SetExtensionName ¶

SetExtensionName gets a reference to the given string and assigns it to the ExtensionName field.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) SetOutputs ¶

SetOutputs gets a reference to the given []string and assigns it to the Outputs field.

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) SetSignalsDefinition ¶

SetSignalsDefinition gets a reference to the given map[string]KeyfactorApiModelsWorkflowsSignalDefinitionResponse and assigns it to the SignalsDefinition field.

func (KeyfactorApiModelsWorkflowsAvailableStepResponse) ToMap ¶

func (o KeyfactorApiModelsWorkflowsAvailableStepResponse) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiModelsWorkflowsAvailableStepResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsAvailableStepResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsConditionConfigurationRequest ¶

type KeyfactorApiModelsWorkflowsConditionConfigurationRequest struct {
	// The value to compare to true when evaluating conditions.
	Value                *string `json:"Value,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsConditionConfigurationRequest Information about the configuration of a workflow condition.

func NewKeyfactorApiModelsWorkflowsConditionConfigurationRequest ¶

func NewKeyfactorApiModelsWorkflowsConditionConfigurationRequest() *KeyfactorApiModelsWorkflowsConditionConfigurationRequest

NewKeyfactorApiModelsWorkflowsConditionConfigurationRequest instantiates a new KeyfactorApiModelsWorkflowsConditionConfigurationRequest 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 NewKeyfactorApiModelsWorkflowsConditionConfigurationRequestWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsConditionConfigurationRequestWithDefaults() *KeyfactorApiModelsWorkflowsConditionConfigurationRequest

NewKeyfactorApiModelsWorkflowsConditionConfigurationRequestWithDefaults instantiates a new KeyfactorApiModelsWorkflowsConditionConfigurationRequest 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 (*KeyfactorApiModelsWorkflowsConditionConfigurationRequest) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsConditionConfigurationRequest) 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 (*KeyfactorApiModelsWorkflowsConditionConfigurationRequest) HasValue ¶

HasValue returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsConditionConfigurationRequest) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsConditionConfigurationRequest) SetValue ¶

SetValue gets a reference to the given string and assigns it to the Value field.

func (KeyfactorApiModelsWorkflowsConditionConfigurationRequest) ToMap ¶

func (*KeyfactorApiModelsWorkflowsConditionConfigurationRequest) UnmarshalJSON ¶

type KeyfactorApiModelsWorkflowsConditionConfigurationResponse ¶

type KeyfactorApiModelsWorkflowsConditionConfigurationResponse struct {
	// The Id of the condition.
	Id *string `json:"Id,omitempty"`
	// The value to compare to. This value will be compared to a true value.
	Value                *string `json:"Value,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsConditionConfigurationResponse Information about the configuration of a workflow condition.

func NewKeyfactorApiModelsWorkflowsConditionConfigurationResponse ¶

func NewKeyfactorApiModelsWorkflowsConditionConfigurationResponse() *KeyfactorApiModelsWorkflowsConditionConfigurationResponse

NewKeyfactorApiModelsWorkflowsConditionConfigurationResponse instantiates a new KeyfactorApiModelsWorkflowsConditionConfigurationResponse 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 NewKeyfactorApiModelsWorkflowsConditionConfigurationResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsConditionConfigurationResponseWithDefaults() *KeyfactorApiModelsWorkflowsConditionConfigurationResponse

NewKeyfactorApiModelsWorkflowsConditionConfigurationResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsConditionConfigurationResponse 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 (*KeyfactorApiModelsWorkflowsConditionConfigurationResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsConditionConfigurationResponse) GetIdOk ¶

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 (*KeyfactorApiModelsWorkflowsConditionConfigurationResponse) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsConditionConfigurationResponse) 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 (*KeyfactorApiModelsWorkflowsConditionConfigurationResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsConditionConfigurationResponse) HasValue ¶

HasValue returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsConditionConfigurationResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsConditionConfigurationResponse) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*KeyfactorApiModelsWorkflowsConditionConfigurationResponse) SetValue ¶

SetValue gets a reference to the given string and assigns it to the Value field.

func (KeyfactorApiModelsWorkflowsConditionConfigurationResponse) ToMap ¶

func (*KeyfactorApiModelsWorkflowsConditionConfigurationResponse) UnmarshalJSON ¶

type KeyfactorApiModelsWorkflowsDefinitionCreateRequest ¶

type KeyfactorApiModelsWorkflowsDefinitionCreateRequest struct {
	// Display name of the Definition
	DisplayName *string `json:"DisplayName,omitempty"`
	// Description of the Definition
	Description *string `json:"Description,omitempty"`
	// Key to be used to look up definition when starting a new workflow.  For enrollment workflowTypes, this should be a template
	Key *string `json:"Key,omitempty"`
	// The Type of Workflow
	WorkflowType         *string `json:"WorkflowType,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsDefinitionCreateRequest struct for KeyfactorApiModelsWorkflowsDefinitionCreateRequest

func NewKeyfactorApiModelsWorkflowsDefinitionCreateRequest ¶

func NewKeyfactorApiModelsWorkflowsDefinitionCreateRequest() *KeyfactorApiModelsWorkflowsDefinitionCreateRequest

NewKeyfactorApiModelsWorkflowsDefinitionCreateRequest instantiates a new KeyfactorApiModelsWorkflowsDefinitionCreateRequest 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 NewKeyfactorApiModelsWorkflowsDefinitionCreateRequestWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsDefinitionCreateRequestWithDefaults() *KeyfactorApiModelsWorkflowsDefinitionCreateRequest

NewKeyfactorApiModelsWorkflowsDefinitionCreateRequestWithDefaults instantiates a new KeyfactorApiModelsWorkflowsDefinitionCreateRequest 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 (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) GetDescription ¶

GetDescription returns the Description field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) GetDescriptionOk ¶

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 (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) GetKey ¶

GetKey returns the Key field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) GetKeyOk ¶

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) GetWorkflowType ¶

GetWorkflowType returns the WorkflowType field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) GetWorkflowTypeOk ¶

GetWorkflowTypeOk returns a tuple with the WorkflowType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) HasKey ¶

HasKey returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) HasWorkflowType ¶

HasWorkflowType returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsDefinitionCreateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) SetDescription ¶

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) SetKey ¶

SetKey gets a reference to the given string and assigns it to the Key field.

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) SetWorkflowType ¶

SetWorkflowType gets a reference to the given string and assigns it to the WorkflowType field.

func (KeyfactorApiModelsWorkflowsDefinitionCreateRequest) ToMap ¶

func (*KeyfactorApiModelsWorkflowsDefinitionCreateRequest) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionCreateRequest) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsDefinitionQueryResponse ¶

type KeyfactorApiModelsWorkflowsDefinitionQueryResponse struct {
	Id                   *string `json:"Id,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	Key                  *string `json:"Key,omitempty"`
	KeyDisplayName       *string `json:"KeyDisplayName,omitempty"`
	WorkflowType         *string `json:"WorkflowType,omitempty"`
	DraftVersion         *int32  `json:"DraftVersion,omitempty"`
	PublishedVersion     *int32  `json:"PublishedVersion,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsDefinitionQueryResponse struct for KeyfactorApiModelsWorkflowsDefinitionQueryResponse

func NewKeyfactorApiModelsWorkflowsDefinitionQueryResponse ¶

func NewKeyfactorApiModelsWorkflowsDefinitionQueryResponse() *KeyfactorApiModelsWorkflowsDefinitionQueryResponse

NewKeyfactorApiModelsWorkflowsDefinitionQueryResponse instantiates a new KeyfactorApiModelsWorkflowsDefinitionQueryResponse 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 NewKeyfactorApiModelsWorkflowsDefinitionQueryResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsDefinitionQueryResponseWithDefaults() *KeyfactorApiModelsWorkflowsDefinitionQueryResponse

NewKeyfactorApiModelsWorkflowsDefinitionQueryResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsDefinitionQueryResponse 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 (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetDraftVersion ¶

GetDraftVersion returns the DraftVersion field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetDraftVersionOk ¶

GetDraftVersionOk returns a tuple with the DraftVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetIdOk ¶

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 (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetKey ¶

GetKey returns the Key field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetKeyDisplayName ¶

GetKeyDisplayName returns the KeyDisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetKeyDisplayNameOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetKeyDisplayNameOk() (*string, bool)

GetKeyDisplayNameOk returns a tuple with the KeyDisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetKeyOk ¶

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetPublishedVersion ¶

GetPublishedVersion returns the PublishedVersion field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetPublishedVersionOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetPublishedVersionOk() (*int32, bool)

GetPublishedVersionOk returns a tuple with the PublishedVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetWorkflowType ¶

GetWorkflowType returns the WorkflowType field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) GetWorkflowTypeOk ¶

GetWorkflowTypeOk returns a tuple with the WorkflowType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) HasDraftVersion ¶

HasDraftVersion returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) HasKey ¶

HasKey returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) HasKeyDisplayName ¶

HasKeyDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) HasPublishedVersion ¶

HasPublishedVersion returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) HasWorkflowType ¶

HasWorkflowType returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsDefinitionQueryResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) SetDraftVersion ¶

SetDraftVersion gets a reference to the given int32 and assigns it to the DraftVersion field.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) SetKey ¶

SetKey gets a reference to the given string and assigns it to the Key field.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) SetKeyDisplayName ¶

SetKeyDisplayName gets a reference to the given string and assigns it to the KeyDisplayName field.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) SetPublishedVersion ¶

SetPublishedVersion gets a reference to the given int32 and assigns it to the PublishedVersion field.

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) SetWorkflowType ¶

SetWorkflowType gets a reference to the given string and assigns it to the WorkflowType field.

func (KeyfactorApiModelsWorkflowsDefinitionQueryResponse) ToMap ¶

func (*KeyfactorApiModelsWorkflowsDefinitionQueryResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionQueryResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsDefinitionResponse ¶

type KeyfactorApiModelsWorkflowsDefinitionResponse struct {
	Id                   *string                                             `json:"Id,omitempty"`
	DisplayName          *string                                             `json:"DisplayName,omitempty"`
	Description          *string                                             `json:"Description,omitempty"`
	Key                  *string                                             `json:"Key,omitempty"`
	KeyDisplayName       *string                                             `json:"KeyDisplayName,omitempty"`
	IsPublished          *bool                                               `json:"IsPublished,omitempty"`
	WorkflowType         *string                                             `json:"WorkflowType,omitempty"`
	Steps                []KeyfactorApiModelsWorkflowsDefinitionStepResponse `json:"Steps,omitempty"`
	DraftVersion         *int32                                              `json:"DraftVersion,omitempty"`
	PublishedVersion     *int32                                              `json:"PublishedVersion,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsDefinitionResponse struct for KeyfactorApiModelsWorkflowsDefinitionResponse

func NewKeyfactorApiModelsWorkflowsDefinitionResponse ¶

func NewKeyfactorApiModelsWorkflowsDefinitionResponse() *KeyfactorApiModelsWorkflowsDefinitionResponse

NewKeyfactorApiModelsWorkflowsDefinitionResponse instantiates a new KeyfactorApiModelsWorkflowsDefinitionResponse 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 NewKeyfactorApiModelsWorkflowsDefinitionResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsDefinitionResponseWithDefaults() *KeyfactorApiModelsWorkflowsDefinitionResponse

NewKeyfactorApiModelsWorkflowsDefinitionResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsDefinitionResponse 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 (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetDescription ¶

GetDescription returns the Description field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetDescriptionOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) 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 (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetDisplayNameOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetDraftVersion ¶

GetDraftVersion returns the DraftVersion field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetDraftVersionOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) GetDraftVersionOk() (*int32, bool)

GetDraftVersionOk returns a tuple with the DraftVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetIdOk ¶

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 (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetIsPublished ¶

GetIsPublished returns the IsPublished field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetIsPublishedOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) GetIsPublishedOk() (*bool, bool)

GetIsPublishedOk returns a tuple with the IsPublished field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetKey ¶

GetKey returns the Key field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetKeyDisplayName ¶

GetKeyDisplayName returns the KeyDisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetKeyDisplayNameOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) GetKeyDisplayNameOk() (*string, bool)

GetKeyDisplayNameOk returns a tuple with the KeyDisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetKeyOk ¶

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetPublishedVersion ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) GetPublishedVersion() int32

GetPublishedVersion returns the PublishedVersion field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetPublishedVersionOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) GetPublishedVersionOk() (*int32, bool)

GetPublishedVersionOk returns a tuple with the PublishedVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetSteps ¶

GetSteps returns the Steps field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetStepsOk ¶

GetStepsOk returns a tuple with the Steps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetWorkflowType ¶

GetWorkflowType returns the WorkflowType field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) GetWorkflowTypeOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) GetWorkflowTypeOk() (*string, bool)

GetWorkflowTypeOk returns a tuple with the WorkflowType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) HasDraftVersion ¶

HasDraftVersion returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) HasIsPublished ¶

HasIsPublished returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) HasKey ¶

HasKey returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) HasKeyDisplayName ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) HasKeyDisplayName() bool

HasKeyDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) HasPublishedVersion ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) HasPublishedVersion() bool

HasPublishedVersion returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) HasSteps ¶

HasSteps returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) HasWorkflowType ¶

HasWorkflowType returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsDefinitionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) SetDescription ¶

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) SetDraftVersion ¶

SetDraftVersion gets a reference to the given int32 and assigns it to the DraftVersion field.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) SetIsPublished ¶

SetIsPublished gets a reference to the given bool and assigns it to the IsPublished field.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) SetKey ¶

SetKey gets a reference to the given string and assigns it to the Key field.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) SetKeyDisplayName ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) SetKeyDisplayName(v string)

SetKeyDisplayName gets a reference to the given string and assigns it to the KeyDisplayName field.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) SetPublishedVersion ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) SetPublishedVersion(v int32)

SetPublishedVersion gets a reference to the given int32 and assigns it to the PublishedVersion field.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) SetSteps ¶

SetSteps gets a reference to the given []KeyfactorApiModelsWorkflowsDefinitionStepResponse and assigns it to the Steps field.

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) SetWorkflowType ¶

SetWorkflowType gets a reference to the given string and assigns it to the WorkflowType field.

func (KeyfactorApiModelsWorkflowsDefinitionResponse) ToMap ¶

func (o KeyfactorApiModelsWorkflowsDefinitionResponse) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiModelsWorkflowsDefinitionResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsDefinitionStepRequest ¶

type KeyfactorApiModelsWorkflowsDefinitionStepRequest struct {
	ExtensionName           *string                                                    `json:"ExtensionName,omitempty"`
	UniqueName              *string                                                    `json:"UniqueName,omitempty"`
	DisplayName             *string                                                    `json:"DisplayName,omitempty"`
	Enabled                 *bool                                                      `json:"Enabled,omitempty"`
	ConfigurationParameters map[string]map[string]interface{}                          `json:"ConfigurationParameters,omitempty"`
	Signals                 []KeyfactorApiModelsWorkflowsSignalConfigurationRequest    `json:"Signals,omitempty"`
	Conditions              []KeyfactorApiModelsWorkflowsConditionConfigurationRequest `json:"Conditions,omitempty"`
	Outputs                 *map[string]string                                         `json:"Outputs,omitempty"`
	AdditionalProperties    map[string]interface{}
}

KeyfactorApiModelsWorkflowsDefinitionStepRequest struct for KeyfactorApiModelsWorkflowsDefinitionStepRequest

func NewKeyfactorApiModelsWorkflowsDefinitionStepRequest ¶

func NewKeyfactorApiModelsWorkflowsDefinitionStepRequest() *KeyfactorApiModelsWorkflowsDefinitionStepRequest

NewKeyfactorApiModelsWorkflowsDefinitionStepRequest instantiates a new KeyfactorApiModelsWorkflowsDefinitionStepRequest 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 NewKeyfactorApiModelsWorkflowsDefinitionStepRequestWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsDefinitionStepRequestWithDefaults() *KeyfactorApiModelsWorkflowsDefinitionStepRequest

NewKeyfactorApiModelsWorkflowsDefinitionStepRequestWithDefaults instantiates a new KeyfactorApiModelsWorkflowsDefinitionStepRequest 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 (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetConditions ¶

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetConditionsOk ¶

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetConfigurationParameters ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetConfigurationParameters() map[string]map[string]interface{}

GetConfigurationParameters returns the ConfigurationParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetConfigurationParametersOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetConfigurationParametersOk() (map[string]map[string]interface{}, bool)

GetConfigurationParametersOk returns a tuple with the ConfigurationParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetEnabledOk ¶

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetExtensionName ¶

GetExtensionName returns the ExtensionName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetExtensionNameOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetExtensionNameOk() (*string, bool)

GetExtensionNameOk returns a tuple with the ExtensionName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetOutputs ¶

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetOutputsOk ¶

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetSignals ¶

GetSignals returns the Signals field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetSignalsOk ¶

GetSignalsOk returns a tuple with the Signals field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetUniqueName ¶

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) GetUniqueNameOk ¶

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) HasConditions ¶

HasConditions returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) HasConfigurationParameters ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepRequest) HasConfigurationParameters() bool

HasConfigurationParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) HasExtensionName ¶

HasExtensionName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) HasOutputs ¶

HasOutputs returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) HasSignals ¶

HasSignals returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) HasUniqueName ¶

HasUniqueName returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsDefinitionStepRequest) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) SetConditions ¶

SetConditions gets a reference to the given []KeyfactorApiModelsWorkflowsConditionConfigurationRequest and assigns it to the Conditions field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) SetConfigurationParameters ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepRequest) SetConfigurationParameters(v map[string]map[string]interface{})

SetConfigurationParameters gets a reference to the given map[string]map[string]interface{} and assigns it to the ConfigurationParameters field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) SetExtensionName ¶

SetExtensionName gets a reference to the given string and assigns it to the ExtensionName field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) SetOutputs ¶

SetOutputs gets a reference to the given map[string]string and assigns it to the Outputs field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) SetSignals ¶

SetSignals gets a reference to the given []KeyfactorApiModelsWorkflowsSignalConfigurationRequest and assigns it to the Signals field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) SetUniqueName ¶

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (KeyfactorApiModelsWorkflowsDefinitionStepRequest) ToMap ¶

func (o KeyfactorApiModelsWorkflowsDefinitionStepRequest) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiModelsWorkflowsDefinitionStepRequest) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepRequest) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsDefinitionStepResponse ¶

type KeyfactorApiModelsWorkflowsDefinitionStepResponse struct {
	Id                      *string                                                     `json:"Id,omitempty"`
	DisplayName             *string                                                     `json:"DisplayName,omitempty"`
	UniqueName              *string                                                     `json:"UniqueName,omitempty"`
	ExtensionName           *string                                                     `json:"ExtensionName,omitempty"`
	Enabled                 *bool                                                       `json:"Enabled,omitempty"`
	ConfigurationParameters map[string]map[string]interface{}                           `json:"ConfigurationParameters,omitempty"`
	Signals                 []KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse   `json:"Signals,omitempty"`
	Conditions              []KeyfactorApiModelsWorkflowsConditionConfigurationResponse `json:"Conditions,omitempty"`
	Outputs                 *map[string]string                                          `json:"Outputs,omitempty"`
	AdditionalProperties    map[string]interface{}
}

KeyfactorApiModelsWorkflowsDefinitionStepResponse struct for KeyfactorApiModelsWorkflowsDefinitionStepResponse

func NewKeyfactorApiModelsWorkflowsDefinitionStepResponse ¶

func NewKeyfactorApiModelsWorkflowsDefinitionStepResponse() *KeyfactorApiModelsWorkflowsDefinitionStepResponse

NewKeyfactorApiModelsWorkflowsDefinitionStepResponse instantiates a new KeyfactorApiModelsWorkflowsDefinitionStepResponse 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 NewKeyfactorApiModelsWorkflowsDefinitionStepResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsDefinitionStepResponseWithDefaults() *KeyfactorApiModelsWorkflowsDefinitionStepResponse

NewKeyfactorApiModelsWorkflowsDefinitionStepResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsDefinitionStepResponse 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 (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetConditions ¶

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetConditionsOk ¶

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetConfigurationParameters ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetConfigurationParameters() map[string]map[string]interface{}

GetConfigurationParameters returns the ConfigurationParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetConfigurationParametersOk ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetConfigurationParametersOk() (map[string]map[string]interface{}, bool)

GetConfigurationParametersOk returns a tuple with the ConfigurationParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetEnabledOk ¶

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetExtensionName ¶

GetExtensionName returns the ExtensionName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetExtensionNameOk ¶

GetExtensionNameOk returns a tuple with the ExtensionName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetIdOk ¶

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 (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetOutputs ¶

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetOutputsOk ¶

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetSignals ¶

GetSignals returns the Signals field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetSignalsOk ¶

GetSignalsOk returns a tuple with the Signals field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetUniqueName ¶

GetUniqueName returns the UniqueName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) GetUniqueNameOk ¶

GetUniqueNameOk returns a tuple with the UniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) HasConditions ¶

HasConditions returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) HasConfigurationParameters ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepResponse) HasConfigurationParameters() bool

HasConfigurationParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) HasExtensionName ¶

HasExtensionName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) HasOutputs ¶

HasOutputs returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) HasSignals ¶

HasSignals returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) HasUniqueName ¶

HasUniqueName returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsDefinitionStepResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) SetConditions ¶

SetConditions gets a reference to the given []KeyfactorApiModelsWorkflowsConditionConfigurationResponse and assigns it to the Conditions field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) SetConfigurationParameters ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepResponse) SetConfigurationParameters(v map[string]map[string]interface{})

SetConfigurationParameters gets a reference to the given map[string]map[string]interface{} and assigns it to the ConfigurationParameters field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) SetExtensionName ¶

SetExtensionName gets a reference to the given string and assigns it to the ExtensionName field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) SetOutputs ¶

SetOutputs gets a reference to the given map[string]string and assigns it to the Outputs field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) SetSignals ¶

SetSignals gets a reference to the given []KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse and assigns it to the Signals field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) SetUniqueName ¶

SetUniqueName gets a reference to the given string and assigns it to the UniqueName field.

func (KeyfactorApiModelsWorkflowsDefinitionStepResponse) ToMap ¶

func (o KeyfactorApiModelsWorkflowsDefinitionStepResponse) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiModelsWorkflowsDefinitionStepResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse ¶

type KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse struct {
	// The roles that are allowed to send this signal.
	RoleIds              []int32 `json:"RoleIds,omitempty"`
	SignalName           *string `json:"SignalName,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse struct for KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse

func NewKeyfactorApiModelsWorkflowsDefinitionStepSignalResponse ¶

func NewKeyfactorApiModelsWorkflowsDefinitionStepSignalResponse() *KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse

NewKeyfactorApiModelsWorkflowsDefinitionStepSignalResponse instantiates a new KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse 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 NewKeyfactorApiModelsWorkflowsDefinitionStepSignalResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsDefinitionStepSignalResponseWithDefaults() *KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse

NewKeyfactorApiModelsWorkflowsDefinitionStepSignalResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse 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 (*KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) GetRoleIds ¶

GetRoleIds returns the RoleIds field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) GetRoleIdsOk ¶

GetRoleIdsOk returns a tuple with the RoleIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) GetSignalName ¶

GetSignalName returns the SignalName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) GetSignalNameOk ¶

GetSignalNameOk returns a tuple with the SignalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) HasRoleIds ¶

HasRoleIds returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) HasSignalName ¶

HasSignalName returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) SetRoleIds ¶

SetRoleIds gets a reference to the given []int32 and assigns it to the RoleIds field.

func (*KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) SetSignalName ¶

SetSignalName gets a reference to the given string and assigns it to the SignalName field.

func (KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) ToMap ¶

func (*KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsDefinitionUpdateRequest ¶

type KeyfactorApiModelsWorkflowsDefinitionUpdateRequest struct {
	DisplayName          *string `json:"DisplayName,omitempty"`
	Description          *string `json:"Description,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsDefinitionUpdateRequest struct for KeyfactorApiModelsWorkflowsDefinitionUpdateRequest

func NewKeyfactorApiModelsWorkflowsDefinitionUpdateRequest ¶

func NewKeyfactorApiModelsWorkflowsDefinitionUpdateRequest() *KeyfactorApiModelsWorkflowsDefinitionUpdateRequest

NewKeyfactorApiModelsWorkflowsDefinitionUpdateRequest instantiates a new KeyfactorApiModelsWorkflowsDefinitionUpdateRequest 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 NewKeyfactorApiModelsWorkflowsDefinitionUpdateRequestWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsDefinitionUpdateRequestWithDefaults() *KeyfactorApiModelsWorkflowsDefinitionUpdateRequest

NewKeyfactorApiModelsWorkflowsDefinitionUpdateRequestWithDefaults instantiates a new KeyfactorApiModelsWorkflowsDefinitionUpdateRequest 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 (*KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) GetDescription ¶

GetDescription returns the Description field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) GetDescriptionOk ¶

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 (*KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) SetDescription ¶

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) ToMap ¶

func (*KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsDefinitionUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsInstanceDefinitionResponse ¶

type KeyfactorApiModelsWorkflowsInstanceDefinitionResponse struct {
	Id                   *string `json:"Id,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	Version              *int32  `json:"Version,omitempty"`
	WorkflowType         *string `json:"WorkflowType,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsInstanceDefinitionResponse struct for KeyfactorApiModelsWorkflowsInstanceDefinitionResponse

func NewKeyfactorApiModelsWorkflowsInstanceDefinitionResponse ¶

func NewKeyfactorApiModelsWorkflowsInstanceDefinitionResponse() *KeyfactorApiModelsWorkflowsInstanceDefinitionResponse

NewKeyfactorApiModelsWorkflowsInstanceDefinitionResponse instantiates a new KeyfactorApiModelsWorkflowsInstanceDefinitionResponse 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 NewKeyfactorApiModelsWorkflowsInstanceDefinitionResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsInstanceDefinitionResponseWithDefaults() *KeyfactorApiModelsWorkflowsInstanceDefinitionResponse

NewKeyfactorApiModelsWorkflowsInstanceDefinitionResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsInstanceDefinitionResponse 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 (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) GetIdOk ¶

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 (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) GetVersion ¶

GetVersion returns the Version field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) GetVersionOk ¶

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 (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) GetWorkflowType ¶

GetWorkflowType returns the WorkflowType field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) GetWorkflowTypeOk ¶

GetWorkflowTypeOk returns a tuple with the WorkflowType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) HasVersion ¶

HasVersion returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) HasWorkflowType ¶

HasWorkflowType returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) SetVersion ¶

SetVersion gets a reference to the given int32 and assigns it to the Version field.

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) SetWorkflowType ¶

SetWorkflowType gets a reference to the given string and assigns it to the WorkflowType field.

func (KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) ToMap ¶

func (*KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsInstanceDefinitionResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsInstanceQueryResponse ¶

type KeyfactorApiModelsWorkflowsInstanceQueryResponse struct {
	Id                     *string                                                `json:"Id,omitempty"`
	Status                 *int32                                                 `json:"Status,omitempty"`
	CurrentStepId          *string                                                `json:"CurrentStepId,omitempty"`
	StatusMessage          *string                                                `json:"StatusMessage,omitempty"`
	Definition             *KeyfactorApiModelsWorkflowsInstanceDefinitionResponse `json:"Definition,omitempty"`
	CurrentStepDisplayName *string                                                `json:"CurrentStepDisplayName,omitempty"`
	CurrentStepUniqueName  *string                                                `json:"CurrentStepUniqueName,omitempty"`
	Title                  *string                                                `json:"Title,omitempty"`
	LastModified           *time.Time                                             `json:"LastModified,omitempty"`
	StartDate              *time.Time                                             `json:"StartDate,omitempty"`
	ReferenceId            *int64                                                 `json:"ReferenceId,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsWorkflowsInstanceQueryResponse struct for KeyfactorApiModelsWorkflowsInstanceQueryResponse

func NewKeyfactorApiModelsWorkflowsInstanceQueryResponse ¶

func NewKeyfactorApiModelsWorkflowsInstanceQueryResponse() *KeyfactorApiModelsWorkflowsInstanceQueryResponse

NewKeyfactorApiModelsWorkflowsInstanceQueryResponse instantiates a new KeyfactorApiModelsWorkflowsInstanceQueryResponse 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 NewKeyfactorApiModelsWorkflowsInstanceQueryResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsInstanceQueryResponseWithDefaults() *KeyfactorApiModelsWorkflowsInstanceQueryResponse

NewKeyfactorApiModelsWorkflowsInstanceQueryResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsInstanceQueryResponse 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 (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetCurrentStepDisplayName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetCurrentStepDisplayName() string

GetCurrentStepDisplayName returns the CurrentStepDisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetCurrentStepDisplayNameOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetCurrentStepDisplayNameOk() (*string, bool)

GetCurrentStepDisplayNameOk returns a tuple with the CurrentStepDisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetCurrentStepId ¶

GetCurrentStepId returns the CurrentStepId field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetCurrentStepIdOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetCurrentStepIdOk() (*string, bool)

GetCurrentStepIdOk returns a tuple with the CurrentStepId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetCurrentStepUniqueName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetCurrentStepUniqueName() string

GetCurrentStepUniqueName returns the CurrentStepUniqueName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetCurrentStepUniqueNameOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetCurrentStepUniqueNameOk() (*string, bool)

GetCurrentStepUniqueNameOk returns a tuple with the CurrentStepUniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetDefinition ¶

GetDefinition returns the Definition field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetDefinitionOk ¶

GetDefinitionOk returns a tuple with the Definition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetIdOk ¶

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 (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetLastModified ¶

GetLastModified returns the LastModified field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetLastModifiedOk ¶

GetLastModifiedOk returns a tuple with the LastModified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetReferenceId ¶

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetReferenceIdOk ¶

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetStartDate ¶

GetStartDate returns the StartDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetStartDateOk ¶

GetStartDateOk returns a tuple with the StartDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetStatusMessage ¶

GetStatusMessage returns the StatusMessage field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetStatusMessageOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetStatusMessageOk() (*string, bool)

GetStatusMessageOk returns a tuple with the StatusMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetStatusOk ¶

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 (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetTitle ¶

GetTitle returns the Title field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) GetTitleOk ¶

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasCurrentStepDisplayName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasCurrentStepDisplayName() bool

HasCurrentStepDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasCurrentStepId ¶

HasCurrentStepId returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasCurrentStepUniqueName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasCurrentStepUniqueName() bool

HasCurrentStepUniqueName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasDefinition ¶

HasDefinition returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasLastModified ¶

HasLastModified returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasReferenceId ¶

HasReferenceId returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasStartDate ¶

HasStartDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasStatus ¶

HasStatus returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasStatusMessage ¶

HasStatusMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) HasTitle ¶

HasTitle returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsInstanceQueryResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetCurrentStepDisplayName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetCurrentStepDisplayName(v string)

SetCurrentStepDisplayName gets a reference to the given string and assigns it to the CurrentStepDisplayName field.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetCurrentStepId ¶

SetCurrentStepId gets a reference to the given string and assigns it to the CurrentStepId field.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetCurrentStepUniqueName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetCurrentStepUniqueName(v string)

SetCurrentStepUniqueName gets a reference to the given string and assigns it to the CurrentStepUniqueName field.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetDefinition ¶

SetDefinition gets a reference to the given KeyfactorApiModelsWorkflowsInstanceDefinitionResponse and assigns it to the Definition field.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetLastModified ¶

SetLastModified gets a reference to the given time.Time and assigns it to the LastModified field.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetReferenceId ¶

SetReferenceId gets a reference to the given int64 and assigns it to the ReferenceId field.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetStartDate ¶

SetStartDate gets a reference to the given time.Time and assigns it to the StartDate field.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetStatus ¶

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetStatusMessage ¶

SetStatusMessage gets a reference to the given string and assigns it to the StatusMessage field.

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) SetTitle ¶

SetTitle gets a reference to the given string and assigns it to the Title field.

func (KeyfactorApiModelsWorkflowsInstanceQueryResponse) ToMap ¶

func (o KeyfactorApiModelsWorkflowsInstanceQueryResponse) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiModelsWorkflowsInstanceQueryResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsInstanceQueryResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsInstanceResponse ¶

type KeyfactorApiModelsWorkflowsInstanceResponse struct {
	Id                     *string                                                `json:"Id,omitempty"`
	Status                 *int32                                                 `json:"Status,omitempty"`
	CurrentStepId          *string                                                `json:"CurrentStepId,omitempty"`
	StatusMessage          *string                                                `json:"StatusMessage,omitempty"`
	Signals                []KeyfactorApiModelsWorkflowsAvailableSignalResponse   `json:"Signals,omitempty"`
	Definition             *KeyfactorApiModelsWorkflowsInstanceDefinitionResponse `json:"Definition,omitempty"`
	CurrentStepDisplayName *string                                                `json:"CurrentStepDisplayName,omitempty"`
	CurrentStepUniqueName  *string                                                `json:"CurrentStepUniqueName,omitempty"`
	Title                  *string                                                `json:"Title,omitempty"`
	LastModified           *time.Time                                             `json:"LastModified,omitempty"`
	StartDate              *time.Time                                             `json:"StartDate,omitempty"`
	InitialData            map[string]map[string]interface{}                      `json:"InitialData,omitempty"`
	CurrentStateData       map[string]map[string]interface{}                      `json:"CurrentStateData,omitempty"`
	ReferenceId            *int64                                                 `json:"ReferenceId,omitempty"`
	AdditionalProperties   map[string]interface{}
}

KeyfactorApiModelsWorkflowsInstanceResponse struct for KeyfactorApiModelsWorkflowsInstanceResponse

func NewKeyfactorApiModelsWorkflowsInstanceResponse ¶

func NewKeyfactorApiModelsWorkflowsInstanceResponse() *KeyfactorApiModelsWorkflowsInstanceResponse

NewKeyfactorApiModelsWorkflowsInstanceResponse instantiates a new KeyfactorApiModelsWorkflowsInstanceResponse 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 NewKeyfactorApiModelsWorkflowsInstanceResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsInstanceResponseWithDefaults() *KeyfactorApiModelsWorkflowsInstanceResponse

NewKeyfactorApiModelsWorkflowsInstanceResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsInstanceResponse 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 (*KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStateData ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStateData() map[string]map[string]interface{}

GetCurrentStateData returns the CurrentStateData field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStateDataOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStateDataOk() (map[string]map[string]interface{}, bool)

GetCurrentStateDataOk returns a tuple with the CurrentStateData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStepDisplayName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStepDisplayName() string

GetCurrentStepDisplayName returns the CurrentStepDisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStepDisplayNameOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStepDisplayNameOk() (*string, bool)

GetCurrentStepDisplayNameOk returns a tuple with the CurrentStepDisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStepId ¶

GetCurrentStepId returns the CurrentStepId field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStepIdOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStepIdOk() (*string, bool)

GetCurrentStepIdOk returns a tuple with the CurrentStepId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStepUniqueName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStepUniqueName() string

GetCurrentStepUniqueName returns the CurrentStepUniqueName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStepUniqueNameOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetCurrentStepUniqueNameOk() (*string, bool)

GetCurrentStepUniqueNameOk returns a tuple with the CurrentStepUniqueName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetDefinition ¶

GetDefinition returns the Definition field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetDefinitionOk ¶

GetDefinitionOk returns a tuple with the Definition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetIdOk ¶

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 (*KeyfactorApiModelsWorkflowsInstanceResponse) GetInitialData ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetInitialData() map[string]map[string]interface{}

GetInitialData returns the InitialData field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetInitialDataOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetInitialDataOk() (map[string]map[string]interface{}, bool)

GetInitialDataOk returns a tuple with the InitialData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetLastModified ¶

GetLastModified returns the LastModified field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetLastModifiedOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetLastModifiedOk() (*time.Time, bool)

GetLastModifiedOk returns a tuple with the LastModified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetReferenceId ¶

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetReferenceIdOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetReferenceIdOk() (*int64, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetSignals ¶

GetSignals returns the Signals field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetSignalsOk ¶

GetSignalsOk returns a tuple with the Signals field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetStartDate ¶

GetStartDate returns the StartDate field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetStartDateOk ¶

GetStartDateOk returns a tuple with the StartDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetStatusMessage ¶

GetStatusMessage returns the StatusMessage field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetStatusMessageOk ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) GetStatusMessageOk() (*string, bool)

GetStatusMessageOk returns a tuple with the StatusMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetStatusOk ¶

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 (*KeyfactorApiModelsWorkflowsInstanceResponse) GetTitle ¶

GetTitle returns the Title field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) GetTitleOk ¶

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasCurrentStateData ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) HasCurrentStateData() bool

HasCurrentStateData returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasCurrentStepDisplayName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) HasCurrentStepDisplayName() bool

HasCurrentStepDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasCurrentStepId ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) HasCurrentStepId() bool

HasCurrentStepId returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasCurrentStepUniqueName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) HasCurrentStepUniqueName() bool

HasCurrentStepUniqueName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasDefinition ¶

HasDefinition returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasInitialData ¶

HasInitialData returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasLastModified ¶

HasLastModified returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasReferenceId ¶

HasReferenceId returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasSignals ¶

HasSignals returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasStartDate ¶

HasStartDate returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasStatus ¶

HasStatus returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasStatusMessage ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) HasStatusMessage() bool

HasStatusMessage returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) HasTitle ¶

HasTitle returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsInstanceResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetCurrentStateData ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) SetCurrentStateData(v map[string]map[string]interface{})

SetCurrentStateData gets a reference to the given map[string]map[string]interface{} and assigns it to the CurrentStateData field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetCurrentStepDisplayName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) SetCurrentStepDisplayName(v string)

SetCurrentStepDisplayName gets a reference to the given string and assigns it to the CurrentStepDisplayName field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetCurrentStepId ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) SetCurrentStepId(v string)

SetCurrentStepId gets a reference to the given string and assigns it to the CurrentStepId field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetCurrentStepUniqueName ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) SetCurrentStepUniqueName(v string)

SetCurrentStepUniqueName gets a reference to the given string and assigns it to the CurrentStepUniqueName field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetDefinition ¶

SetDefinition gets a reference to the given KeyfactorApiModelsWorkflowsInstanceDefinitionResponse and assigns it to the Definition field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetInitialData ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) SetInitialData(v map[string]map[string]interface{})

SetInitialData gets a reference to the given map[string]map[string]interface{} and assigns it to the InitialData field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetLastModified ¶

SetLastModified gets a reference to the given time.Time and assigns it to the LastModified field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetReferenceId ¶

SetReferenceId gets a reference to the given int64 and assigns it to the ReferenceId field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetSignals ¶

SetSignals gets a reference to the given []KeyfactorApiModelsWorkflowsAvailableSignalResponse and assigns it to the Signals field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetStartDate ¶

SetStartDate gets a reference to the given time.Time and assigns it to the StartDate field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetStatus ¶

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetStatusMessage ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) SetStatusMessage(v string)

SetStatusMessage gets a reference to the given string and assigns it to the StatusMessage field.

func (*KeyfactorApiModelsWorkflowsInstanceResponse) SetTitle ¶

SetTitle gets a reference to the given string and assigns it to the Title field.

func (KeyfactorApiModelsWorkflowsInstanceResponse) ToMap ¶

func (o KeyfactorApiModelsWorkflowsInstanceResponse) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiModelsWorkflowsInstanceResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsInstanceResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsParameterDefinitionResponse ¶

type KeyfactorApiModelsWorkflowsParameterDefinitionResponse struct {
	DisplayName             *string            `json:"DisplayName,omitempty"`
	ParameterType           *int32             `json:"ParameterType,omitempty"`
	Required                *bool              `json:"Required,omitempty"`
	DefaultValue            *string            `json:"DefaultValue,omitempty"`
	ControlType             *int32             `json:"ControlType,omitempty"`
	PotentialValues         *map[string]string `json:"PotentialValues,omitempty"`
	SupportTokenReplacement *bool              `json:"SupportTokenReplacement,omitempty"`
	DependsOn               *map[string]string `json:"DependsOn,omitempty"`
	AdditionalProperties    map[string]interface{}
}

KeyfactorApiModelsWorkflowsParameterDefinitionResponse struct for KeyfactorApiModelsWorkflowsParameterDefinitionResponse

func NewKeyfactorApiModelsWorkflowsParameterDefinitionResponse ¶

func NewKeyfactorApiModelsWorkflowsParameterDefinitionResponse() *KeyfactorApiModelsWorkflowsParameterDefinitionResponse

NewKeyfactorApiModelsWorkflowsParameterDefinitionResponse instantiates a new KeyfactorApiModelsWorkflowsParameterDefinitionResponse 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 NewKeyfactorApiModelsWorkflowsParameterDefinitionResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsParameterDefinitionResponseWithDefaults() *KeyfactorApiModelsWorkflowsParameterDefinitionResponse

NewKeyfactorApiModelsWorkflowsParameterDefinitionResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsParameterDefinitionResponse 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 (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetControlType ¶

GetControlType returns the ControlType field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetControlTypeOk ¶

GetControlTypeOk returns a tuple with the ControlType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetDefaultValue ¶

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetDefaultValueOk ¶

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetDependsOn ¶

GetDependsOn returns the DependsOn field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetDependsOnOk ¶

GetDependsOnOk returns a tuple with the DependsOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetParameterType ¶

GetParameterType returns the ParameterType field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetParameterTypeOk ¶

GetParameterTypeOk returns a tuple with the ParameterType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetPotentialValues ¶

GetPotentialValues returns the PotentialValues field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetPotentialValuesOk ¶

GetPotentialValuesOk returns a tuple with the PotentialValues field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetRequired ¶

GetRequired returns the Required field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetRequiredOk ¶

GetRequiredOk returns a tuple with the Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetSupportTokenReplacement ¶

func (o *KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetSupportTokenReplacement() bool

GetSupportTokenReplacement returns the SupportTokenReplacement field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetSupportTokenReplacementOk ¶

func (o *KeyfactorApiModelsWorkflowsParameterDefinitionResponse) GetSupportTokenReplacementOk() (*bool, bool)

GetSupportTokenReplacementOk returns a tuple with the SupportTokenReplacement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) HasControlType ¶

HasControlType returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) HasDefaultValue ¶

HasDefaultValue returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) HasDependsOn ¶

HasDependsOn returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) HasParameterType ¶

HasParameterType returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) HasPotentialValues ¶

HasPotentialValues returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) HasRequired ¶

HasRequired returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) HasSupportTokenReplacement ¶

func (o *KeyfactorApiModelsWorkflowsParameterDefinitionResponse) HasSupportTokenReplacement() bool

HasSupportTokenReplacement returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsParameterDefinitionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) SetControlType ¶

SetControlType gets a reference to the given int32 and assigns it to the ControlType field.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) SetDefaultValue ¶

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) SetDependsOn ¶

SetDependsOn gets a reference to the given map[string]string and assigns it to the DependsOn field.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) SetParameterType ¶

SetParameterType gets a reference to the given int32 and assigns it to the ParameterType field.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) SetPotentialValues ¶

SetPotentialValues gets a reference to the given map[string]string and assigns it to the PotentialValues field.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) SetRequired ¶

SetRequired gets a reference to the given bool and assigns it to the Required field.

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) SetSupportTokenReplacement ¶

func (o *KeyfactorApiModelsWorkflowsParameterDefinitionResponse) SetSupportTokenReplacement(v bool)

SetSupportTokenReplacement gets a reference to the given bool and assigns it to the SupportTokenReplacement field.

func (KeyfactorApiModelsWorkflowsParameterDefinitionResponse) ToMap ¶

func (*KeyfactorApiModelsWorkflowsParameterDefinitionResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsParameterDefinitionResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsSignalConfigurationRequest ¶

type KeyfactorApiModelsWorkflowsSignalConfigurationRequest struct {
	// The name of the signal.
	SignalName *string `json:"SignalName,omitempty"`
	// The roles that are allowed to send the signal.
	RoleIds              []int32 `json:"RoleIds,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsSignalConfigurationRequest struct for KeyfactorApiModelsWorkflowsSignalConfigurationRequest

func NewKeyfactorApiModelsWorkflowsSignalConfigurationRequest ¶

func NewKeyfactorApiModelsWorkflowsSignalConfigurationRequest() *KeyfactorApiModelsWorkflowsSignalConfigurationRequest

NewKeyfactorApiModelsWorkflowsSignalConfigurationRequest instantiates a new KeyfactorApiModelsWorkflowsSignalConfigurationRequest 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 NewKeyfactorApiModelsWorkflowsSignalConfigurationRequestWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsSignalConfigurationRequestWithDefaults() *KeyfactorApiModelsWorkflowsSignalConfigurationRequest

NewKeyfactorApiModelsWorkflowsSignalConfigurationRequestWithDefaults instantiates a new KeyfactorApiModelsWorkflowsSignalConfigurationRequest 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 (*KeyfactorApiModelsWorkflowsSignalConfigurationRequest) GetRoleIds ¶

GetRoleIds returns the RoleIds field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsSignalConfigurationRequest) GetRoleIdsOk ¶

GetRoleIdsOk returns a tuple with the RoleIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsSignalConfigurationRequest) GetSignalName ¶

GetSignalName returns the SignalName field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsSignalConfigurationRequest) GetSignalNameOk ¶

GetSignalNameOk returns a tuple with the SignalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsSignalConfigurationRequest) HasRoleIds ¶

HasRoleIds returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsSignalConfigurationRequest) HasSignalName ¶

HasSignalName returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsSignalConfigurationRequest) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsSignalConfigurationRequest) SetRoleIds ¶

SetRoleIds gets a reference to the given []int32 and assigns it to the RoleIds field.

func (*KeyfactorApiModelsWorkflowsSignalConfigurationRequest) SetSignalName ¶

SetSignalName gets a reference to the given string and assigns it to the SignalName field.

func (KeyfactorApiModelsWorkflowsSignalConfigurationRequest) ToMap ¶

func (*KeyfactorApiModelsWorkflowsSignalConfigurationRequest) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsSignalConfigurationRequest) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsSignalDefinitionResponse ¶

type KeyfactorApiModelsWorkflowsSignalDefinitionResponse struct {
	InputParameters      *map[string]KeyfactorApiModelsWorkflowsParameterDefinitionResponse `json:"InputParameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsSignalDefinitionResponse struct for KeyfactorApiModelsWorkflowsSignalDefinitionResponse

func NewKeyfactorApiModelsWorkflowsSignalDefinitionResponse ¶

func NewKeyfactorApiModelsWorkflowsSignalDefinitionResponse() *KeyfactorApiModelsWorkflowsSignalDefinitionResponse

NewKeyfactorApiModelsWorkflowsSignalDefinitionResponse instantiates a new KeyfactorApiModelsWorkflowsSignalDefinitionResponse 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 NewKeyfactorApiModelsWorkflowsSignalDefinitionResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsSignalDefinitionResponseWithDefaults() *KeyfactorApiModelsWorkflowsSignalDefinitionResponse

NewKeyfactorApiModelsWorkflowsSignalDefinitionResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsSignalDefinitionResponse 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 (*KeyfactorApiModelsWorkflowsSignalDefinitionResponse) GetInputParameters ¶

GetInputParameters returns the InputParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsSignalDefinitionResponse) GetInputParametersOk ¶

GetInputParametersOk returns a tuple with the InputParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsSignalDefinitionResponse) HasInputParameters ¶

HasInputParameters returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsSignalDefinitionResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsSignalDefinitionResponse) SetInputParameters ¶

SetInputParameters gets a reference to the given map[string]KeyfactorApiModelsWorkflowsParameterDefinitionResponse and assigns it to the InputParameters field.

func (KeyfactorApiModelsWorkflowsSignalDefinitionResponse) ToMap ¶

func (*KeyfactorApiModelsWorkflowsSignalDefinitionResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsSignalDefinitionResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsSignalRequest ¶

type KeyfactorApiModelsWorkflowsSignalRequest struct {
	// The signal key. This is expected to be in a format like \"STEP_NAME.SIGNAL_NAME\"
	SignalKey *string `json:"SignalKey,omitempty"`
	// Arbitrary data to associate with the signal.
	Data                 map[string]map[string]interface{} `json:"Data,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsSignalRequest struct for KeyfactorApiModelsWorkflowsSignalRequest

func NewKeyfactorApiModelsWorkflowsSignalRequest ¶

func NewKeyfactorApiModelsWorkflowsSignalRequest() *KeyfactorApiModelsWorkflowsSignalRequest

NewKeyfactorApiModelsWorkflowsSignalRequest instantiates a new KeyfactorApiModelsWorkflowsSignalRequest 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 NewKeyfactorApiModelsWorkflowsSignalRequestWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsSignalRequestWithDefaults() *KeyfactorApiModelsWorkflowsSignalRequest

NewKeyfactorApiModelsWorkflowsSignalRequestWithDefaults instantiates a new KeyfactorApiModelsWorkflowsSignalRequest 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 (*KeyfactorApiModelsWorkflowsSignalRequest) GetData ¶

func (o *KeyfactorApiModelsWorkflowsSignalRequest) GetData() map[string]map[string]interface{}

GetData returns the Data field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsSignalRequest) GetDataOk ¶

func (o *KeyfactorApiModelsWorkflowsSignalRequest) GetDataOk() (map[string]map[string]interface{}, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsSignalRequest) GetSignalKey ¶

GetSignalKey returns the SignalKey field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsSignalRequest) GetSignalKeyOk ¶

func (o *KeyfactorApiModelsWorkflowsSignalRequest) GetSignalKeyOk() (*string, bool)

GetSignalKeyOk returns a tuple with the SignalKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsSignalRequest) HasData ¶

HasData returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsSignalRequest) HasSignalKey ¶

HasSignalKey returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsSignalRequest) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsSignalRequest) SetData ¶

func (o *KeyfactorApiModelsWorkflowsSignalRequest) SetData(v map[string]map[string]interface{})

SetData gets a reference to the given map[string]map[string]interface{} and assigns it to the Data field.

func (*KeyfactorApiModelsWorkflowsSignalRequest) SetSignalKey ¶

SetSignalKey gets a reference to the given string and assigns it to the SignalKey field.

func (KeyfactorApiModelsWorkflowsSignalRequest) ToMap ¶

func (o KeyfactorApiModelsWorkflowsSignalRequest) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiModelsWorkflowsSignalRequest) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsSignalRequest) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse ¶

type KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse struct {
	WorkflowType         *string                                            `json:"WorkflowType,omitempty"`
	KeyType              *string                                            `json:"KeyType,omitempty"`
	ContextParameters    []string                                           `json:"ContextParameters,omitempty"`
	BuiltInSteps         []KeyfactorApiModelsWorkflowsAvailableStepResponse `json:"BuiltInSteps,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse struct for KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse

func NewKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse ¶

func NewKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse() *KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse

NewKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse instantiates a new KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse 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 NewKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponseWithDefaults ¶

func NewKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponseWithDefaults() *KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse

NewKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponseWithDefaults instantiates a new KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse 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 (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) GetBuiltInSteps ¶

GetBuiltInSteps returns the BuiltInSteps field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) GetBuiltInStepsOk ¶

GetBuiltInStepsOk returns a tuple with the BuiltInSteps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) GetContextParameters ¶

GetContextParameters returns the ContextParameters field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) GetContextParametersOk ¶

func (o *KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) GetContextParametersOk() ([]string, bool)

GetContextParametersOk returns a tuple with the ContextParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) GetKeyType ¶

GetKeyType returns the KeyType field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) GetKeyTypeOk ¶

GetKeyTypeOk returns a tuple with the KeyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) GetWorkflowType ¶

GetWorkflowType returns the WorkflowType field value if set, zero value otherwise.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) GetWorkflowTypeOk ¶

GetWorkflowTypeOk returns a tuple with the WorkflowType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) HasBuiltInSteps ¶

HasBuiltInSteps returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) HasContextParameters ¶

HasContextParameters returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) HasKeyType ¶

HasKeyType returns a boolean if a field has been set.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) HasWorkflowType ¶

HasWorkflowType returns a boolean if a field has been set.

func (KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) MarshalJSON ¶

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) SetBuiltInSteps ¶

SetBuiltInSteps gets a reference to the given []KeyfactorApiModelsWorkflowsAvailableStepResponse and assigns it to the BuiltInSteps field.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) SetContextParameters ¶

func (o *KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) SetContextParameters(v []string)

SetContextParameters gets a reference to the given []string and assigns it to the ContextParameters field.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) SetKeyType ¶

SetKeyType gets a reference to the given string and assigns it to the KeyType field.

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) SetWorkflowType ¶

SetWorkflowType gets a reference to the given string and assigns it to the WorkflowType field.

func (KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) ToMap ¶

func (*KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) UnmarshalJSON ¶

func (o *KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiPAMProviderTypeCreateRequest ¶

type KeyfactorApiPAMProviderTypeCreateRequest struct {
	Name                 string                                              `json:"Name"`
	Parameters           []KeyfactorApiPAMProviderTypeParameterCreateRequest `json:"Parameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiPAMProviderTypeCreateRequest struct for KeyfactorApiPAMProviderTypeCreateRequest

func NewKeyfactorApiPAMProviderTypeCreateRequest ¶

func NewKeyfactorApiPAMProviderTypeCreateRequest(name string) *KeyfactorApiPAMProviderTypeCreateRequest

NewKeyfactorApiPAMProviderTypeCreateRequest instantiates a new KeyfactorApiPAMProviderTypeCreateRequest 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 NewKeyfactorApiPAMProviderTypeCreateRequestWithDefaults ¶

func NewKeyfactorApiPAMProviderTypeCreateRequestWithDefaults() *KeyfactorApiPAMProviderTypeCreateRequest

NewKeyfactorApiPAMProviderTypeCreateRequestWithDefaults instantiates a new KeyfactorApiPAMProviderTypeCreateRequest 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 (*KeyfactorApiPAMProviderTypeCreateRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiPAMProviderTypeCreateRequest) GetNameOk ¶

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*KeyfactorApiPAMProviderTypeCreateRequest) GetParameters ¶

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeCreateRequest) GetParametersOk ¶

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiPAMProviderTypeCreateRequest) HasParameters ¶

HasParameters returns a boolean if a field has been set.

func (KeyfactorApiPAMProviderTypeCreateRequest) MarshalJSON ¶

func (*KeyfactorApiPAMProviderTypeCreateRequest) SetName ¶

SetName sets field value

func (*KeyfactorApiPAMProviderTypeCreateRequest) SetParameters ¶

SetParameters gets a reference to the given []KeyfactorApiPAMProviderTypeParameterCreateRequest and assigns it to the Parameters field.

func (KeyfactorApiPAMProviderTypeCreateRequest) ToMap ¶

func (o KeyfactorApiPAMProviderTypeCreateRequest) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiPAMProviderTypeCreateRequest) UnmarshalJSON ¶

func (o *KeyfactorApiPAMProviderTypeCreateRequest) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiPAMProviderTypeParameterCreateRequest ¶

type KeyfactorApiPAMProviderTypeParameterCreateRequest struct {
	Name                 string  `json:"Name"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	DataType             *int32  `json:"DataType,omitempty"`
	InstanceLevel        *bool   `json:"InstanceLevel,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiPAMProviderTypeParameterCreateRequest struct for KeyfactorApiPAMProviderTypeParameterCreateRequest

func NewKeyfactorApiPAMProviderTypeParameterCreateRequest ¶

func NewKeyfactorApiPAMProviderTypeParameterCreateRequest(name string) *KeyfactorApiPAMProviderTypeParameterCreateRequest

NewKeyfactorApiPAMProviderTypeParameterCreateRequest instantiates a new KeyfactorApiPAMProviderTypeParameterCreateRequest 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 NewKeyfactorApiPAMProviderTypeParameterCreateRequestWithDefaults ¶

func NewKeyfactorApiPAMProviderTypeParameterCreateRequestWithDefaults() *KeyfactorApiPAMProviderTypeParameterCreateRequest

NewKeyfactorApiPAMProviderTypeParameterCreateRequestWithDefaults instantiates a new KeyfactorApiPAMProviderTypeParameterCreateRequest 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 (*KeyfactorApiPAMProviderTypeParameterCreateRequest) GetDataType ¶

GetDataType returns the DataType field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) GetDataTypeOk ¶

GetDataTypeOk returns a tuple with the DataType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) GetInstanceLevel ¶

GetInstanceLevel returns the InstanceLevel field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) GetInstanceLevelOk ¶

func (o *KeyfactorApiPAMProviderTypeParameterCreateRequest) GetInstanceLevelOk() (*bool, bool)

GetInstanceLevelOk returns a tuple with the InstanceLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) GetName ¶

GetName returns the Name field value

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) GetNameOk ¶

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) HasDataType ¶

HasDataType returns a boolean if a field has been set.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) HasInstanceLevel ¶

HasInstanceLevel returns a boolean if a field has been set.

func (KeyfactorApiPAMProviderTypeParameterCreateRequest) MarshalJSON ¶

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) SetDataType ¶

SetDataType gets a reference to the given int32 and assigns it to the DataType field.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) SetInstanceLevel ¶

SetInstanceLevel gets a reference to the given bool and assigns it to the InstanceLevel field.

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) SetName ¶

SetName sets field value

func (KeyfactorApiPAMProviderTypeParameterCreateRequest) ToMap ¶

func (o KeyfactorApiPAMProviderTypeParameterCreateRequest) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiPAMProviderTypeParameterCreateRequest) UnmarshalJSON ¶

func (o *KeyfactorApiPAMProviderTypeParameterCreateRequest) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiPAMProviderTypeParameterResponse ¶

type KeyfactorApiPAMProviderTypeParameterResponse struct {
	Id                   *int32  `json:"Id,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	DataType             *int32  `json:"DataType,omitempty"`
	InstanceLevel        *bool   `json:"InstanceLevel,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiPAMProviderTypeParameterResponse struct for KeyfactorApiPAMProviderTypeParameterResponse

func NewKeyfactorApiPAMProviderTypeParameterResponse ¶

func NewKeyfactorApiPAMProviderTypeParameterResponse() *KeyfactorApiPAMProviderTypeParameterResponse

NewKeyfactorApiPAMProviderTypeParameterResponse instantiates a new KeyfactorApiPAMProviderTypeParameterResponse 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 NewKeyfactorApiPAMProviderTypeParameterResponseWithDefaults ¶

func NewKeyfactorApiPAMProviderTypeParameterResponseWithDefaults() *KeyfactorApiPAMProviderTypeParameterResponse

NewKeyfactorApiPAMProviderTypeParameterResponseWithDefaults instantiates a new KeyfactorApiPAMProviderTypeParameterResponse 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 (*KeyfactorApiPAMProviderTypeParameterResponse) GetDataType ¶

GetDataType returns the DataType field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeParameterResponse) GetDataTypeOk ¶

GetDataTypeOk returns a tuple with the DataType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiPAMProviderTypeParameterResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeParameterResponse) GetDisplayNameOk ¶

func (o *KeyfactorApiPAMProviderTypeParameterResponse) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiPAMProviderTypeParameterResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeParameterResponse) GetIdOk ¶

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 (*KeyfactorApiPAMProviderTypeParameterResponse) GetInstanceLevel ¶

func (o *KeyfactorApiPAMProviderTypeParameterResponse) GetInstanceLevel() bool

GetInstanceLevel returns the InstanceLevel field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeParameterResponse) GetInstanceLevelOk ¶

func (o *KeyfactorApiPAMProviderTypeParameterResponse) GetInstanceLevelOk() (*bool, bool)

GetInstanceLevelOk returns a tuple with the InstanceLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiPAMProviderTypeParameterResponse) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeParameterResponse) 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 (*KeyfactorApiPAMProviderTypeParameterResponse) HasDataType ¶

HasDataType returns a boolean if a field has been set.

func (*KeyfactorApiPAMProviderTypeParameterResponse) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*KeyfactorApiPAMProviderTypeParameterResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiPAMProviderTypeParameterResponse) HasInstanceLevel ¶

func (o *KeyfactorApiPAMProviderTypeParameterResponse) HasInstanceLevel() bool

HasInstanceLevel returns a boolean if a field has been set.

func (*KeyfactorApiPAMProviderTypeParameterResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (KeyfactorApiPAMProviderTypeParameterResponse) MarshalJSON ¶

func (*KeyfactorApiPAMProviderTypeParameterResponse) SetDataType ¶

SetDataType gets a reference to the given int32 and assigns it to the DataType field.

func (*KeyfactorApiPAMProviderTypeParameterResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*KeyfactorApiPAMProviderTypeParameterResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*KeyfactorApiPAMProviderTypeParameterResponse) SetInstanceLevel ¶

func (o *KeyfactorApiPAMProviderTypeParameterResponse) SetInstanceLevel(v bool)

SetInstanceLevel gets a reference to the given bool and assigns it to the InstanceLevel field.

func (*KeyfactorApiPAMProviderTypeParameterResponse) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (KeyfactorApiPAMProviderTypeParameterResponse) ToMap ¶

func (o KeyfactorApiPAMProviderTypeParameterResponse) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiPAMProviderTypeParameterResponse) UnmarshalJSON ¶

func (o *KeyfactorApiPAMProviderTypeParameterResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorApiPAMProviderTypeResponse ¶

type KeyfactorApiPAMProviderTypeResponse struct {
	Id                   *string                                        `json:"Id,omitempty"`
	Name                 *string                                        `json:"Name,omitempty"`
	Parameters           []KeyfactorApiPAMProviderTypeParameterResponse `json:"Parameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorApiPAMProviderTypeResponse struct for KeyfactorApiPAMProviderTypeResponse

func NewKeyfactorApiPAMProviderTypeResponse ¶

func NewKeyfactorApiPAMProviderTypeResponse() *KeyfactorApiPAMProviderTypeResponse

NewKeyfactorApiPAMProviderTypeResponse instantiates a new KeyfactorApiPAMProviderTypeResponse 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 NewKeyfactorApiPAMProviderTypeResponseWithDefaults ¶

func NewKeyfactorApiPAMProviderTypeResponseWithDefaults() *KeyfactorApiPAMProviderTypeResponse

NewKeyfactorApiPAMProviderTypeResponseWithDefaults instantiates a new KeyfactorApiPAMProviderTypeResponse 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 (*KeyfactorApiPAMProviderTypeResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeResponse) GetIdOk ¶

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 (*KeyfactorApiPAMProviderTypeResponse) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeResponse) GetNameOk ¶

func (o *KeyfactorApiPAMProviderTypeResponse) 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 (*KeyfactorApiPAMProviderTypeResponse) GetParameters ¶

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*KeyfactorApiPAMProviderTypeResponse) GetParametersOk ¶

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorApiPAMProviderTypeResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorApiPAMProviderTypeResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*KeyfactorApiPAMProviderTypeResponse) HasParameters ¶

func (o *KeyfactorApiPAMProviderTypeResponse) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (KeyfactorApiPAMProviderTypeResponse) MarshalJSON ¶

func (o KeyfactorApiPAMProviderTypeResponse) MarshalJSON() ([]byte, error)

func (*KeyfactorApiPAMProviderTypeResponse) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*KeyfactorApiPAMProviderTypeResponse) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*KeyfactorApiPAMProviderTypeResponse) SetParameters ¶

SetParameters gets a reference to the given []KeyfactorApiPAMProviderTypeParameterResponse and assigns it to the Parameters field.

func (KeyfactorApiPAMProviderTypeResponse) ToMap ¶

func (o KeyfactorApiPAMProviderTypeResponse) ToMap() (map[string]interface{}, error)

func (*KeyfactorApiPAMProviderTypeResponse) UnmarshalJSON ¶

func (o *KeyfactorApiPAMProviderTypeResponse) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorAuditingQueryingAuditLogEntry ¶

type KeyfactorAuditingQueryingAuditLogEntry struct {
	Id                   *int32     `json:"Id,omitempty"`
	Timestamp            *time.Time `json:"Timestamp,omitempty"`
	Message              *string    `json:"Message,omitempty"`
	Signature            *string    `json:"Signature,omitempty"`
	Category             *int32     `json:"Category,omitempty"`
	Operation            *int32     `json:"Operation,omitempty"`
	Level                *int32     `json:"Level,omitempty"`
	User                 *string    `json:"User,omitempty"`
	EntityType           *string    `json:"EntityType,omitempty"`
	AuditIdentifier      *string    `json:"AuditIdentifier,omitempty"`
	ImmutableIdentifier  *string    `json:"ImmutableIdentifier,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorAuditingQueryingAuditLogEntry struct for KeyfactorAuditingQueryingAuditLogEntry

func NewKeyfactorAuditingQueryingAuditLogEntry ¶

func NewKeyfactorAuditingQueryingAuditLogEntry() *KeyfactorAuditingQueryingAuditLogEntry

NewKeyfactorAuditingQueryingAuditLogEntry instantiates a new KeyfactorAuditingQueryingAuditLogEntry 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 NewKeyfactorAuditingQueryingAuditLogEntryWithDefaults ¶

func NewKeyfactorAuditingQueryingAuditLogEntryWithDefaults() *KeyfactorAuditingQueryingAuditLogEntry

NewKeyfactorAuditingQueryingAuditLogEntryWithDefaults instantiates a new KeyfactorAuditingQueryingAuditLogEntry 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 (*KeyfactorAuditingQueryingAuditLogEntry) GetAuditIdentifier ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) GetAuditIdentifier() string

GetAuditIdentifier returns the AuditIdentifier field value if set, zero value otherwise.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetAuditIdentifierOk ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) GetAuditIdentifierOk() (*string, bool)

GetAuditIdentifierOk returns a tuple with the AuditIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetCategory ¶

GetCategory returns the Category field value if set, zero value otherwise.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetCategoryOk ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) GetCategoryOk() (*int32, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetEntityType ¶

GetEntityType returns the EntityType field value if set, zero value otherwise.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetEntityTypeOk ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) GetEntityTypeOk() (*string, bool)

GetEntityTypeOk returns a tuple with the EntityType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetIdOk ¶

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 (*KeyfactorAuditingQueryingAuditLogEntry) GetImmutableIdentifier ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) GetImmutableIdentifier() string

GetImmutableIdentifier returns the ImmutableIdentifier field value if set, zero value otherwise.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetImmutableIdentifierOk ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) GetImmutableIdentifierOk() (*string, bool)

GetImmutableIdentifierOk returns a tuple with the ImmutableIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetLevel ¶

GetLevel returns the Level field value if set, zero value otherwise.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetLevelOk ¶

GetLevelOk returns a tuple with the Level field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetMessageOk ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) 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 (*KeyfactorAuditingQueryingAuditLogEntry) GetOperation ¶

GetOperation returns the Operation field value if set, zero value otherwise.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetOperationOk ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) GetOperationOk() (*int32, 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 (*KeyfactorAuditingQueryingAuditLogEntry) GetSignature ¶

GetSignature returns the Signature field value if set, zero value otherwise.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetSignatureOk ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) GetSignatureOk() (*string, bool)

GetSignatureOk returns a tuple with the Signature field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetTimestamp ¶

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetTimestampOk ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*KeyfactorAuditingQueryingAuditLogEntry) GetUserOk ¶

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) HasAuditIdentifier ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) HasAuditIdentifier() bool

HasAuditIdentifier returns a boolean if a field has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) HasCategory ¶

HasCategory returns a boolean if a field has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) HasEntityType ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) HasEntityType() bool

HasEntityType returns a boolean if a field has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) HasId ¶

HasId returns a boolean if a field has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) HasImmutableIdentifier ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) HasImmutableIdentifier() bool

HasImmutableIdentifier returns a boolean if a field has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) HasLevel ¶

HasLevel returns a boolean if a field has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) HasOperation ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) HasOperation() bool

HasOperation returns a boolean if a field has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) HasSignature ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) HasSignature() bool

HasSignature returns a boolean if a field has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) HasTimestamp ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*KeyfactorAuditingQueryingAuditLogEntry) HasUser ¶

HasUser returns a boolean if a field has been set.

func (KeyfactorAuditingQueryingAuditLogEntry) MarshalJSON ¶

func (o KeyfactorAuditingQueryingAuditLogEntry) MarshalJSON() ([]byte, error)

func (*KeyfactorAuditingQueryingAuditLogEntry) SetAuditIdentifier ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) SetAuditIdentifier(v string)

SetAuditIdentifier gets a reference to the given string and assigns it to the AuditIdentifier field.

func (*KeyfactorAuditingQueryingAuditLogEntry) SetCategory ¶

SetCategory gets a reference to the given int32 and assigns it to the Category field.

func (*KeyfactorAuditingQueryingAuditLogEntry) SetEntityType ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) SetEntityType(v string)

SetEntityType gets a reference to the given string and assigns it to the EntityType field.

func (*KeyfactorAuditingQueryingAuditLogEntry) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*KeyfactorAuditingQueryingAuditLogEntry) SetImmutableIdentifier ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) SetImmutableIdentifier(v string)

SetImmutableIdentifier gets a reference to the given string and assigns it to the ImmutableIdentifier field.

func (*KeyfactorAuditingQueryingAuditLogEntry) SetLevel ¶

SetLevel gets a reference to the given int32 and assigns it to the Level field.

func (*KeyfactorAuditingQueryingAuditLogEntry) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*KeyfactorAuditingQueryingAuditLogEntry) SetOperation ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) SetOperation(v int32)

SetOperation gets a reference to the given int32 and assigns it to the Operation field.

func (*KeyfactorAuditingQueryingAuditLogEntry) SetSignature ¶

SetSignature gets a reference to the given string and assigns it to the Signature field.

func (*KeyfactorAuditingQueryingAuditLogEntry) SetTimestamp ¶

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (*KeyfactorAuditingQueryingAuditLogEntry) SetUser ¶

SetUser gets a reference to the given string and assigns it to the User field.

func (KeyfactorAuditingQueryingAuditLogEntry) ToMap ¶

func (o KeyfactorAuditingQueryingAuditLogEntry) ToMap() (map[string]interface{}, error)

func (*KeyfactorAuditingQueryingAuditLogEntry) UnmarshalJSON ¶

func (o *KeyfactorAuditingQueryingAuditLogEntry) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorCommonSchedulingKeyfactorSchedule ¶

type KeyfactorCommonSchedulingKeyfactorSchedule struct {
	Immediate            *bool                                         `json:"Immediate,omitempty"`
	Interval             *KeyfactorCommonSchedulingModelsIntervalModel `json:"Interval,omitempty"`
	Daily                *KeyfactorCommonSchedulingModelsTimeModel     `json:"Daily,omitempty"`
	Weekly               *KeyfactorCommonSchedulingModelsWeeklyModel   `json:"Weekly,omitempty"`
	Monthly              *KeyfactorCommonSchedulingModelsMonthlyModel  `json:"Monthly,omitempty"`
	ExactlyOnce          *KeyfactorCommonSchedulingModelsTimeModel     `json:"ExactlyOnce,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorCommonSchedulingKeyfactorSchedule struct for KeyfactorCommonSchedulingKeyfactorSchedule

func NewKeyfactorCommonSchedulingKeyfactorSchedule ¶

func NewKeyfactorCommonSchedulingKeyfactorSchedule() *KeyfactorCommonSchedulingKeyfactorSchedule

NewKeyfactorCommonSchedulingKeyfactorSchedule instantiates a new KeyfactorCommonSchedulingKeyfactorSchedule 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 NewKeyfactorCommonSchedulingKeyfactorScheduleWithDefaults ¶

func NewKeyfactorCommonSchedulingKeyfactorScheduleWithDefaults() *KeyfactorCommonSchedulingKeyfactorSchedule

NewKeyfactorCommonSchedulingKeyfactorScheduleWithDefaults instantiates a new KeyfactorCommonSchedulingKeyfactorSchedule 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 (*KeyfactorCommonSchedulingKeyfactorSchedule) GetDaily ¶

GetDaily returns the Daily field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetDailyOk ¶

GetDailyOk returns a tuple with the Daily field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetExactlyOnce ¶

GetExactlyOnce returns the ExactlyOnce field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetExactlyOnceOk ¶

GetExactlyOnceOk returns a tuple with the ExactlyOnce field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetImmediate ¶

GetImmediate returns the Immediate field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetImmediateOk ¶

func (o *KeyfactorCommonSchedulingKeyfactorSchedule) GetImmediateOk() (*bool, bool)

GetImmediateOk returns a tuple with the Immediate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetInterval ¶

GetInterval returns the Interval field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetIntervalOk ¶

GetIntervalOk returns a tuple with the Interval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetMonthly ¶

GetMonthly returns the Monthly field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetMonthlyOk ¶

GetMonthlyOk returns a tuple with the Monthly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetWeekly ¶

GetWeekly returns the Weekly field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) GetWeeklyOk ¶

GetWeeklyOk returns a tuple with the Weekly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasDaily ¶

HasDaily returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasExactlyOnce ¶

HasExactlyOnce returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasImmediate ¶

HasImmediate returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasInterval ¶

HasInterval returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasMonthly ¶

HasMonthly returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) HasWeekly ¶

HasWeekly returns a boolean if a field has been set.

func (KeyfactorCommonSchedulingKeyfactorSchedule) MarshalJSON ¶

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetDaily ¶

SetDaily gets a reference to the given KeyfactorCommonSchedulingModelsTimeModel and assigns it to the Daily field.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetExactlyOnce ¶

SetExactlyOnce gets a reference to the given KeyfactorCommonSchedulingModelsTimeModel and assigns it to the ExactlyOnce field.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetImmediate ¶

SetImmediate gets a reference to the given bool and assigns it to the Immediate field.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetInterval ¶

SetInterval gets a reference to the given KeyfactorCommonSchedulingModelsIntervalModel and assigns it to the Interval field.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetMonthly ¶

SetMonthly gets a reference to the given KeyfactorCommonSchedulingModelsMonthlyModel and assigns it to the Monthly field.

func (*KeyfactorCommonSchedulingKeyfactorSchedule) SetWeekly ¶

SetWeekly gets a reference to the given KeyfactorCommonSchedulingModelsWeeklyModel and assigns it to the Weekly field.

func (KeyfactorCommonSchedulingKeyfactorSchedule) ToMap ¶

func (o KeyfactorCommonSchedulingKeyfactorSchedule) ToMap() (map[string]interface{}, error)

func (*KeyfactorCommonSchedulingKeyfactorSchedule) UnmarshalJSON ¶

func (o *KeyfactorCommonSchedulingKeyfactorSchedule) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorCommonSchedulingModelsIntervalModel ¶

type KeyfactorCommonSchedulingModelsIntervalModel struct {
	Minutes              *int32 `json:"Minutes,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorCommonSchedulingModelsIntervalModel struct for KeyfactorCommonSchedulingModelsIntervalModel

func NewKeyfactorCommonSchedulingModelsIntervalModel ¶

func NewKeyfactorCommonSchedulingModelsIntervalModel() *KeyfactorCommonSchedulingModelsIntervalModel

NewKeyfactorCommonSchedulingModelsIntervalModel instantiates a new KeyfactorCommonSchedulingModelsIntervalModel 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 NewKeyfactorCommonSchedulingModelsIntervalModelWithDefaults ¶

func NewKeyfactorCommonSchedulingModelsIntervalModelWithDefaults() *KeyfactorCommonSchedulingModelsIntervalModel

NewKeyfactorCommonSchedulingModelsIntervalModelWithDefaults instantiates a new KeyfactorCommonSchedulingModelsIntervalModel 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 (*KeyfactorCommonSchedulingModelsIntervalModel) GetMinutes ¶

GetMinutes returns the Minutes field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingModelsIntervalModel) GetMinutesOk ¶

GetMinutesOk returns a tuple with the Minutes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingModelsIntervalModel) HasMinutes ¶

HasMinutes returns a boolean if a field has been set.

func (KeyfactorCommonSchedulingModelsIntervalModel) MarshalJSON ¶

func (*KeyfactorCommonSchedulingModelsIntervalModel) SetMinutes ¶

SetMinutes gets a reference to the given int32 and assigns it to the Minutes field.

func (KeyfactorCommonSchedulingModelsIntervalModel) ToMap ¶

func (o KeyfactorCommonSchedulingModelsIntervalModel) ToMap() (map[string]interface{}, error)

func (*KeyfactorCommonSchedulingModelsIntervalModel) UnmarshalJSON ¶

func (o *KeyfactorCommonSchedulingModelsIntervalModel) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorCommonSchedulingModelsMonthlyModel ¶

type KeyfactorCommonSchedulingModelsMonthlyModel struct {
	Day                  *int32     `json:"Day,omitempty"`
	Time                 *time.Time `json:"Time,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorCommonSchedulingModelsMonthlyModel struct for KeyfactorCommonSchedulingModelsMonthlyModel

func NewKeyfactorCommonSchedulingModelsMonthlyModel ¶

func NewKeyfactorCommonSchedulingModelsMonthlyModel() *KeyfactorCommonSchedulingModelsMonthlyModel

NewKeyfactorCommonSchedulingModelsMonthlyModel instantiates a new KeyfactorCommonSchedulingModelsMonthlyModel 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 NewKeyfactorCommonSchedulingModelsMonthlyModelWithDefaults ¶

func NewKeyfactorCommonSchedulingModelsMonthlyModelWithDefaults() *KeyfactorCommonSchedulingModelsMonthlyModel

NewKeyfactorCommonSchedulingModelsMonthlyModelWithDefaults instantiates a new KeyfactorCommonSchedulingModelsMonthlyModel 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 (*KeyfactorCommonSchedulingModelsMonthlyModel) GetDay ¶

GetDay returns the Day field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingModelsMonthlyModel) GetDayOk ¶

GetDayOk returns a tuple with the Day field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingModelsMonthlyModel) GetTime ¶

GetTime returns the Time field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingModelsMonthlyModel) GetTimeOk ¶

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingModelsMonthlyModel) HasDay ¶

HasDay returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingModelsMonthlyModel) HasTime ¶

HasTime returns a boolean if a field has been set.

func (KeyfactorCommonSchedulingModelsMonthlyModel) MarshalJSON ¶

func (*KeyfactorCommonSchedulingModelsMonthlyModel) SetDay ¶

SetDay gets a reference to the given int32 and assigns it to the Day field.

func (*KeyfactorCommonSchedulingModelsMonthlyModel) SetTime ¶

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (KeyfactorCommonSchedulingModelsMonthlyModel) ToMap ¶

func (o KeyfactorCommonSchedulingModelsMonthlyModel) ToMap() (map[string]interface{}, error)

func (*KeyfactorCommonSchedulingModelsMonthlyModel) UnmarshalJSON ¶

func (o *KeyfactorCommonSchedulingModelsMonthlyModel) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorCommonSchedulingModelsTimeModel ¶

type KeyfactorCommonSchedulingModelsTimeModel struct {
	Time                 *time.Time `json:"Time,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorCommonSchedulingModelsTimeModel struct for KeyfactorCommonSchedulingModelsTimeModel

func NewKeyfactorCommonSchedulingModelsTimeModel ¶

func NewKeyfactorCommonSchedulingModelsTimeModel() *KeyfactorCommonSchedulingModelsTimeModel

NewKeyfactorCommonSchedulingModelsTimeModel instantiates a new KeyfactorCommonSchedulingModelsTimeModel 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 NewKeyfactorCommonSchedulingModelsTimeModelWithDefaults ¶

func NewKeyfactorCommonSchedulingModelsTimeModelWithDefaults() *KeyfactorCommonSchedulingModelsTimeModel

NewKeyfactorCommonSchedulingModelsTimeModelWithDefaults instantiates a new KeyfactorCommonSchedulingModelsTimeModel 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 (*KeyfactorCommonSchedulingModelsTimeModel) GetTime ¶

GetTime returns the Time field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingModelsTimeModel) GetTimeOk ¶

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingModelsTimeModel) HasTime ¶

HasTime returns a boolean if a field has been set.

func (KeyfactorCommonSchedulingModelsTimeModel) MarshalJSON ¶

func (*KeyfactorCommonSchedulingModelsTimeModel) SetTime ¶

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (KeyfactorCommonSchedulingModelsTimeModel) ToMap ¶

func (o KeyfactorCommonSchedulingModelsTimeModel) ToMap() (map[string]interface{}, error)

func (*KeyfactorCommonSchedulingModelsTimeModel) UnmarshalJSON ¶

func (o *KeyfactorCommonSchedulingModelsTimeModel) UnmarshalJSON(bytes []byte) (err error)

type KeyfactorCommonSchedulingModelsWeeklyModel ¶

type KeyfactorCommonSchedulingModelsWeeklyModel struct {
	Days                 []int32    `json:"Days,omitempty"`
	Time                 *time.Time `json:"Time,omitempty"`
	AdditionalProperties map[string]interface{}
}

KeyfactorCommonSchedulingModelsWeeklyModel struct for KeyfactorCommonSchedulingModelsWeeklyModel

func NewKeyfactorCommonSchedulingModelsWeeklyModel ¶

func NewKeyfactorCommonSchedulingModelsWeeklyModel() *KeyfactorCommonSchedulingModelsWeeklyModel

NewKeyfactorCommonSchedulingModelsWeeklyModel instantiates a new KeyfactorCommonSchedulingModelsWeeklyModel 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 NewKeyfactorCommonSchedulingModelsWeeklyModelWithDefaults ¶

func NewKeyfactorCommonSchedulingModelsWeeklyModelWithDefaults() *KeyfactorCommonSchedulingModelsWeeklyModel

NewKeyfactorCommonSchedulingModelsWeeklyModelWithDefaults instantiates a new KeyfactorCommonSchedulingModelsWeeklyModel 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 (*KeyfactorCommonSchedulingModelsWeeklyModel) GetDays ¶

GetDays returns the Days field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingModelsWeeklyModel) GetDaysOk ¶

GetDaysOk returns a tuple with the Days field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingModelsWeeklyModel) GetTime ¶

GetTime returns the Time field value if set, zero value otherwise.

func (*KeyfactorCommonSchedulingModelsWeeklyModel) GetTimeOk ¶

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set.

func (*KeyfactorCommonSchedulingModelsWeeklyModel) HasDays ¶

HasDays returns a boolean if a field has been set.

func (*KeyfactorCommonSchedulingModelsWeeklyModel) HasTime ¶

HasTime returns a boolean if a field has been set.

func (KeyfactorCommonSchedulingModelsWeeklyModel) MarshalJSON ¶

func (*KeyfactorCommonSchedulingModelsWeeklyModel) SetDays ¶

SetDays gets a reference to the given []int32 and assigns it to the Days field.

func (*KeyfactorCommonSchedulingModelsWeeklyModel) SetTime ¶

SetTime gets a reference to the given time.Time and assigns it to the Time field.

func (KeyfactorCommonSchedulingModelsWeeklyModel) ToMap ¶

func (o KeyfactorCommonSchedulingModelsWeeklyModel) ToMap() (map[string]interface{}, error)

func (*KeyfactorCommonSchedulingModelsWeeklyModel) UnmarshalJSON ¶

func (o *KeyfactorCommonSchedulingModelsWeeklyModel) UnmarshalJSON(bytes []byte) (err error)

type LicenseApiService ¶

type LicenseApiService service

LicenseApiService LicenseApi service

func (*LicenseApiService) LicenseGetCurrentLicense ¶

func (a *LicenseApiService) LicenseGetCurrentLicense(ctx context.Context) ApiLicenseGetCurrentLicenseRequest

LicenseGetCurrentLicense Gets the current license

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiLicenseGetCurrentLicenseRequest

func (*LicenseApiService) LicenseGetCurrentLicenseExecute ¶

Execute executes the request

@return KeyfactorApiModelsLicenseLicenseResponse

type LogonApiService ¶

type LogonApiService service

LogonApiService LogonApi service

func (*LogonApiService) LogonCreateLogon ¶

func (a *LogonApiService) LogonCreateLogon(ctx context.Context) ApiLogonCreateLogonRequest

LogonCreateLogon Creates a logon with the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiLogonCreateLogonRequest

func (*LogonApiService) LogonCreateLogonExecute ¶

Execute executes the request

@return ModelsSSHLogonsLogonResponse

func (*LogonApiService) LogonDelete ¶

func (a *LogonApiService) LogonDelete(ctx context.Context, id int32) ApiLogonDeleteRequest

LogonDelete Deletes a Logon associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifer of the Logon to be deleted
@return ApiLogonDeleteRequest

func (*LogonApiService) LogonDeleteExecute ¶

func (a *LogonApiService) LogonDeleteExecute(r ApiLogonDeleteRequest) (*http.Response, error)

Execute executes the request

func (*LogonApiService) LogonGetLogon ¶

func (a *LogonApiService) LogonGetLogon(ctx context.Context, id int32) ApiLogonGetLogonRequest

LogonGetLogon Fetches a Logon associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifer of the Logon to be Fetched
@return ApiLogonGetLogonRequest

func (*LogonApiService) LogonGetLogonExecute ¶

Execute executes the request

@return ModelsSSHLogonsLogonResponse

func (*LogonApiService) LogonLogonAccess ¶

func (a *LogonApiService) LogonLogonAccess(ctx context.Context) ApiLogonLogonAccessRequest

LogonLogonAccess Updates the users with access to an existing logon

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiLogonLogonAccessRequest

func (*LogonApiService) LogonLogonAccessExecute ¶

Execute executes the request

@return ModelsSSHAccessLogonUserAccessResponse

func (*LogonApiService) LogonQueryLogons ¶

func (a *LogonApiService) LogonQueryLogons(ctx context.Context) ApiLogonQueryLogonsRequest

LogonQueryLogons Returns all Logons according to the provided filter parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiLogonQueryLogonsRequest

func (*LogonApiService) LogonQueryLogonsExecute ¶

Execute executes the request

@return []ModelsSSHLogonsLogonQueryResponse

type MacEnrollmentApiService ¶

type MacEnrollmentApiService service

MacEnrollmentApiService MacEnrollmentApi service

func (*MacEnrollmentApiService) MacEnrollmentEditMacEnrollment ¶

MacEnrollmentEditMacEnrollment Updates mac enrollment settings data

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMacEnrollmentEditMacEnrollmentRequest

func (*MacEnrollmentApiService) MacEnrollmentEditMacEnrollmentExecute ¶

Execute executes the request

@return KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel

func (*MacEnrollmentApiService) MacEnrollmentMacEnrollment ¶

MacEnrollmentMacEnrollment Gets mac enrollment settings data

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMacEnrollmentMacEnrollmentRequest

func (*MacEnrollmentApiService) MacEnrollmentMacEnrollmentExecute ¶

Execute executes the request

@return KeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel

type MappedNullable ¶

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type MetadataFieldApiService ¶

type MetadataFieldApiService service

MetadataFieldApiService MetadataFieldApi service

func (*MetadataFieldApiService) MetadataFieldCreateMetadataField ¶

func (a *MetadataFieldApiService) MetadataFieldCreateMetadataField(ctx context.Context) ApiMetadataFieldCreateMetadataFieldRequest

MetadataFieldCreateMetadataField Creates a new metadata field type with the given metadata field type properties

*NOTE: Metadata Field in this context refers to MetadataFieldType, as opposed to the value of a metadata field associated with a certificate.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMetadataFieldCreateMetadataFieldRequest

func (*MetadataFieldApiService) MetadataFieldCreateMetadataFieldExecute ¶

Execute executes the request

@return KeyfactorApiModelsMetadataFieldMetadataFieldResponse

func (*MetadataFieldApiService) MetadataFieldDeleteMetadataField ¶

func (a *MetadataFieldApiService) MetadataFieldDeleteMetadataField(ctx context.Context, id int32) ApiMetadataFieldDeleteMetadataFieldRequest

MetadataFieldDeleteMetadataField Deletes a persisted metadata field type by its unique id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the metadata field type
@return ApiMetadataFieldDeleteMetadataFieldRequest

func (*MetadataFieldApiService) MetadataFieldDeleteMetadataFieldExecute ¶

func (a *MetadataFieldApiService) MetadataFieldDeleteMetadataFieldExecute(r ApiMetadataFieldDeleteMetadataFieldRequest) (*http.Response, error)

Execute executes the request

func (*MetadataFieldApiService) MetadataFieldDeleteMetadataFields ¶

func (a *MetadataFieldApiService) MetadataFieldDeleteMetadataFields(ctx context.Context) ApiMetadataFieldDeleteMetadataFieldsRequest

MetadataFieldDeleteMetadataFields Deletes multiple persisted metadata field types by their unique ids

This will ignore individual delete failures, and continue processing the array.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMetadataFieldDeleteMetadataFieldsRequest

func (*MetadataFieldApiService) MetadataFieldDeleteMetadataFieldsExecute ¶

func (a *MetadataFieldApiService) MetadataFieldDeleteMetadataFieldsExecute(r ApiMetadataFieldDeleteMetadataFieldsRequest) (*http.Response, error)

Execute executes the request

func (*MetadataFieldApiService) MetadataFieldGetAllMetadataFields ¶

func (a *MetadataFieldApiService) MetadataFieldGetAllMetadataFields(ctx context.Context) ApiMetadataFieldGetAllMetadataFieldsRequest

MetadataFieldGetAllMetadataFields Returns all metadata field types according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMetadataFieldGetAllMetadataFieldsRequest

func (*MetadataFieldApiService) MetadataFieldGetAllMetadataFieldsExecute ¶

Execute executes the request

@return []ModelsMetadataFieldTypeModel

func (*MetadataFieldApiService) MetadataFieldGetMetadataField0 ¶

func (a *MetadataFieldApiService) MetadataFieldGetMetadataField0(ctx context.Context, id int32) ApiMetadataFieldGetMetadataField0Request

MetadataFieldGetMetadataField0 Gets a persisted metadata field type by its unique id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The unique id of the metadata field type
@return ApiMetadataFieldGetMetadataField0Request

func (*MetadataFieldApiService) MetadataFieldGetMetadataField0Execute ¶

Execute executes the request

@return ModelsMetadataFieldTypeModel

func (*MetadataFieldApiService) MetadataFieldGetMetadataField1 ¶

func (a *MetadataFieldApiService) MetadataFieldGetMetadataField1(ctx context.Context, name string) ApiMetadataFieldGetMetadataField1Request

MetadataFieldGetMetadataField1 Gets a persisted metadata field type by its unique name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name The unique name of the metadata field.
@return ApiMetadataFieldGetMetadataField1Request

func (*MetadataFieldApiService) MetadataFieldGetMetadataField1Execute ¶

Execute executes the request

@return ModelsMetadataFieldTypeModel

func (*MetadataFieldApiService) MetadataFieldGetMetadataFieldInUse ¶

func (a *MetadataFieldApiService) MetadataFieldGetMetadataFieldInUse(ctx context.Context, id int32) ApiMetadataFieldGetMetadataFieldInUseRequest

MetadataFieldGetMetadataFieldInUse Determines if a metadata field type associated with the provided identifier is currently in use

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identitifer of the metadata field
@return ApiMetadataFieldGetMetadataFieldInUseRequest

func (*MetadataFieldApiService) MetadataFieldGetMetadataFieldInUseExecute ¶

func (a *MetadataFieldApiService) MetadataFieldGetMetadataFieldInUseExecute(r ApiMetadataFieldGetMetadataFieldInUseRequest) (bool, *http.Response, error)

Execute executes the request

@return bool

func (*MetadataFieldApiService) MetadataFieldUpdateMetadataField ¶

func (a *MetadataFieldApiService) MetadataFieldUpdateMetadataField(ctx context.Context) ApiMetadataFieldUpdateMetadataFieldRequest

MetadataFieldUpdateMetadataField Updates a persisted metadata field with the given metadata field type

*NOTE: Metadata Field in this context refers to MetadataFieldType, as opposed to the value of a metadata field associated with a certificate.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMetadataFieldUpdateMetadataFieldRequest

func (*MetadataFieldApiService) MetadataFieldUpdateMetadataFieldExecute ¶

Execute executes the request

@return KeyfactorApiModelsMetadataFieldMetadataFieldResponse

type ModelsAgentsAgentPool ¶

type ModelsAgentsAgentPool struct {
	// GUID identifier of the agent pool
	AgentPoolId *string `json:"AgentPoolId,omitempty"`
	// Name of the agent pool
	Name string `json:"Name"`
	// Number of agents that can perform discovery jobs
	DiscoverAgentsCount *int32 `json:"DiscoverAgentsCount,omitempty"`
	// Number of agents that can perform monitoring jobs
	MonitorAgentsCount *int32 `json:"MonitorAgentsCount,omitempty"`
	// List of the agents assigned to the pool
	Agents               []ModelsAgentsAgentPoolAgent `json:"Agents,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsAgentsAgentPool Class representing an SSL agent pool

func NewModelsAgentsAgentPool ¶

func NewModelsAgentsAgentPool(name string) *ModelsAgentsAgentPool

NewModelsAgentsAgentPool instantiates a new ModelsAgentsAgentPool 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 NewModelsAgentsAgentPoolWithDefaults ¶

func NewModelsAgentsAgentPoolWithDefaults() *ModelsAgentsAgentPool

NewModelsAgentsAgentPoolWithDefaults instantiates a new ModelsAgentsAgentPool 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 (*ModelsAgentsAgentPool) GetAgentPoolId ¶

func (o *ModelsAgentsAgentPool) GetAgentPoolId() string

GetAgentPoolId returns the AgentPoolId field value if set, zero value otherwise.

func (*ModelsAgentsAgentPool) GetAgentPoolIdOk ¶

func (o *ModelsAgentsAgentPool) GetAgentPoolIdOk() (*string, bool)

GetAgentPoolIdOk returns a tuple with the AgentPoolId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsAgentsAgentPool) GetAgents ¶

GetAgents returns the Agents field value if set, zero value otherwise.

func (*ModelsAgentsAgentPool) GetAgentsOk ¶

GetAgentsOk returns a tuple with the Agents field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsAgentsAgentPool) GetDiscoverAgentsCount ¶

func (o *ModelsAgentsAgentPool) GetDiscoverAgentsCount() int32

GetDiscoverAgentsCount returns the DiscoverAgentsCount field value if set, zero value otherwise.

func (*ModelsAgentsAgentPool) GetDiscoverAgentsCountOk ¶

func (o *ModelsAgentsAgentPool) GetDiscoverAgentsCountOk() (*int32, bool)

GetDiscoverAgentsCountOk returns a tuple with the DiscoverAgentsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsAgentsAgentPool) GetMonitorAgentsCount ¶

func (o *ModelsAgentsAgentPool) GetMonitorAgentsCount() int32

GetMonitorAgentsCount returns the MonitorAgentsCount field value if set, zero value otherwise.

func (*ModelsAgentsAgentPool) GetMonitorAgentsCountOk ¶

func (o *ModelsAgentsAgentPool) GetMonitorAgentsCountOk() (*int32, bool)

GetMonitorAgentsCountOk returns a tuple with the MonitorAgentsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsAgentsAgentPool) GetName ¶

func (o *ModelsAgentsAgentPool) GetName() string

GetName returns the Name field value

func (*ModelsAgentsAgentPool) GetNameOk ¶

func (o *ModelsAgentsAgentPool) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ModelsAgentsAgentPool) HasAgentPoolId ¶

func (o *ModelsAgentsAgentPool) HasAgentPoolId() bool

HasAgentPoolId returns a boolean if a field has been set.

func (*ModelsAgentsAgentPool) HasAgents ¶

func (o *ModelsAgentsAgentPool) HasAgents() bool

HasAgents returns a boolean if a field has been set.

func (*ModelsAgentsAgentPool) HasDiscoverAgentsCount ¶

func (o *ModelsAgentsAgentPool) HasDiscoverAgentsCount() bool

HasDiscoverAgentsCount returns a boolean if a field has been set.

func (*ModelsAgentsAgentPool) HasMonitorAgentsCount ¶

func (o *ModelsAgentsAgentPool) HasMonitorAgentsCount() bool

HasMonitorAgentsCount returns a boolean if a field has been set.

func (ModelsAgentsAgentPool) MarshalJSON ¶

func (o ModelsAgentsAgentPool) MarshalJSON() ([]byte, error)

func (*ModelsAgentsAgentPool) SetAgentPoolId ¶

func (o *ModelsAgentsAgentPool) SetAgentPoolId(v string)

SetAgentPoolId gets a reference to the given string and assigns it to the AgentPoolId field.

func (*ModelsAgentsAgentPool) SetAgents ¶

SetAgents gets a reference to the given []ModelsAgentsAgentPoolAgent and assigns it to the Agents field.

func (*ModelsAgentsAgentPool) SetDiscoverAgentsCount ¶

func (o *ModelsAgentsAgentPool) SetDiscoverAgentsCount(v int32)

SetDiscoverAgentsCount gets a reference to the given int32 and assigns it to the DiscoverAgentsCount field.

func (*ModelsAgentsAgentPool) SetMonitorAgentsCount ¶

func (o *ModelsAgentsAgentPool) SetMonitorAgentsCount(v int32)

SetMonitorAgentsCount gets a reference to the given int32 and assigns it to the MonitorAgentsCount field.

func (*ModelsAgentsAgentPool) SetName ¶

func (o *ModelsAgentsAgentPool) SetName(v string)

SetName sets field value

func (ModelsAgentsAgentPool) ToMap ¶

func (o ModelsAgentsAgentPool) ToMap() (map[string]interface{}, error)

func (*ModelsAgentsAgentPool) UnmarshalJSON ¶

func (o *ModelsAgentsAgentPool) UnmarshalJSON(bytes []byte) (err error)

type ModelsAgentsAgentPoolAgent ¶

type ModelsAgentsAgentPoolAgent struct {
	AgentId              *string `json:"AgentId,omitempty"`
	EnableDiscover       *bool   `json:"EnableDiscover,omitempty"`
	EnableMonitor        *bool   `json:"EnableMonitor,omitempty"`
	Version              *string `json:"Version,omitempty"`
	AllowsDiscover       *bool   `json:"AllowsDiscover,omitempty"`
	AllowsMonitor        *bool   `json:"AllowsMonitor,omitempty"`
	ClientMachine        *string `json:"ClientMachine,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsAgentsAgentPoolAgent struct for ModelsAgentsAgentPoolAgent

func NewModelsAgentsAgentPoolAgent ¶

func NewModelsAgentsAgentPoolAgent() *ModelsAgentsAgentPoolAgent

NewModelsAgentsAgentPoolAgent instantiates a new ModelsAgentsAgentPoolAgent 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 NewModelsAgentsAgentPoolAgentWithDefaults ¶

func NewModelsAgentsAgentPoolAgentWithDefaults() *ModelsAgentsAgentPoolAgent

NewModelsAgentsAgentPoolAgentWithDefaults instantiates a new ModelsAgentsAgentPoolAgent 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 (*ModelsAgentsAgentPoolAgent) GetAgentId ¶

func (o *ModelsAgentsAgentPoolAgent) GetAgentId() string

GetAgentId returns the AgentId field value if set, zero value otherwise.

func (*ModelsAgentsAgentPoolAgent) GetAgentIdOk ¶

func (o *ModelsAgentsAgentPoolAgent) GetAgentIdOk() (*string, bool)

GetAgentIdOk returns a tuple with the AgentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsAgentsAgentPoolAgent) GetAllowsDiscover ¶

func (o *ModelsAgentsAgentPoolAgent) GetAllowsDiscover() bool

GetAllowsDiscover returns the AllowsDiscover field value if set, zero value otherwise.

func (*ModelsAgentsAgentPoolAgent) GetAllowsDiscoverOk ¶

func (o *ModelsAgentsAgentPoolAgent) GetAllowsDiscoverOk() (*bool, bool)

GetAllowsDiscoverOk returns a tuple with the AllowsDiscover field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsAgentsAgentPoolAgent) GetAllowsMonitor ¶

func (o *ModelsAgentsAgentPoolAgent) GetAllowsMonitor() bool

GetAllowsMonitor returns the AllowsMonitor field value if set, zero value otherwise.

func (*ModelsAgentsAgentPoolAgent) GetAllowsMonitorOk ¶

func (o *ModelsAgentsAgentPoolAgent) GetAllowsMonitorOk() (*bool, bool)

GetAllowsMonitorOk returns a tuple with the AllowsMonitor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsAgentsAgentPoolAgent) GetClientMachine ¶

func (o *ModelsAgentsAgentPoolAgent) GetClientMachine() string

GetClientMachine returns the ClientMachine field value if set, zero value otherwise.

func (*ModelsAgentsAgentPoolAgent) GetClientMachineOk ¶

func (o *ModelsAgentsAgentPoolAgent) GetClientMachineOk() (*string, bool)

GetClientMachineOk returns a tuple with the ClientMachine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsAgentsAgentPoolAgent) GetEnableDiscover ¶

func (o *ModelsAgentsAgentPoolAgent) GetEnableDiscover() bool

GetEnableDiscover returns the EnableDiscover field value if set, zero value otherwise.

func (*ModelsAgentsAgentPoolAgent) GetEnableDiscoverOk ¶

func (o *ModelsAgentsAgentPoolAgent) GetEnableDiscoverOk() (*bool, bool)

GetEnableDiscoverOk returns a tuple with the EnableDiscover field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsAgentsAgentPoolAgent) GetEnableMonitor ¶

func (o *ModelsAgentsAgentPoolAgent) GetEnableMonitor() bool

GetEnableMonitor returns the EnableMonitor field value if set, zero value otherwise.

func (*ModelsAgentsAgentPoolAgent) GetEnableMonitorOk ¶

func (o *ModelsAgentsAgentPoolAgent) GetEnableMonitorOk() (*bool, bool)

GetEnableMonitorOk returns a tuple with the EnableMonitor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsAgentsAgentPoolAgent) GetVersion ¶

func (o *ModelsAgentsAgentPoolAgent) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*ModelsAgentsAgentPoolAgent) GetVersionOk ¶

func (o *ModelsAgentsAgentPoolAgent) 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 (*ModelsAgentsAgentPoolAgent) HasAgentId ¶

func (o *ModelsAgentsAgentPoolAgent) HasAgentId() bool

HasAgentId returns a boolean if a field has been set.

func (*ModelsAgentsAgentPoolAgent) HasAllowsDiscover ¶

func (o *ModelsAgentsAgentPoolAgent) HasAllowsDiscover() bool

HasAllowsDiscover returns a boolean if a field has been set.

func (*ModelsAgentsAgentPoolAgent) HasAllowsMonitor ¶

func (o *ModelsAgentsAgentPoolAgent) HasAllowsMonitor() bool

HasAllowsMonitor returns a boolean if a field has been set.

func (*ModelsAgentsAgentPoolAgent) HasClientMachine ¶

func (o *ModelsAgentsAgentPoolAgent) HasClientMachine() bool

HasClientMachine returns a boolean if a field has been set.

func (*ModelsAgentsAgentPoolAgent) HasEnableDiscover ¶

func (o *ModelsAgentsAgentPoolAgent) HasEnableDiscover() bool

HasEnableDiscover returns a boolean if a field has been set.

func (*ModelsAgentsAgentPoolAgent) HasEnableMonitor ¶

func (o *ModelsAgentsAgentPoolAgent) HasEnableMonitor() bool

HasEnableMonitor returns a boolean if a field has been set.

func (*ModelsAgentsAgentPoolAgent) HasVersion ¶

func (o *ModelsAgentsAgentPoolAgent) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ModelsAgentsAgentPoolAgent) MarshalJSON ¶

func (o ModelsAgentsAgentPoolAgent) MarshalJSON() ([]byte, error)

func (*ModelsAgentsAgentPoolAgent) SetAgentId ¶

func (o *ModelsAgentsAgentPoolAgent) SetAgentId(v string)

SetAgentId gets a reference to the given string and assigns it to the AgentId field.

func (*ModelsAgentsAgentPoolAgent) SetAllowsDiscover ¶

func (o *ModelsAgentsAgentPoolAgent) SetAllowsDiscover(v bool)

SetAllowsDiscover gets a reference to the given bool and assigns it to the AllowsDiscover field.

func (*ModelsAgentsAgentPoolAgent) SetAllowsMonitor ¶

func (o *ModelsAgentsAgentPoolAgent) SetAllowsMonitor(v bool)

SetAllowsMonitor gets a reference to the given bool and assigns it to the AllowsMonitor field.

func (*ModelsAgentsAgentPoolAgent) SetClientMachine ¶

func (o *ModelsAgentsAgentPoolAgent) SetClientMachine(v string)

SetClientMachine gets a reference to the given string and assigns it to the ClientMachine field.

func (*ModelsAgentsAgentPoolAgent) SetEnableDiscover ¶

func (o *ModelsAgentsAgentPoolAgent) SetEnableDiscover(v bool)

SetEnableDiscover gets a reference to the given bool and assigns it to the EnableDiscover field.

func (*ModelsAgentsAgentPoolAgent) SetEnableMonitor ¶

func (o *ModelsAgentsAgentPoolAgent) SetEnableMonitor(v bool)

SetEnableMonitor gets a reference to the given bool and assigns it to the EnableMonitor field.

func (*ModelsAgentsAgentPoolAgent) SetVersion ¶

func (o *ModelsAgentsAgentPoolAgent) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (ModelsAgentsAgentPoolAgent) ToMap ¶

func (o ModelsAgentsAgentPoolAgent) ToMap() (map[string]interface{}, error)

func (*ModelsAgentsAgentPoolAgent) UnmarshalJSON ¶

func (o *ModelsAgentsAgentPoolAgent) UnmarshalJSON(bytes []byte) (err error)

type ModelsCRLRequestModel ¶

type ModelsCRLRequestModel struct {
	CertificateAuthorityLogicalName string  `json:"CertificateAuthorityLogicalName"`
	CertificateAuthorityHostName    *string `json:"CertificateAuthorityHostName,omitempty"`
	AdditionalProperties            map[string]interface{}
}

ModelsCRLRequestModel struct for ModelsCRLRequestModel

func NewModelsCRLRequestModel ¶

func NewModelsCRLRequestModel(certificateAuthorityLogicalName string) *ModelsCRLRequestModel

NewModelsCRLRequestModel instantiates a new ModelsCRLRequestModel 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 NewModelsCRLRequestModelWithDefaults ¶

func NewModelsCRLRequestModelWithDefaults() *ModelsCRLRequestModel

NewModelsCRLRequestModelWithDefaults instantiates a new ModelsCRLRequestModel 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 (*ModelsCRLRequestModel) GetCertificateAuthorityHostName ¶

func (o *ModelsCRLRequestModel) GetCertificateAuthorityHostName() string

GetCertificateAuthorityHostName returns the CertificateAuthorityHostName field value if set, zero value otherwise.

func (*ModelsCRLRequestModel) GetCertificateAuthorityHostNameOk ¶

func (o *ModelsCRLRequestModel) GetCertificateAuthorityHostNameOk() (*string, bool)

GetCertificateAuthorityHostNameOk returns a tuple with the CertificateAuthorityHostName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCRLRequestModel) GetCertificateAuthorityLogicalName ¶

func (o *ModelsCRLRequestModel) GetCertificateAuthorityLogicalName() string

GetCertificateAuthorityLogicalName returns the CertificateAuthorityLogicalName field value

func (*ModelsCRLRequestModel) GetCertificateAuthorityLogicalNameOk ¶

func (o *ModelsCRLRequestModel) GetCertificateAuthorityLogicalNameOk() (*string, bool)

GetCertificateAuthorityLogicalNameOk returns a tuple with the CertificateAuthorityLogicalName field value and a boolean to check if the value has been set.

func (*ModelsCRLRequestModel) HasCertificateAuthorityHostName ¶

func (o *ModelsCRLRequestModel) HasCertificateAuthorityHostName() bool

HasCertificateAuthorityHostName returns a boolean if a field has been set.

func (ModelsCRLRequestModel) MarshalJSON ¶

func (o ModelsCRLRequestModel) MarshalJSON() ([]byte, error)

func (*ModelsCRLRequestModel) SetCertificateAuthorityHostName ¶

func (o *ModelsCRLRequestModel) SetCertificateAuthorityHostName(v string)

SetCertificateAuthorityHostName gets a reference to the given string and assigns it to the CertificateAuthorityHostName field.

func (*ModelsCRLRequestModel) SetCertificateAuthorityLogicalName ¶

func (o *ModelsCRLRequestModel) SetCertificateAuthorityLogicalName(v string)

SetCertificateAuthorityLogicalName sets field value

func (ModelsCRLRequestModel) ToMap ¶

func (o ModelsCRLRequestModel) ToMap() (map[string]interface{}, error)

func (*ModelsCRLRequestModel) UnmarshalJSON ¶

func (o *ModelsCRLRequestModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsCSRContents ¶

type ModelsCSRContents struct {
	CSR                  string `json:"CSR"`
	AdditionalProperties map[string]interface{}
}

ModelsCSRContents struct for ModelsCSRContents

func NewModelsCSRContents ¶

func NewModelsCSRContents(cSR string) *ModelsCSRContents

NewModelsCSRContents instantiates a new ModelsCSRContents 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 NewModelsCSRContentsWithDefaults ¶

func NewModelsCSRContentsWithDefaults() *ModelsCSRContents

NewModelsCSRContentsWithDefaults instantiates a new ModelsCSRContents 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 (*ModelsCSRContents) GetCSR ¶

func (o *ModelsCSRContents) GetCSR() string

GetCSR returns the CSR field value

func (*ModelsCSRContents) GetCSROk ¶

func (o *ModelsCSRContents) GetCSROk() (*string, bool)

GetCSROk returns a tuple with the CSR field value and a boolean to check if the value has been set.

func (ModelsCSRContents) MarshalJSON ¶

func (o ModelsCSRContents) MarshalJSON() ([]byte, error)

func (*ModelsCSRContents) SetCSR ¶

func (o *ModelsCSRContents) SetCSR(v string)

SetCSR sets field value

func (ModelsCSRContents) ToMap ¶

func (o ModelsCSRContents) ToMap() (map[string]interface{}, error)

func (*ModelsCSRContents) UnmarshalJSON ¶

func (o *ModelsCSRContents) UnmarshalJSON(bytes []byte) (err error)

type ModelsCSRGenerationResponseModel ¶

type ModelsCSRGenerationResponseModel struct {
	CSRFilePath          *string `json:"CSRFilePath,omitempty"`
	CSRText              *string `json:"CSRText,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCSRGenerationResponseModel struct for ModelsCSRGenerationResponseModel

func NewModelsCSRGenerationResponseModel ¶

func NewModelsCSRGenerationResponseModel() *ModelsCSRGenerationResponseModel

NewModelsCSRGenerationResponseModel instantiates a new ModelsCSRGenerationResponseModel 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 NewModelsCSRGenerationResponseModelWithDefaults ¶

func NewModelsCSRGenerationResponseModelWithDefaults() *ModelsCSRGenerationResponseModel

NewModelsCSRGenerationResponseModelWithDefaults instantiates a new ModelsCSRGenerationResponseModel 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 (*ModelsCSRGenerationResponseModel) GetCSRFilePath ¶

func (o *ModelsCSRGenerationResponseModel) GetCSRFilePath() string

GetCSRFilePath returns the CSRFilePath field value if set, zero value otherwise.

func (*ModelsCSRGenerationResponseModel) GetCSRFilePathOk ¶

func (o *ModelsCSRGenerationResponseModel) GetCSRFilePathOk() (*string, bool)

GetCSRFilePathOk returns a tuple with the CSRFilePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCSRGenerationResponseModel) GetCSRText ¶

func (o *ModelsCSRGenerationResponseModel) GetCSRText() string

GetCSRText returns the CSRText field value if set, zero value otherwise.

func (*ModelsCSRGenerationResponseModel) GetCSRTextOk ¶

func (o *ModelsCSRGenerationResponseModel) GetCSRTextOk() (*string, bool)

GetCSRTextOk returns a tuple with the CSRText field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCSRGenerationResponseModel) HasCSRFilePath ¶

func (o *ModelsCSRGenerationResponseModel) HasCSRFilePath() bool

HasCSRFilePath returns a boolean if a field has been set.

func (*ModelsCSRGenerationResponseModel) HasCSRText ¶

func (o *ModelsCSRGenerationResponseModel) HasCSRText() bool

HasCSRText returns a boolean if a field has been set.

func (ModelsCSRGenerationResponseModel) MarshalJSON ¶

func (o ModelsCSRGenerationResponseModel) MarshalJSON() ([]byte, error)

func (*ModelsCSRGenerationResponseModel) SetCSRFilePath ¶

func (o *ModelsCSRGenerationResponseModel) SetCSRFilePath(v string)

SetCSRFilePath gets a reference to the given string and assigns it to the CSRFilePath field.

func (*ModelsCSRGenerationResponseModel) SetCSRText ¶

func (o *ModelsCSRGenerationResponseModel) SetCSRText(v string)

SetCSRText gets a reference to the given string and assigns it to the CSRText field.

func (ModelsCSRGenerationResponseModel) ToMap ¶

func (o ModelsCSRGenerationResponseModel) ToMap() (map[string]interface{}, error)

func (*ModelsCSRGenerationResponseModel) UnmarshalJSON ¶

func (o *ModelsCSRGenerationResponseModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertStoreLocationsCertificateLocationsGroup ¶

type ModelsCertStoreLocationsCertificateLocationsGroup struct {
	StoreType            *string                                                   `json:"StoreType,omitempty"`
	StoreTypeId          *int32                                                    `json:"StoreTypeId,omitempty"`
	StoreCount           *int32                                                    `json:"StoreCount,omitempty"`
	Locations            []ModelsCertStoreLocationsCertificateStoreLocationsDetail `json:"Locations,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertStoreLocationsCertificateLocationsGroup struct for ModelsCertStoreLocationsCertificateLocationsGroup

func NewModelsCertStoreLocationsCertificateLocationsGroup ¶

func NewModelsCertStoreLocationsCertificateLocationsGroup() *ModelsCertStoreLocationsCertificateLocationsGroup

NewModelsCertStoreLocationsCertificateLocationsGroup instantiates a new ModelsCertStoreLocationsCertificateLocationsGroup 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 NewModelsCertStoreLocationsCertificateLocationsGroupWithDefaults ¶

func NewModelsCertStoreLocationsCertificateLocationsGroupWithDefaults() *ModelsCertStoreLocationsCertificateLocationsGroup

NewModelsCertStoreLocationsCertificateLocationsGroupWithDefaults instantiates a new ModelsCertStoreLocationsCertificateLocationsGroup 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 (*ModelsCertStoreLocationsCertificateLocationsGroup) GetLocations ¶

GetLocations returns the Locations field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) GetLocationsOk ¶

GetLocationsOk returns a tuple with the Locations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) GetStoreCount ¶

GetStoreCount returns the StoreCount field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) GetStoreCountOk ¶

GetStoreCountOk returns a tuple with the StoreCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) GetStoreType ¶

GetStoreType returns the StoreType field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) GetStoreTypeId ¶

GetStoreTypeId returns the StoreTypeId field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) GetStoreTypeIdOk ¶

GetStoreTypeIdOk returns a tuple with the StoreTypeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) GetStoreTypeOk ¶

GetStoreTypeOk returns a tuple with the StoreType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) HasLocations ¶

HasLocations returns a boolean if a field has been set.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) HasStoreCount ¶

HasStoreCount returns a boolean if a field has been set.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) HasStoreType ¶

HasStoreType returns a boolean if a field has been set.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) HasStoreTypeId ¶

HasStoreTypeId returns a boolean if a field has been set.

func (ModelsCertStoreLocationsCertificateLocationsGroup) MarshalJSON ¶

func (*ModelsCertStoreLocationsCertificateLocationsGroup) SetLocations ¶

SetLocations gets a reference to the given []ModelsCertStoreLocationsCertificateStoreLocationsDetail and assigns it to the Locations field.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) SetStoreCount ¶

SetStoreCount gets a reference to the given int32 and assigns it to the StoreCount field.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) SetStoreType ¶

SetStoreType gets a reference to the given string and assigns it to the StoreType field.

func (*ModelsCertStoreLocationsCertificateLocationsGroup) SetStoreTypeId ¶

SetStoreTypeId gets a reference to the given int32 and assigns it to the StoreTypeId field.

func (ModelsCertStoreLocationsCertificateLocationsGroup) ToMap ¶

func (o ModelsCertStoreLocationsCertificateLocationsGroup) ToMap() (map[string]interface{}, error)

func (*ModelsCertStoreLocationsCertificateLocationsGroup) UnmarshalJSON ¶

func (o *ModelsCertStoreLocationsCertificateLocationsGroup) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertStoreLocationsCertificateStoreLocationsDetail ¶

type ModelsCertStoreLocationsCertificateStoreLocationsDetail struct {
	StoreId              *string `json:"StoreId,omitempty"`
	StoreTypeId          *int32  `json:"StoreTypeId,omitempty"`
	ClientMachine        *string `json:"ClientMachine,omitempty"`
	StorePath            *string `json:"StorePath,omitempty"`
	AgentPool            *string `json:"AgentPool,omitempty"`
	Alias                *string `json:"Alias,omitempty"`
	IPAddress            *string `json:"IPAddress,omitempty"`
	Port                 *int32  `json:"Port,omitempty"`
	NetworkName          *string `json:"NetworkName,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertStoreLocationsCertificateStoreLocationsDetail struct for ModelsCertStoreLocationsCertificateStoreLocationsDetail

func NewModelsCertStoreLocationsCertificateStoreLocationsDetail ¶

func NewModelsCertStoreLocationsCertificateStoreLocationsDetail() *ModelsCertStoreLocationsCertificateStoreLocationsDetail

NewModelsCertStoreLocationsCertificateStoreLocationsDetail instantiates a new ModelsCertStoreLocationsCertificateStoreLocationsDetail 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 NewModelsCertStoreLocationsCertificateStoreLocationsDetailWithDefaults ¶

func NewModelsCertStoreLocationsCertificateStoreLocationsDetailWithDefaults() *ModelsCertStoreLocationsCertificateStoreLocationsDetail

NewModelsCertStoreLocationsCertificateStoreLocationsDetailWithDefaults instantiates a new ModelsCertStoreLocationsCertificateStoreLocationsDetail 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 (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetAgentPool ¶

GetAgentPool returns the AgentPool field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetAgentPoolOk ¶

GetAgentPoolOk returns a tuple with the AgentPool field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetAlias ¶

GetAlias returns the Alias field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetAliasOk ¶

GetAliasOk returns a tuple with the Alias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetClientMachine ¶

GetClientMachine returns the ClientMachine field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetClientMachineOk ¶

GetClientMachineOk returns a tuple with the ClientMachine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetIPAddress ¶

GetIPAddress returns the IPAddress field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetIPAddressOk ¶

GetIPAddressOk returns a tuple with the IPAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetNetworkName ¶

GetNetworkName returns the NetworkName field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetNetworkNameOk ¶

GetNetworkNameOk returns a tuple with the NetworkName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetPort ¶

GetPort returns the Port field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetPortOk ¶

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetStoreId ¶

GetStoreId returns the StoreId field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetStoreIdOk ¶

GetStoreIdOk returns a tuple with the StoreId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetStorePath ¶

GetStorePath returns the StorePath field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetStorePathOk ¶

GetStorePathOk returns a tuple with the StorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetStoreTypeId ¶

GetStoreTypeId returns the StoreTypeId field value if set, zero value otherwise.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) GetStoreTypeIdOk ¶

GetStoreTypeIdOk returns a tuple with the StoreTypeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) HasAgentPool ¶

HasAgentPool returns a boolean if a field has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) HasAlias ¶

HasAlias returns a boolean if a field has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) HasClientMachine ¶

HasClientMachine returns a boolean if a field has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) HasIPAddress ¶

HasIPAddress returns a boolean if a field has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) HasNetworkName ¶

HasNetworkName returns a boolean if a field has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) HasPort ¶

HasPort returns a boolean if a field has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) HasStoreId ¶

HasStoreId returns a boolean if a field has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) HasStorePath ¶

HasStorePath returns a boolean if a field has been set.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) HasStoreTypeId ¶

HasStoreTypeId returns a boolean if a field has been set.

func (ModelsCertStoreLocationsCertificateStoreLocationsDetail) MarshalJSON ¶

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) SetAgentPool ¶

SetAgentPool gets a reference to the given string and assigns it to the AgentPool field.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) SetAlias ¶

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) SetClientMachine ¶

SetClientMachine gets a reference to the given string and assigns it to the ClientMachine field.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) SetIPAddress ¶

SetIPAddress gets a reference to the given string and assigns it to the IPAddress field.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) SetNetworkName ¶

SetNetworkName gets a reference to the given string and assigns it to the NetworkName field.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) SetPort ¶

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) SetStoreId ¶

SetStoreId gets a reference to the given string and assigns it to the StoreId field.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) SetStorePath ¶

SetStorePath gets a reference to the given string and assigns it to the StorePath field.

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) SetStoreTypeId ¶

SetStoreTypeId gets a reference to the given int32 and assigns it to the StoreTypeId field.

func (ModelsCertStoreLocationsCertificateStoreLocationsDetail) ToMap ¶

func (*ModelsCertStoreLocationsCertificateStoreLocationsDetail) UnmarshalJSON ¶

func (o *ModelsCertStoreLocationsCertificateStoreLocationsDetail) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertStoreNewPasswordRequest ¶

type ModelsCertStoreNewPasswordRequest struct {
	CertStoreId          string                 `json:"CertStoreId"`
	NewPassword          map[string]interface{} `json:"NewPassword"`
	AdditionalProperties map[string]interface{}
}

ModelsCertStoreNewPasswordRequest NewPassword must be provided and be of type string or KeyfactorAPISecret.

func NewModelsCertStoreNewPasswordRequest ¶

func NewModelsCertStoreNewPasswordRequest(certStoreId string, newPassword map[string]interface{}) *ModelsCertStoreNewPasswordRequest

NewModelsCertStoreNewPasswordRequest instantiates a new ModelsCertStoreNewPasswordRequest 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 NewModelsCertStoreNewPasswordRequestWithDefaults ¶

func NewModelsCertStoreNewPasswordRequestWithDefaults() *ModelsCertStoreNewPasswordRequest

NewModelsCertStoreNewPasswordRequestWithDefaults instantiates a new ModelsCertStoreNewPasswordRequest 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 (*ModelsCertStoreNewPasswordRequest) GetCertStoreId ¶

func (o *ModelsCertStoreNewPasswordRequest) GetCertStoreId() string

GetCertStoreId returns the CertStoreId field value

func (*ModelsCertStoreNewPasswordRequest) GetCertStoreIdOk ¶

func (o *ModelsCertStoreNewPasswordRequest) GetCertStoreIdOk() (*string, bool)

GetCertStoreIdOk returns a tuple with the CertStoreId field value and a boolean to check if the value has been set.

func (*ModelsCertStoreNewPasswordRequest) GetNewPassword ¶

func (o *ModelsCertStoreNewPasswordRequest) GetNewPassword() map[string]interface{}

GetNewPassword returns the NewPassword field value

func (*ModelsCertStoreNewPasswordRequest) GetNewPasswordOk ¶

func (o *ModelsCertStoreNewPasswordRequest) GetNewPasswordOk() (map[string]interface{}, bool)

GetNewPasswordOk returns a tuple with the NewPassword field value and a boolean to check if the value has been set.

func (ModelsCertStoreNewPasswordRequest) MarshalJSON ¶

func (o ModelsCertStoreNewPasswordRequest) MarshalJSON() ([]byte, error)

func (*ModelsCertStoreNewPasswordRequest) SetCertStoreId ¶

func (o *ModelsCertStoreNewPasswordRequest) SetCertStoreId(v string)

SetCertStoreId sets field value

func (*ModelsCertStoreNewPasswordRequest) SetNewPassword ¶

func (o *ModelsCertStoreNewPasswordRequest) SetNewPassword(v map[string]interface{})

SetNewPassword sets field value

func (ModelsCertStoreNewPasswordRequest) ToMap ¶

func (o ModelsCertStoreNewPasswordRequest) ToMap() (map[string]interface{}, error)

func (*ModelsCertStoreNewPasswordRequest) UnmarshalJSON ¶

func (o *ModelsCertStoreNewPasswordRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertStoreTypePasswordOptions ¶

type ModelsCertStoreTypePasswordOptions struct {
	EntrySupported       *bool   `json:"EntrySupported,omitempty"`
	StoreRequired        *bool   `json:"StoreRequired,omitempty"`
	Style                *string `json:"Style,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertStoreTypePasswordOptions struct for ModelsCertStoreTypePasswordOptions

func NewModelsCertStoreTypePasswordOptions ¶

func NewModelsCertStoreTypePasswordOptions() *ModelsCertStoreTypePasswordOptions

NewModelsCertStoreTypePasswordOptions instantiates a new ModelsCertStoreTypePasswordOptions 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 NewModelsCertStoreTypePasswordOptionsWithDefaults ¶

func NewModelsCertStoreTypePasswordOptionsWithDefaults() *ModelsCertStoreTypePasswordOptions

NewModelsCertStoreTypePasswordOptionsWithDefaults instantiates a new ModelsCertStoreTypePasswordOptions 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 (*ModelsCertStoreTypePasswordOptions) GetEntrySupported ¶

func (o *ModelsCertStoreTypePasswordOptions) GetEntrySupported() bool

GetEntrySupported returns the EntrySupported field value if set, zero value otherwise.

func (*ModelsCertStoreTypePasswordOptions) GetEntrySupportedOk ¶

func (o *ModelsCertStoreTypePasswordOptions) GetEntrySupportedOk() (*bool, bool)

GetEntrySupportedOk returns a tuple with the EntrySupported field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreTypePasswordOptions) GetStoreRequired ¶

func (o *ModelsCertStoreTypePasswordOptions) GetStoreRequired() bool

GetStoreRequired returns the StoreRequired field value if set, zero value otherwise.

func (*ModelsCertStoreTypePasswordOptions) GetStoreRequiredOk ¶

func (o *ModelsCertStoreTypePasswordOptions) GetStoreRequiredOk() (*bool, bool)

GetStoreRequiredOk returns a tuple with the StoreRequired field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreTypePasswordOptions) GetStyle ¶

GetStyle returns the Style field value if set, zero value otherwise.

func (*ModelsCertStoreTypePasswordOptions) GetStyleOk ¶

func (o *ModelsCertStoreTypePasswordOptions) GetStyleOk() (*string, bool)

GetStyleOk returns a tuple with the Style field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreTypePasswordOptions) HasEntrySupported ¶

func (o *ModelsCertStoreTypePasswordOptions) HasEntrySupported() bool

HasEntrySupported returns a boolean if a field has been set.

func (*ModelsCertStoreTypePasswordOptions) HasStoreRequired ¶

func (o *ModelsCertStoreTypePasswordOptions) HasStoreRequired() bool

HasStoreRequired returns a boolean if a field has been set.

func (*ModelsCertStoreTypePasswordOptions) HasStyle ¶

HasStyle returns a boolean if a field has been set.

func (ModelsCertStoreTypePasswordOptions) MarshalJSON ¶

func (o ModelsCertStoreTypePasswordOptions) MarshalJSON() ([]byte, error)

func (*ModelsCertStoreTypePasswordOptions) SetEntrySupported ¶

func (o *ModelsCertStoreTypePasswordOptions) SetEntrySupported(v bool)

SetEntrySupported gets a reference to the given bool and assigns it to the EntrySupported field.

func (*ModelsCertStoreTypePasswordOptions) SetStoreRequired ¶

func (o *ModelsCertStoreTypePasswordOptions) SetStoreRequired(v bool)

SetStoreRequired gets a reference to the given bool and assigns it to the StoreRequired field.

func (*ModelsCertStoreTypePasswordOptions) SetStyle ¶

SetStyle gets a reference to the given string and assigns it to the Style field.

func (ModelsCertStoreTypePasswordOptions) ToMap ¶

func (o ModelsCertStoreTypePasswordOptions) ToMap() (map[string]interface{}, error)

func (*ModelsCertStoreTypePasswordOptions) UnmarshalJSON ¶

func (o *ModelsCertStoreTypePasswordOptions) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertStoreTypeSupportedOperations ¶

type ModelsCertStoreTypeSupportedOperations struct {
	Add                  *bool `json:"Add,omitempty"`
	Create               *bool `json:"Create,omitempty"`
	Discovery            *bool `json:"Discovery,omitempty"`
	Enrollment           *bool `json:"Enrollment,omitempty"`
	Remove               *bool `json:"Remove,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertStoreTypeSupportedOperations struct for ModelsCertStoreTypeSupportedOperations

func NewModelsCertStoreTypeSupportedOperations ¶

func NewModelsCertStoreTypeSupportedOperations() *ModelsCertStoreTypeSupportedOperations

NewModelsCertStoreTypeSupportedOperations instantiates a new ModelsCertStoreTypeSupportedOperations 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 NewModelsCertStoreTypeSupportedOperationsWithDefaults ¶

func NewModelsCertStoreTypeSupportedOperationsWithDefaults() *ModelsCertStoreTypeSupportedOperations

NewModelsCertStoreTypeSupportedOperationsWithDefaults instantiates a new ModelsCertStoreTypeSupportedOperations 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 (*ModelsCertStoreTypeSupportedOperations) GetAdd ¶

GetAdd returns the Add field value if set, zero value otherwise.

func (*ModelsCertStoreTypeSupportedOperations) GetAddOk ¶

GetAddOk returns a tuple with the Add field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreTypeSupportedOperations) GetCreate ¶

GetCreate returns the Create field value if set, zero value otherwise.

func (*ModelsCertStoreTypeSupportedOperations) GetCreateOk ¶

func (o *ModelsCertStoreTypeSupportedOperations) GetCreateOk() (*bool, bool)

GetCreateOk returns a tuple with the Create field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreTypeSupportedOperations) GetDiscovery ¶

func (o *ModelsCertStoreTypeSupportedOperations) GetDiscovery() bool

GetDiscovery returns the Discovery field value if set, zero value otherwise.

func (*ModelsCertStoreTypeSupportedOperations) GetDiscoveryOk ¶

func (o *ModelsCertStoreTypeSupportedOperations) GetDiscoveryOk() (*bool, bool)

GetDiscoveryOk returns a tuple with the Discovery field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreTypeSupportedOperations) GetEnrollment ¶

func (o *ModelsCertStoreTypeSupportedOperations) GetEnrollment() bool

GetEnrollment returns the Enrollment field value if set, zero value otherwise.

func (*ModelsCertStoreTypeSupportedOperations) GetEnrollmentOk ¶

func (o *ModelsCertStoreTypeSupportedOperations) GetEnrollmentOk() (*bool, bool)

GetEnrollmentOk returns a tuple with the Enrollment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreTypeSupportedOperations) GetRemove ¶

GetRemove returns the Remove field value if set, zero value otherwise.

func (*ModelsCertStoreTypeSupportedOperations) GetRemoveOk ¶

func (o *ModelsCertStoreTypeSupportedOperations) GetRemoveOk() (*bool, bool)

GetRemoveOk returns a tuple with the Remove field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoreTypeSupportedOperations) HasAdd ¶

HasAdd returns a boolean if a field has been set.

func (*ModelsCertStoreTypeSupportedOperations) HasCreate ¶

HasCreate returns a boolean if a field has been set.

func (*ModelsCertStoreTypeSupportedOperations) HasDiscovery ¶

func (o *ModelsCertStoreTypeSupportedOperations) HasDiscovery() bool

HasDiscovery returns a boolean if a field has been set.

func (*ModelsCertStoreTypeSupportedOperations) HasEnrollment ¶

func (o *ModelsCertStoreTypeSupportedOperations) HasEnrollment() bool

HasEnrollment returns a boolean if a field has been set.

func (*ModelsCertStoreTypeSupportedOperations) HasRemove ¶

HasRemove returns a boolean if a field has been set.

func (ModelsCertStoreTypeSupportedOperations) MarshalJSON ¶

func (o ModelsCertStoreTypeSupportedOperations) MarshalJSON() ([]byte, error)

func (*ModelsCertStoreTypeSupportedOperations) SetAdd ¶

SetAdd gets a reference to the given bool and assigns it to the Add field.

func (*ModelsCertStoreTypeSupportedOperations) SetCreate ¶

SetCreate gets a reference to the given bool and assigns it to the Create field.

func (*ModelsCertStoreTypeSupportedOperations) SetDiscovery ¶

func (o *ModelsCertStoreTypeSupportedOperations) SetDiscovery(v bool)

SetDiscovery gets a reference to the given bool and assigns it to the Discovery field.

func (*ModelsCertStoreTypeSupportedOperations) SetEnrollment ¶

func (o *ModelsCertStoreTypeSupportedOperations) SetEnrollment(v bool)

SetEnrollment gets a reference to the given bool and assigns it to the Enrollment field.

func (*ModelsCertStoreTypeSupportedOperations) SetRemove ¶

SetRemove gets a reference to the given bool and assigns it to the Remove field.

func (ModelsCertStoreTypeSupportedOperations) ToMap ¶

func (o ModelsCertStoreTypeSupportedOperations) ToMap() (map[string]interface{}, error)

func (*ModelsCertStoreTypeSupportedOperations) UnmarshalJSON ¶

func (o *ModelsCertStoreTypeSupportedOperations) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertStoresSchedule ¶

type ModelsCertStoresSchedule struct {
	StoreIds             []string                                    `json:"StoreIds"`
	Schedule             *KeyfactorCommonSchedulingKeyfactorSchedule `json:"Schedule,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertStoresSchedule struct for ModelsCertStoresSchedule

func NewModelsCertStoresSchedule ¶

func NewModelsCertStoresSchedule(storeIds []string) *ModelsCertStoresSchedule

NewModelsCertStoresSchedule instantiates a new ModelsCertStoresSchedule 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 NewModelsCertStoresScheduleWithDefaults ¶

func NewModelsCertStoresScheduleWithDefaults() *ModelsCertStoresSchedule

NewModelsCertStoresScheduleWithDefaults instantiates a new ModelsCertStoresSchedule 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 (*ModelsCertStoresSchedule) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*ModelsCertStoresSchedule) GetScheduleOk ¶

GetScheduleOk returns a tuple with the Schedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertStoresSchedule) GetStoreIds ¶

func (o *ModelsCertStoresSchedule) GetStoreIds() []string

GetStoreIds returns the StoreIds field value

func (*ModelsCertStoresSchedule) GetStoreIdsOk ¶

func (o *ModelsCertStoresSchedule) GetStoreIdsOk() ([]string, bool)

GetStoreIdsOk returns a tuple with the StoreIds field value and a boolean to check if the value has been set.

func (*ModelsCertStoresSchedule) HasSchedule ¶

func (o *ModelsCertStoresSchedule) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (ModelsCertStoresSchedule) MarshalJSON ¶

func (o ModelsCertStoresSchedule) MarshalJSON() ([]byte, error)

func (*ModelsCertStoresSchedule) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (*ModelsCertStoresSchedule) SetStoreIds ¶

func (o *ModelsCertStoresSchedule) SetStoreIds(v []string)

SetStoreIds sets field value

func (ModelsCertStoresSchedule) ToMap ¶

func (o ModelsCertStoresSchedule) ToMap() (map[string]interface{}, error)

func (*ModelsCertStoresSchedule) UnmarshalJSON ¶

func (o *ModelsCertStoresSchedule) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate ¶

type ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate struct {
	IssuedDN             NullableString `json:"IssuedDN,omitempty"`
	IssuerDN             NullableString `json:"IssuerDN,omitempty"`
	Thumbprint           *string        `json:"Thumbprint,omitempty"`
	ExpirationDate       *time.Time     `json:"ExpirationDate,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate struct for ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate

func NewModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate ¶

func NewModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate() *ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate

NewModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate instantiates a new ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate 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 NewModelsCertificateAuthoritiesCertificateAuthorityAuthCertificateWithDefaults ¶

func NewModelsCertificateAuthoritiesCertificateAuthorityAuthCertificateWithDefaults() *ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate

NewModelsCertificateAuthoritiesCertificateAuthorityAuthCertificateWithDefaults instantiates a new ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate 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 (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) GetExpirationDate ¶

GetExpirationDate returns the ExpirationDate field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) GetExpirationDateOk ¶

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 (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) GetIssuedDN ¶

GetIssuedDN returns the IssuedDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) GetIssuedDNOk ¶

GetIssuedDNOk returns a tuple with the IssuedDN field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) GetIssuerDN ¶

GetIssuerDN returns the IssuerDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) GetIssuerDNOk ¶

GetIssuerDNOk returns a tuple with the IssuerDN field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) GetThumbprint ¶

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) GetThumbprintOk ¶

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) HasExpirationDate ¶

HasExpirationDate returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) HasIssuedDN ¶

HasIssuedDN returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) HasIssuerDN ¶

HasIssuerDN returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) HasThumbprint ¶

HasThumbprint returns a boolean if a field has been set.

func (ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) MarshalJSON ¶

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) SetExpirationDate ¶

SetExpirationDate gets a reference to the given time.Time and assigns it to the ExpirationDate field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) SetIssuedDN ¶

SetIssuedDN gets a reference to the given NullableString and assigns it to the IssuedDN field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) SetIssuedDNNil ¶

SetIssuedDNNil sets the value for IssuedDN to be an explicit nil

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) SetIssuerDN ¶

SetIssuerDN gets a reference to the given NullableString and assigns it to the IssuerDN field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) SetIssuerDNNil ¶

SetIssuerDNNil sets the value for IssuerDN to be an explicit nil

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) SetThumbprint ¶

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) ToMap ¶

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) UnmarshalJSON ¶

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) UnsetIssuedDN ¶

UnsetIssuedDN ensures that no value is present for IssuedDN, not even an explicit nil

func (*ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) UnsetIssuerDN ¶

UnsetIssuerDN ensures that no value is present for IssuerDN, not even an explicit nil

type ModelsCertificateAuthoritiesCertificateAuthorityRequest ¶

type ModelsCertificateAuthoritiesCertificateAuthorityRequest struct {
	Id                      *int32                                      `json:"Id,omitempty"`
	LogicalName             *string                                     `json:"LogicalName,omitempty"`
	HostName                *string                                     `json:"HostName,omitempty"`
	Delegate                *bool                                       `json:"Delegate,omitempty"`
	DelegateEnrollment      *bool                                       `json:"DelegateEnrollment,omitempty"`
	ForestRoot              *string                                     `json:"ForestRoot,omitempty"`
	ConfigurationTenant     *string                                     `json:"ConfigurationTenant,omitempty"`
	Remote                  *bool                                       `json:"Remote,omitempty"`
	Agent                   *string                                     `json:"Agent,omitempty"`
	Standalone              *bool                                       `json:"Standalone,omitempty"`
	MonitorThresholds       *bool                                       `json:"MonitorThresholds,omitempty"`
	IssuanceMax             *int32                                      `json:"IssuanceMax,omitempty"`
	IssuanceMin             *int32                                      `json:"IssuanceMin,omitempty"`
	FailureMax              *int32                                      `json:"FailureMax,omitempty"`
	RFCEnforcement          *bool                                       `json:"RFCEnforcement,omitempty"`
	Properties              *string                                     `json:"Properties,omitempty"`
	AllowedEnrollmentTypes  *int32                                      `json:"AllowedEnrollmentTypes,omitempty"`
	KeyRetention            *int32                                      `json:"KeyRetention,omitempty"`
	KeyRetentionDays        *int32                                      `json:"KeyRetentionDays,omitempty"`
	ExplicitCredentials     *bool                                       `json:"ExplicitCredentials,omitempty"`
	SubscriberTerms         *bool                                       `json:"SubscriberTerms,omitempty"`
	ExplicitUser            *string                                     `json:"ExplicitUser,omitempty"`
	ExplicitPassword        *ModelsKeyfactorAPISecret                   `json:"ExplicitPassword,omitempty"`
	UseAllowedRequesters    *bool                                       `json:"UseAllowedRequesters,omitempty"`
	AllowedRequesters       []string                                    `json:"AllowedRequesters,omitempty"`
	FullScan                *KeyfactorCommonSchedulingKeyfactorSchedule `json:"FullScan,omitempty"`
	IncrementalScan         *KeyfactorCommonSchedulingKeyfactorSchedule `json:"IncrementalScan,omitempty"`
	ThresholdCheck          *KeyfactorCommonSchedulingKeyfactorSchedule `json:"ThresholdCheck,omitempty"`
	AuthCertificatePassword *ModelsKeyfactorAPISecret                   `json:"AuthCertificatePassword,omitempty"`
	AuthCertificate         *ModelsKeyfactorAPISecret                   `json:"AuthCertificate,omitempty"`
	CAType                  *int32                                      `json:"CAType,omitempty"`
	EnforceUniqueDN         *bool                                       `json:"EnforceUniqueDN,omitempty"`
	AdditionalProperties    map[string]interface{}
}

ModelsCertificateAuthoritiesCertificateAuthorityRequest struct for ModelsCertificateAuthoritiesCertificateAuthorityRequest

func NewModelsCertificateAuthoritiesCertificateAuthorityRequest ¶

func NewModelsCertificateAuthoritiesCertificateAuthorityRequest() *ModelsCertificateAuthoritiesCertificateAuthorityRequest

NewModelsCertificateAuthoritiesCertificateAuthorityRequest instantiates a new ModelsCertificateAuthoritiesCertificateAuthorityRequest 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 NewModelsCertificateAuthoritiesCertificateAuthorityRequestWithDefaults ¶

func NewModelsCertificateAuthoritiesCertificateAuthorityRequestWithDefaults() *ModelsCertificateAuthoritiesCertificateAuthorityRequest

NewModelsCertificateAuthoritiesCertificateAuthorityRequestWithDefaults instantiates a new ModelsCertificateAuthoritiesCertificateAuthorityRequest 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 (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAgent ¶

GetAgent returns the Agent field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAgentOk ¶

GetAgentOk returns a tuple with the Agent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAllowedEnrollmentTypes ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAllowedEnrollmentTypes() int32

GetAllowedEnrollmentTypes returns the AllowedEnrollmentTypes field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAllowedEnrollmentTypesOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAllowedEnrollmentTypesOk() (*int32, bool)

GetAllowedEnrollmentTypesOk returns a tuple with the AllowedEnrollmentTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAllowedRequesters ¶

GetAllowedRequesters returns the AllowedRequesters field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAllowedRequestersOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAllowedRequestersOk() ([]string, bool)

GetAllowedRequestersOk returns a tuple with the AllowedRequesters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAuthCertificate ¶

GetAuthCertificate returns the AuthCertificate field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAuthCertificateOk ¶

GetAuthCertificateOk returns a tuple with the AuthCertificate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAuthCertificatePassword ¶

GetAuthCertificatePassword returns the AuthCertificatePassword field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetAuthCertificatePasswordOk ¶

GetAuthCertificatePasswordOk returns a tuple with the AuthCertificatePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetCAType ¶

GetCAType returns the CAType field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetCATypeOk ¶

GetCATypeOk returns a tuple with the CAType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetConfigurationTenant ¶

GetConfigurationTenant returns the ConfigurationTenant field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetConfigurationTenantOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetConfigurationTenantOk() (*string, bool)

GetConfigurationTenantOk returns a tuple with the ConfigurationTenant field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetDelegate ¶

GetDelegate returns the Delegate field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetDelegateEnrollment ¶

GetDelegateEnrollment returns the DelegateEnrollment field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetDelegateEnrollmentOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetDelegateEnrollmentOk() (*bool, bool)

GetDelegateEnrollmentOk returns a tuple with the DelegateEnrollment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetDelegateOk ¶

GetDelegateOk returns a tuple with the Delegate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetEnforceUniqueDN ¶

GetEnforceUniqueDN returns the EnforceUniqueDN field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetEnforceUniqueDNOk ¶

GetEnforceUniqueDNOk returns a tuple with the EnforceUniqueDN field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetExplicitCredentials ¶

GetExplicitCredentials returns the ExplicitCredentials field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetExplicitCredentialsOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetExplicitCredentialsOk() (*bool, bool)

GetExplicitCredentialsOk returns a tuple with the ExplicitCredentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetExplicitPassword ¶

GetExplicitPassword returns the ExplicitPassword field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetExplicitPasswordOk ¶

GetExplicitPasswordOk returns a tuple with the ExplicitPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetExplicitUser ¶

GetExplicitUser returns the ExplicitUser field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetExplicitUserOk ¶

GetExplicitUserOk returns a tuple with the ExplicitUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetFailureMax ¶

GetFailureMax returns the FailureMax field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetFailureMaxOk ¶

GetFailureMaxOk returns a tuple with the FailureMax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetForestRoot ¶

GetForestRoot returns the ForestRoot field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetForestRootOk ¶

GetForestRootOk returns a tuple with the ForestRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetFullScan ¶

GetFullScan returns the FullScan field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetFullScanOk ¶

GetFullScanOk returns a tuple with the FullScan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetHostName ¶

GetHostName returns the HostName field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetHostNameOk ¶

GetHostNameOk returns a tuple with the HostName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetIdOk ¶

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 (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetIncrementalScan ¶

GetIncrementalScan returns the IncrementalScan field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetIncrementalScanOk ¶

GetIncrementalScanOk returns a tuple with the IncrementalScan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetIssuanceMax ¶

GetIssuanceMax returns the IssuanceMax field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetIssuanceMaxOk ¶

GetIssuanceMaxOk returns a tuple with the IssuanceMax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetIssuanceMin ¶

GetIssuanceMin returns the IssuanceMin field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetIssuanceMinOk ¶

GetIssuanceMinOk returns a tuple with the IssuanceMin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetKeyRetention ¶

GetKeyRetention returns the KeyRetention field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetKeyRetentionDays ¶

GetKeyRetentionDays returns the KeyRetentionDays field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetKeyRetentionDaysOk ¶

GetKeyRetentionDaysOk returns a tuple with the KeyRetentionDays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetKeyRetentionOk ¶

GetKeyRetentionOk returns a tuple with the KeyRetention field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetLogicalName ¶

GetLogicalName returns the LogicalName field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetLogicalNameOk ¶

GetLogicalNameOk returns a tuple with the LogicalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetMonitorThresholds ¶

GetMonitorThresholds returns the MonitorThresholds field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetMonitorThresholdsOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetMonitorThresholdsOk() (*bool, bool)

GetMonitorThresholdsOk returns a tuple with the MonitorThresholds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetProperties ¶

GetProperties returns the Properties field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetPropertiesOk ¶

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetRFCEnforcement ¶

GetRFCEnforcement returns the RFCEnforcement field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetRFCEnforcementOk ¶

GetRFCEnforcementOk returns a tuple with the RFCEnforcement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetRemote ¶

GetRemote returns the Remote field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetRemoteOk ¶

GetRemoteOk returns a tuple with the Remote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetStandalone ¶

GetStandalone returns the Standalone field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetStandaloneOk ¶

GetStandaloneOk returns a tuple with the Standalone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetSubscriberTerms ¶

GetSubscriberTerms returns the SubscriberTerms field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetSubscriberTermsOk ¶

GetSubscriberTermsOk returns a tuple with the SubscriberTerms field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetThresholdCheck ¶

GetThresholdCheck returns the ThresholdCheck field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetThresholdCheckOk ¶

GetThresholdCheckOk returns a tuple with the ThresholdCheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetUseAllowedRequesters ¶

GetUseAllowedRequesters returns the UseAllowedRequesters field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetUseAllowedRequestersOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) GetUseAllowedRequestersOk() (*bool, bool)

GetUseAllowedRequestersOk returns a tuple with the UseAllowedRequesters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasAgent ¶

HasAgent returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasAllowedEnrollmentTypes ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasAllowedEnrollmentTypes() bool

HasAllowedEnrollmentTypes returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasAllowedRequesters ¶

HasAllowedRequesters returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasAuthCertificate ¶

HasAuthCertificate returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasAuthCertificatePassword ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasAuthCertificatePassword() bool

HasAuthCertificatePassword returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasCAType ¶

HasCAType returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasConfigurationTenant ¶

HasConfigurationTenant returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasDelegate ¶

HasDelegate returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasDelegateEnrollment ¶

HasDelegateEnrollment returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasEnforceUniqueDN ¶

HasEnforceUniqueDN returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasExplicitCredentials ¶

HasExplicitCredentials returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasExplicitPassword ¶

HasExplicitPassword returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasExplicitUser ¶

HasExplicitUser returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasFailureMax ¶

HasFailureMax returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasForestRoot ¶

HasForestRoot returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasFullScan ¶

HasFullScan returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasHostName ¶

HasHostName returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasIncrementalScan ¶

HasIncrementalScan returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasIssuanceMax ¶

HasIssuanceMax returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasIssuanceMin ¶

HasIssuanceMin returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasKeyRetention ¶

HasKeyRetention returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasKeyRetentionDays ¶

HasKeyRetentionDays returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasLogicalName ¶

HasLogicalName returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasMonitorThresholds ¶

HasMonitorThresholds returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasProperties ¶

HasProperties returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasRFCEnforcement ¶

HasRFCEnforcement returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasRemote ¶

HasRemote returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasStandalone ¶

HasStandalone returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasSubscriberTerms ¶

HasSubscriberTerms returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasThresholdCheck ¶

HasThresholdCheck returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) HasUseAllowedRequesters ¶

HasUseAllowedRequesters returns a boolean if a field has been set.

func (ModelsCertificateAuthoritiesCertificateAuthorityRequest) MarshalJSON ¶

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetAgent ¶

SetAgent gets a reference to the given string and assigns it to the Agent field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetAllowedEnrollmentTypes ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetAllowedEnrollmentTypes(v int32)

SetAllowedEnrollmentTypes gets a reference to the given int32 and assigns it to the AllowedEnrollmentTypes field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetAllowedRequesters ¶

SetAllowedRequesters gets a reference to the given []string and assigns it to the AllowedRequesters field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetAuthCertificate ¶

SetAuthCertificate gets a reference to the given ModelsKeyfactorAPISecret and assigns it to the AuthCertificate field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetAuthCertificatePassword ¶

SetAuthCertificatePassword gets a reference to the given ModelsKeyfactorAPISecret and assigns it to the AuthCertificatePassword field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetCAType ¶

SetCAType gets a reference to the given int32 and assigns it to the CAType field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetConfigurationTenant ¶

SetConfigurationTenant gets a reference to the given string and assigns it to the ConfigurationTenant field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetDelegate ¶

SetDelegate gets a reference to the given bool and assigns it to the Delegate field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetDelegateEnrollment ¶

SetDelegateEnrollment gets a reference to the given bool and assigns it to the DelegateEnrollment field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetEnforceUniqueDN ¶

SetEnforceUniqueDN gets a reference to the given bool and assigns it to the EnforceUniqueDN field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetExplicitCredentials ¶

SetExplicitCredentials gets a reference to the given bool and assigns it to the ExplicitCredentials field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetExplicitPassword ¶

SetExplicitPassword gets a reference to the given ModelsKeyfactorAPISecret and assigns it to the ExplicitPassword field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetExplicitUser ¶

SetExplicitUser gets a reference to the given string and assigns it to the ExplicitUser field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetFailureMax ¶

SetFailureMax gets a reference to the given int32 and assigns it to the FailureMax field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetForestRoot ¶

SetForestRoot gets a reference to the given string and assigns it to the ForestRoot field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetFullScan ¶

SetFullScan gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the FullScan field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetHostName ¶

SetHostName gets a reference to the given string and assigns it to the HostName field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetIncrementalScan ¶

SetIncrementalScan gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the IncrementalScan field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetIssuanceMax ¶

SetIssuanceMax gets a reference to the given int32 and assigns it to the IssuanceMax field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetIssuanceMin ¶

SetIssuanceMin gets a reference to the given int32 and assigns it to the IssuanceMin field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetKeyRetention ¶

SetKeyRetention gets a reference to the given int32 and assigns it to the KeyRetention field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetKeyRetentionDays ¶

SetKeyRetentionDays gets a reference to the given int32 and assigns it to the KeyRetentionDays field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetLogicalName ¶

SetLogicalName gets a reference to the given string and assigns it to the LogicalName field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetMonitorThresholds ¶

SetMonitorThresholds gets a reference to the given bool and assigns it to the MonitorThresholds field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetProperties ¶

SetProperties gets a reference to the given string and assigns it to the Properties field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetRFCEnforcement ¶

SetRFCEnforcement gets a reference to the given bool and assigns it to the RFCEnforcement field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetRemote ¶

SetRemote gets a reference to the given bool and assigns it to the Remote field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetStandalone ¶

SetStandalone gets a reference to the given bool and assigns it to the Standalone field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetSubscriberTerms ¶

SetSubscriberTerms gets a reference to the given bool and assigns it to the SubscriberTerms field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetThresholdCheck ¶

SetThresholdCheck gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the ThresholdCheck field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetUseAllowedRequesters ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) SetUseAllowedRequesters(v bool)

SetUseAllowedRequesters gets a reference to the given bool and assigns it to the UseAllowedRequesters field.

func (ModelsCertificateAuthoritiesCertificateAuthorityRequest) ToMap ¶

func (*ModelsCertificateAuthoritiesCertificateAuthorityRequest) UnmarshalJSON ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateAuthoritiesCertificateAuthorityResponse ¶

type ModelsCertificateAuthoritiesCertificateAuthorityResponse struct {
	Id                     *int32                                                           `json:"Id,omitempty"`
	LogicalName            *string                                                          `json:"LogicalName,omitempty"`
	HostName               *string                                                          `json:"HostName,omitempty"`
	Delegate               *bool                                                            `json:"Delegate,omitempty"`
	DelegateEnrollment     *bool                                                            `json:"DelegateEnrollment,omitempty"`
	ForestRoot             *string                                                          `json:"ForestRoot,omitempty"`
	ConfigurationTenant    *string                                                          `json:"ConfigurationTenant,omitempty"`
	Remote                 *bool                                                            `json:"Remote,omitempty"`
	Agent                  *string                                                          `json:"Agent,omitempty"`
	Standalone             *bool                                                            `json:"Standalone,omitempty"`
	MonitorThresholds      *bool                                                            `json:"MonitorThresholds,omitempty"`
	IssuanceMax            *int32                                                           `json:"IssuanceMax,omitempty"`
	IssuanceMin            *int32                                                           `json:"IssuanceMin,omitempty"`
	DenialMax              *int32                                                           `json:"DenialMax,omitempty"`
	FailureMax             *int32                                                           `json:"FailureMax,omitempty"`
	RFCEnforcement         *bool                                                            `json:"RFCEnforcement,omitempty"`
	Properties             *string                                                          `json:"Properties,omitempty"`
	AllowedEnrollmentTypes *int32                                                           `json:"AllowedEnrollmentTypes,omitempty"`
	KeyRetention           *int32                                                           `json:"KeyRetention,omitempty"`
	KeyRetentionDays       *int32                                                           `json:"KeyRetentionDays,omitempty"`
	ExplicitCredentials    *bool                                                            `json:"ExplicitCredentials,omitempty"`
	SubscriberTerms        *bool                                                            `json:"SubscriberTerms,omitempty"`
	ExplicitUser           *string                                                          `json:"ExplicitUser,omitempty"`
	ExplicitPassword       *ModelsKeyfactorAPISecret                                        `json:"ExplicitPassword,omitempty"`
	UseAllowedRequesters   *bool                                                            `json:"UseAllowedRequesters,omitempty"`
	AllowedRequesters      []string                                                         `json:"AllowedRequesters,omitempty"`
	FullScan               *KeyfactorCommonSchedulingKeyfactorSchedule                      `json:"FullScan,omitempty"`
	IncrementalScan        *KeyfactorCommonSchedulingKeyfactorSchedule                      `json:"IncrementalScan,omitempty"`
	ThresholdCheck         *KeyfactorCommonSchedulingKeyfactorSchedule                      `json:"ThresholdCheck,omitempty"`
	CAType                 *int32                                                           `json:"CAType,omitempty"`
	AuthCertificate        *ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate `json:"AuthCertificate,omitempty"`
	EnforceUniqueDN        *bool                                                            `json:"EnforceUniqueDN,omitempty"`
	LastScan               *string                                                          `json:"LastScan,omitempty"`
	AdditionalProperties   map[string]interface{}
}

ModelsCertificateAuthoritiesCertificateAuthorityResponse struct for ModelsCertificateAuthoritiesCertificateAuthorityResponse

func NewModelsCertificateAuthoritiesCertificateAuthorityResponse ¶

func NewModelsCertificateAuthoritiesCertificateAuthorityResponse() *ModelsCertificateAuthoritiesCertificateAuthorityResponse

NewModelsCertificateAuthoritiesCertificateAuthorityResponse instantiates a new ModelsCertificateAuthoritiesCertificateAuthorityResponse 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 NewModelsCertificateAuthoritiesCertificateAuthorityResponseWithDefaults ¶

func NewModelsCertificateAuthoritiesCertificateAuthorityResponseWithDefaults() *ModelsCertificateAuthoritiesCertificateAuthorityResponse

NewModelsCertificateAuthoritiesCertificateAuthorityResponseWithDefaults instantiates a new ModelsCertificateAuthoritiesCertificateAuthorityResponse 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 (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetAgent ¶

GetAgent returns the Agent field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetAgentOk ¶

GetAgentOk returns a tuple with the Agent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetAllowedEnrollmentTypes ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetAllowedEnrollmentTypes() int32

GetAllowedEnrollmentTypes returns the AllowedEnrollmentTypes field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetAllowedEnrollmentTypesOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetAllowedEnrollmentTypesOk() (*int32, bool)

GetAllowedEnrollmentTypesOk returns a tuple with the AllowedEnrollmentTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetAllowedRequesters ¶

GetAllowedRequesters returns the AllowedRequesters field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetAllowedRequestersOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetAllowedRequestersOk() ([]string, bool)

GetAllowedRequestersOk returns a tuple with the AllowedRequesters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetAuthCertificate ¶

GetAuthCertificate returns the AuthCertificate field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetAuthCertificateOk ¶

GetAuthCertificateOk returns a tuple with the AuthCertificate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetCAType ¶

GetCAType returns the CAType field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetCATypeOk ¶

GetCATypeOk returns a tuple with the CAType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetConfigurationTenant ¶

GetConfigurationTenant returns the ConfigurationTenant field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetConfigurationTenantOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetConfigurationTenantOk() (*string, bool)

GetConfigurationTenantOk returns a tuple with the ConfigurationTenant field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetDelegate ¶

GetDelegate returns the Delegate field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetDelegateEnrollment ¶

GetDelegateEnrollment returns the DelegateEnrollment field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetDelegateEnrollmentOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetDelegateEnrollmentOk() (*bool, bool)

GetDelegateEnrollmentOk returns a tuple with the DelegateEnrollment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetDelegateOk ¶

GetDelegateOk returns a tuple with the Delegate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetDenialMax ¶

GetDenialMax returns the DenialMax field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetDenialMaxOk ¶

GetDenialMaxOk returns a tuple with the DenialMax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetEnforceUniqueDN ¶

GetEnforceUniqueDN returns the EnforceUniqueDN field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetEnforceUniqueDNOk ¶

GetEnforceUniqueDNOk returns a tuple with the EnforceUniqueDN field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetExplicitCredentials ¶

GetExplicitCredentials returns the ExplicitCredentials field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetExplicitCredentialsOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetExplicitCredentialsOk() (*bool, bool)

GetExplicitCredentialsOk returns a tuple with the ExplicitCredentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetExplicitPassword ¶

GetExplicitPassword returns the ExplicitPassword field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetExplicitPasswordOk ¶

GetExplicitPasswordOk returns a tuple with the ExplicitPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetExplicitUser ¶

GetExplicitUser returns the ExplicitUser field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetExplicitUserOk ¶

GetExplicitUserOk returns a tuple with the ExplicitUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetFailureMax ¶

GetFailureMax returns the FailureMax field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetFailureMaxOk ¶

GetFailureMaxOk returns a tuple with the FailureMax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetForestRoot ¶

GetForestRoot returns the ForestRoot field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetForestRootOk ¶

GetForestRootOk returns a tuple with the ForestRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetFullScan ¶

GetFullScan returns the FullScan field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetFullScanOk ¶

GetFullScanOk returns a tuple with the FullScan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetHostName ¶

GetHostName returns the HostName field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetHostNameOk ¶

GetHostNameOk returns a tuple with the HostName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetIdOk ¶

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 (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetIncrementalScan ¶

GetIncrementalScan returns the IncrementalScan field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetIncrementalScanOk ¶

GetIncrementalScanOk returns a tuple with the IncrementalScan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetIssuanceMax ¶

GetIssuanceMax returns the IssuanceMax field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetIssuanceMaxOk ¶

GetIssuanceMaxOk returns a tuple with the IssuanceMax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetIssuanceMin ¶

GetIssuanceMin returns the IssuanceMin field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetIssuanceMinOk ¶

GetIssuanceMinOk returns a tuple with the IssuanceMin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetKeyRetention ¶

GetKeyRetention returns the KeyRetention field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetKeyRetentionDays ¶

GetKeyRetentionDays returns the KeyRetentionDays field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetKeyRetentionDaysOk ¶

GetKeyRetentionDaysOk returns a tuple with the KeyRetentionDays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetKeyRetentionOk ¶

GetKeyRetentionOk returns a tuple with the KeyRetention field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetLastScan ¶

GetLastScan returns the LastScan field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetLastScanOk ¶

GetLastScanOk returns a tuple with the LastScan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetLogicalName ¶

GetLogicalName returns the LogicalName field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetLogicalNameOk ¶

GetLogicalNameOk returns a tuple with the LogicalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetMonitorThresholds ¶

GetMonitorThresholds returns the MonitorThresholds field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetMonitorThresholdsOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetMonitorThresholdsOk() (*bool, bool)

GetMonitorThresholdsOk returns a tuple with the MonitorThresholds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetProperties ¶

GetProperties returns the Properties field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetPropertiesOk ¶

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetRFCEnforcement ¶

GetRFCEnforcement returns the RFCEnforcement field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetRFCEnforcementOk ¶

GetRFCEnforcementOk returns a tuple with the RFCEnforcement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetRemote ¶

GetRemote returns the Remote field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetRemoteOk ¶

GetRemoteOk returns a tuple with the Remote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetStandalone ¶

GetStandalone returns the Standalone field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetStandaloneOk ¶

GetStandaloneOk returns a tuple with the Standalone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetSubscriberTerms ¶

GetSubscriberTerms returns the SubscriberTerms field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetSubscriberTermsOk ¶

GetSubscriberTermsOk returns a tuple with the SubscriberTerms field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetThresholdCheck ¶

GetThresholdCheck returns the ThresholdCheck field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetThresholdCheckOk ¶

GetThresholdCheckOk returns a tuple with the ThresholdCheck field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetUseAllowedRequesters ¶

GetUseAllowedRequesters returns the UseAllowedRequesters field value if set, zero value otherwise.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetUseAllowedRequestersOk ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityResponse) GetUseAllowedRequestersOk() (*bool, bool)

GetUseAllowedRequestersOk returns a tuple with the UseAllowedRequesters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasAgent ¶

HasAgent returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasAllowedEnrollmentTypes ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasAllowedEnrollmentTypes() bool

HasAllowedEnrollmentTypes returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasAllowedRequesters ¶

HasAllowedRequesters returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasAuthCertificate ¶

HasAuthCertificate returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasCAType ¶

HasCAType returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasConfigurationTenant ¶

HasConfigurationTenant returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasDelegate ¶

HasDelegate returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasDelegateEnrollment ¶

HasDelegateEnrollment returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasDenialMax ¶

HasDenialMax returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasEnforceUniqueDN ¶

HasEnforceUniqueDN returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasExplicitCredentials ¶

HasExplicitCredentials returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasExplicitPassword ¶

HasExplicitPassword returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasExplicitUser ¶

HasExplicitUser returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasFailureMax ¶

HasFailureMax returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasForestRoot ¶

HasForestRoot returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasFullScan ¶

HasFullScan returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasHostName ¶

HasHostName returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasIncrementalScan ¶

HasIncrementalScan returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasIssuanceMax ¶

HasIssuanceMax returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasIssuanceMin ¶

HasIssuanceMin returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasKeyRetention ¶

HasKeyRetention returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasKeyRetentionDays ¶

HasKeyRetentionDays returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasLastScan ¶

HasLastScan returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasLogicalName ¶

HasLogicalName returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasMonitorThresholds ¶

HasMonitorThresholds returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasProperties ¶

HasProperties returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasRFCEnforcement ¶

HasRFCEnforcement returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasRemote ¶

HasRemote returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasStandalone ¶

HasStandalone returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasSubscriberTerms ¶

HasSubscriberTerms returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasThresholdCheck ¶

HasThresholdCheck returns a boolean if a field has been set.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) HasUseAllowedRequesters ¶

HasUseAllowedRequesters returns a boolean if a field has been set.

func (ModelsCertificateAuthoritiesCertificateAuthorityResponse) MarshalJSON ¶

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetAgent ¶

SetAgent gets a reference to the given string and assigns it to the Agent field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetAllowedEnrollmentTypes ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetAllowedEnrollmentTypes(v int32)

SetAllowedEnrollmentTypes gets a reference to the given int32 and assigns it to the AllowedEnrollmentTypes field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetAllowedRequesters ¶

SetAllowedRequesters gets a reference to the given []string and assigns it to the AllowedRequesters field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetAuthCertificate ¶

SetAuthCertificate gets a reference to the given ModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate and assigns it to the AuthCertificate field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetCAType ¶

SetCAType gets a reference to the given int32 and assigns it to the CAType field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetConfigurationTenant ¶

SetConfigurationTenant gets a reference to the given string and assigns it to the ConfigurationTenant field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetDelegate ¶

SetDelegate gets a reference to the given bool and assigns it to the Delegate field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetDelegateEnrollment ¶

SetDelegateEnrollment gets a reference to the given bool and assigns it to the DelegateEnrollment field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetDenialMax ¶

SetDenialMax gets a reference to the given int32 and assigns it to the DenialMax field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetEnforceUniqueDN ¶

SetEnforceUniqueDN gets a reference to the given bool and assigns it to the EnforceUniqueDN field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetExplicitCredentials ¶

SetExplicitCredentials gets a reference to the given bool and assigns it to the ExplicitCredentials field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetExplicitPassword ¶

SetExplicitPassword gets a reference to the given ModelsKeyfactorAPISecret and assigns it to the ExplicitPassword field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetExplicitUser ¶

SetExplicitUser gets a reference to the given string and assigns it to the ExplicitUser field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetFailureMax ¶

SetFailureMax gets a reference to the given int32 and assigns it to the FailureMax field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetForestRoot ¶

SetForestRoot gets a reference to the given string and assigns it to the ForestRoot field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetFullScan ¶

SetFullScan gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the FullScan field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetHostName ¶

SetHostName gets a reference to the given string and assigns it to the HostName field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetIncrementalScan ¶

SetIncrementalScan gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the IncrementalScan field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetIssuanceMax ¶

SetIssuanceMax gets a reference to the given int32 and assigns it to the IssuanceMax field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetIssuanceMin ¶

SetIssuanceMin gets a reference to the given int32 and assigns it to the IssuanceMin field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetKeyRetention ¶

SetKeyRetention gets a reference to the given int32 and assigns it to the KeyRetention field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetKeyRetentionDays ¶

SetKeyRetentionDays gets a reference to the given int32 and assigns it to the KeyRetentionDays field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetLastScan ¶

SetLastScan gets a reference to the given string and assigns it to the LastScan field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetLogicalName ¶

SetLogicalName gets a reference to the given string and assigns it to the LogicalName field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetMonitorThresholds ¶

SetMonitorThresholds gets a reference to the given bool and assigns it to the MonitorThresholds field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetProperties ¶

SetProperties gets a reference to the given string and assigns it to the Properties field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetRFCEnforcement ¶

SetRFCEnforcement gets a reference to the given bool and assigns it to the RFCEnforcement field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetRemote ¶

SetRemote gets a reference to the given bool and assigns it to the Remote field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetStandalone ¶

SetStandalone gets a reference to the given bool and assigns it to the Standalone field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetSubscriberTerms ¶

SetSubscriberTerms gets a reference to the given bool and assigns it to the SubscriberTerms field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetThresholdCheck ¶

SetThresholdCheck gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the ThresholdCheck field.

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetUseAllowedRequesters ¶

func (o *ModelsCertificateAuthoritiesCertificateAuthorityResponse) SetUseAllowedRequesters(v bool)

SetUseAllowedRequesters gets a reference to the given bool and assigns it to the UseAllowedRequesters field.

func (ModelsCertificateAuthoritiesCertificateAuthorityResponse) ToMap ¶

func (*ModelsCertificateAuthoritiesCertificateAuthorityResponse) UnmarshalJSON ¶

type ModelsCertificateDetails ¶

type ModelsCertificateDetails struct {
	IssuedDN             NullableString     `json:"IssuedDN,omitempty"`
	IssuerDN             NullableString     `json:"IssuerDN,omitempty"`
	Thumbprint           *string            `json:"Thumbprint,omitempty"`
	NotAfter             *time.Time         `json:"NotAfter,omitempty"`
	NotBefore            *time.Time         `json:"NotBefore,omitempty"`
	Metadata             *map[string]string `json:"Metadata,omitempty"`
	IsEndEntity          *bool              `json:"IsEndEntity,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateDetails struct for ModelsCertificateDetails

func NewModelsCertificateDetails ¶

func NewModelsCertificateDetails() *ModelsCertificateDetails

NewModelsCertificateDetails instantiates a new ModelsCertificateDetails 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 NewModelsCertificateDetailsWithDefaults ¶

func NewModelsCertificateDetailsWithDefaults() *ModelsCertificateDetails

NewModelsCertificateDetailsWithDefaults instantiates a new ModelsCertificateDetails 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 (*ModelsCertificateDetails) GetIsEndEntity ¶

func (o *ModelsCertificateDetails) GetIsEndEntity() bool

GetIsEndEntity returns the IsEndEntity field value if set, zero value otherwise.

func (*ModelsCertificateDetails) GetIsEndEntityOk ¶

func (o *ModelsCertificateDetails) GetIsEndEntityOk() (*bool, bool)

GetIsEndEntityOk returns a tuple with the IsEndEntity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateDetails) GetIssuedDN ¶

func (o *ModelsCertificateDetails) GetIssuedDN() string

GetIssuedDN returns the IssuedDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateDetails) GetIssuedDNOk ¶

func (o *ModelsCertificateDetails) GetIssuedDNOk() (*string, bool)

GetIssuedDNOk returns a tuple with the IssuedDN field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateDetails) GetIssuerDN ¶

func (o *ModelsCertificateDetails) GetIssuerDN() string

GetIssuerDN returns the IssuerDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateDetails) GetIssuerDNOk ¶

func (o *ModelsCertificateDetails) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateDetails) GetMetadata ¶

func (o *ModelsCertificateDetails) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ModelsCertificateDetails) GetMetadataOk ¶

func (o *ModelsCertificateDetails) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateDetails) GetNotAfter ¶

func (o *ModelsCertificateDetails) GetNotAfter() time.Time

GetNotAfter returns the NotAfter field value if set, zero value otherwise.

func (*ModelsCertificateDetails) GetNotAfterOk ¶

func (o *ModelsCertificateDetails) GetNotAfterOk() (*time.Time, bool)

GetNotAfterOk returns a tuple with the NotAfter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateDetails) GetNotBefore ¶

func (o *ModelsCertificateDetails) GetNotBefore() time.Time

GetNotBefore returns the NotBefore field value if set, zero value otherwise.

func (*ModelsCertificateDetails) GetNotBeforeOk ¶

func (o *ModelsCertificateDetails) GetNotBeforeOk() (*time.Time, 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 (*ModelsCertificateDetails) GetThumbprint ¶

func (o *ModelsCertificateDetails) GetThumbprint() string

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsCertificateDetails) GetThumbprintOk ¶

func (o *ModelsCertificateDetails) GetThumbprintOk() (*string, bool)

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateDetails) HasIsEndEntity ¶

func (o *ModelsCertificateDetails) HasIsEndEntity() bool

HasIsEndEntity returns a boolean if a field has been set.

func (*ModelsCertificateDetails) HasIssuedDN ¶

func (o *ModelsCertificateDetails) HasIssuedDN() bool

HasIssuedDN returns a boolean if a field has been set.

func (*ModelsCertificateDetails) HasIssuerDN ¶

func (o *ModelsCertificateDetails) HasIssuerDN() bool

HasIssuerDN returns a boolean if a field has been set.

func (*ModelsCertificateDetails) HasMetadata ¶

func (o *ModelsCertificateDetails) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ModelsCertificateDetails) HasNotAfter ¶

func (o *ModelsCertificateDetails) HasNotAfter() bool

HasNotAfter returns a boolean if a field has been set.

func (*ModelsCertificateDetails) HasNotBefore ¶

func (o *ModelsCertificateDetails) HasNotBefore() bool

HasNotBefore returns a boolean if a field has been set.

func (*ModelsCertificateDetails) HasThumbprint ¶

func (o *ModelsCertificateDetails) HasThumbprint() bool

HasThumbprint returns a boolean if a field has been set.

func (ModelsCertificateDetails) MarshalJSON ¶

func (o ModelsCertificateDetails) MarshalJSON() ([]byte, error)

func (*ModelsCertificateDetails) SetIsEndEntity ¶

func (o *ModelsCertificateDetails) SetIsEndEntity(v bool)

SetIsEndEntity gets a reference to the given bool and assigns it to the IsEndEntity field.

func (*ModelsCertificateDetails) SetIssuedDN ¶

func (o *ModelsCertificateDetails) SetIssuedDN(v string)

SetIssuedDN gets a reference to the given NullableString and assigns it to the IssuedDN field.

func (*ModelsCertificateDetails) SetIssuedDNNil ¶

func (o *ModelsCertificateDetails) SetIssuedDNNil()

SetIssuedDNNil sets the value for IssuedDN to be an explicit nil

func (*ModelsCertificateDetails) SetIssuerDN ¶

func (o *ModelsCertificateDetails) SetIssuerDN(v string)

SetIssuerDN gets a reference to the given NullableString and assigns it to the IssuerDN field.

func (*ModelsCertificateDetails) SetIssuerDNNil ¶

func (o *ModelsCertificateDetails) SetIssuerDNNil()

SetIssuerDNNil sets the value for IssuerDN to be an explicit nil

func (*ModelsCertificateDetails) SetMetadata ¶

func (o *ModelsCertificateDetails) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*ModelsCertificateDetails) SetNotAfter ¶

func (o *ModelsCertificateDetails) SetNotAfter(v time.Time)

SetNotAfter gets a reference to the given time.Time and assigns it to the NotAfter field.

func (*ModelsCertificateDetails) SetNotBefore ¶

func (o *ModelsCertificateDetails) SetNotBefore(v time.Time)

SetNotBefore gets a reference to the given time.Time and assigns it to the NotBefore field.

func (*ModelsCertificateDetails) SetThumbprint ¶

func (o *ModelsCertificateDetails) SetThumbprint(v string)

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (ModelsCertificateDetails) ToMap ¶

func (o ModelsCertificateDetails) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateDetails) UnmarshalJSON ¶

func (o *ModelsCertificateDetails) UnmarshalJSON(bytes []byte) (err error)

func (*ModelsCertificateDetails) UnsetIssuedDN ¶

func (o *ModelsCertificateDetails) UnsetIssuedDN()

UnsetIssuedDN ensures that no value is present for IssuedDN, not even an explicit nil

func (*ModelsCertificateDetails) UnsetIssuerDN ¶

func (o *ModelsCertificateDetails) UnsetIssuerDN()

UnsetIssuerDN ensures that no value is present for IssuerDN, not even an explicit nil

type ModelsCertificateDownloadRequest ¶

type ModelsCertificateDownloadRequest struct {
	CertID               *int32         `json:"CertID,omitempty"`
	SerialNumber         *string        `json:"SerialNumber,omitempty"`
	IssuerDN             NullableString `json:"IssuerDN,omitempty"`
	Thumbprint           *string        `json:"Thumbprint,omitempty"`
	IncludeChain         *bool          `json:"IncludeChain,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateDownloadRequest struct for ModelsCertificateDownloadRequest

func NewModelsCertificateDownloadRequest ¶

func NewModelsCertificateDownloadRequest() *ModelsCertificateDownloadRequest

NewModelsCertificateDownloadRequest instantiates a new ModelsCertificateDownloadRequest 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 NewModelsCertificateDownloadRequestWithDefaults ¶

func NewModelsCertificateDownloadRequestWithDefaults() *ModelsCertificateDownloadRequest

NewModelsCertificateDownloadRequestWithDefaults instantiates a new ModelsCertificateDownloadRequest 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 (*ModelsCertificateDownloadRequest) GetCertID ¶

func (o *ModelsCertificateDownloadRequest) GetCertID() int32

GetCertID returns the CertID field value if set, zero value otherwise.

func (*ModelsCertificateDownloadRequest) GetCertIDOk ¶

func (o *ModelsCertificateDownloadRequest) GetCertIDOk() (*int32, bool)

GetCertIDOk returns a tuple with the CertID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateDownloadRequest) GetIncludeChain ¶

func (o *ModelsCertificateDownloadRequest) GetIncludeChain() bool

GetIncludeChain returns the IncludeChain field value if set, zero value otherwise.

func (*ModelsCertificateDownloadRequest) GetIncludeChainOk ¶

func (o *ModelsCertificateDownloadRequest) 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 (*ModelsCertificateDownloadRequest) GetIssuerDN ¶

func (o *ModelsCertificateDownloadRequest) GetIssuerDN() string

GetIssuerDN returns the IssuerDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateDownloadRequest) GetIssuerDNOk ¶

func (o *ModelsCertificateDownloadRequest) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateDownloadRequest) GetSerialNumber ¶

func (o *ModelsCertificateDownloadRequest) GetSerialNumber() string

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*ModelsCertificateDownloadRequest) GetSerialNumberOk ¶

func (o *ModelsCertificateDownloadRequest) 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 (*ModelsCertificateDownloadRequest) GetThumbprint ¶

func (o *ModelsCertificateDownloadRequest) GetThumbprint() string

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsCertificateDownloadRequest) GetThumbprintOk ¶

func (o *ModelsCertificateDownloadRequest) GetThumbprintOk() (*string, bool)

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateDownloadRequest) HasCertID ¶

func (o *ModelsCertificateDownloadRequest) HasCertID() bool

HasCertID returns a boolean if a field has been set.

func (*ModelsCertificateDownloadRequest) HasIncludeChain ¶

func (o *ModelsCertificateDownloadRequest) HasIncludeChain() bool

HasIncludeChain returns a boolean if a field has been set.

func (*ModelsCertificateDownloadRequest) HasIssuerDN ¶

func (o *ModelsCertificateDownloadRequest) HasIssuerDN() bool

HasIssuerDN returns a boolean if a field has been set.

func (*ModelsCertificateDownloadRequest) HasSerialNumber ¶

func (o *ModelsCertificateDownloadRequest) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (*ModelsCertificateDownloadRequest) HasThumbprint ¶

func (o *ModelsCertificateDownloadRequest) HasThumbprint() bool

HasThumbprint returns a boolean if a field has been set.

func (ModelsCertificateDownloadRequest) MarshalJSON ¶

func (o ModelsCertificateDownloadRequest) MarshalJSON() ([]byte, error)

func (*ModelsCertificateDownloadRequest) SetCertID ¶

func (o *ModelsCertificateDownloadRequest) SetCertID(v int32)

SetCertID gets a reference to the given int32 and assigns it to the CertID field.

func (*ModelsCertificateDownloadRequest) SetIncludeChain ¶

func (o *ModelsCertificateDownloadRequest) SetIncludeChain(v bool)

SetIncludeChain gets a reference to the given bool and assigns it to the IncludeChain field.

func (*ModelsCertificateDownloadRequest) SetIssuerDN ¶

func (o *ModelsCertificateDownloadRequest) SetIssuerDN(v string)

SetIssuerDN gets a reference to the given NullableString and assigns it to the IssuerDN field.

func (*ModelsCertificateDownloadRequest) SetIssuerDNNil ¶

func (o *ModelsCertificateDownloadRequest) SetIssuerDNNil()

SetIssuerDNNil sets the value for IssuerDN to be an explicit nil

func (*ModelsCertificateDownloadRequest) SetSerialNumber ¶

func (o *ModelsCertificateDownloadRequest) SetSerialNumber(v string)

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (*ModelsCertificateDownloadRequest) SetThumbprint ¶

func (o *ModelsCertificateDownloadRequest) SetThumbprint(v string)

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (ModelsCertificateDownloadRequest) ToMap ¶

func (o ModelsCertificateDownloadRequest) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateDownloadRequest) UnmarshalJSON ¶

func (o *ModelsCertificateDownloadRequest) UnmarshalJSON(bytes []byte) (err error)

func (*ModelsCertificateDownloadRequest) UnsetIssuerDN ¶

func (o *ModelsCertificateDownloadRequest) UnsetIssuerDN()

UnsetIssuerDN ensures that no value is present for IssuerDN, not even an explicit nil

type ModelsCertificateDownloadResponse ¶

type ModelsCertificateDownloadResponse struct {
	Content              *string `json:"Content,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateDownloadResponse struct for ModelsCertificateDownloadResponse

func NewModelsCertificateDownloadResponse ¶

func NewModelsCertificateDownloadResponse() *ModelsCertificateDownloadResponse

NewModelsCertificateDownloadResponse instantiates a new ModelsCertificateDownloadResponse 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 NewModelsCertificateDownloadResponseWithDefaults ¶

func NewModelsCertificateDownloadResponseWithDefaults() *ModelsCertificateDownloadResponse

NewModelsCertificateDownloadResponseWithDefaults instantiates a new ModelsCertificateDownloadResponse 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 (*ModelsCertificateDownloadResponse) GetContent ¶

func (o *ModelsCertificateDownloadResponse) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*ModelsCertificateDownloadResponse) GetContentOk ¶

func (o *ModelsCertificateDownloadResponse) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateDownloadResponse) HasContent ¶

func (o *ModelsCertificateDownloadResponse) HasContent() bool

HasContent returns a boolean if a field has been set.

func (ModelsCertificateDownloadResponse) MarshalJSON ¶

func (o ModelsCertificateDownloadResponse) MarshalJSON() ([]byte, error)

func (*ModelsCertificateDownloadResponse) SetContent ¶

func (o *ModelsCertificateDownloadResponse) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (ModelsCertificateDownloadResponse) ToMap ¶

func (o ModelsCertificateDownloadResponse) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateDownloadResponse) UnmarshalJSON ¶

func (o *ModelsCertificateDownloadResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateImportRequestModel ¶

type ModelsCertificateImportRequestModel struct {
	// Base64-encoded certificate contents
	Certificate string `json:"Certificate"`
	// Optional password associated if required for a PFX
	Password *string `json:"Password,omitempty"`
	// Colleciton of metadata to be associated with the imported certificate
	Metadata *map[string]string `json:"Metadata,omitempty"`
	// List of the Keyfactor certificate store identifiers (GUID) with which the imported certificate should be associated
	StoreIds []string `json:"StoreIds,omitempty"`
	// List of the certificate store types with with the imported certificate should be associated
	StoreTypes []ModelsEnrollmentManagementStoreType `json:"StoreTypes,omitempty"`
	// Schedule on which the certificate should be imported
	Schedule *time.Time `json:"Schedule,omitempty"`
	// Whether or not we should validate and import the certificate's metadata.
	ImportMetadata       *bool `json:"ImportMetadata,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateImportRequestModel Class representing a request to import a certificate into Keyfactor Command

func NewModelsCertificateImportRequestModel ¶

func NewModelsCertificateImportRequestModel(certificate string) *ModelsCertificateImportRequestModel

NewModelsCertificateImportRequestModel instantiates a new ModelsCertificateImportRequestModel 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 NewModelsCertificateImportRequestModelWithDefaults ¶

func NewModelsCertificateImportRequestModelWithDefaults() *ModelsCertificateImportRequestModel

NewModelsCertificateImportRequestModelWithDefaults instantiates a new ModelsCertificateImportRequestModel 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 (*ModelsCertificateImportRequestModel) GetCertificate ¶

func (o *ModelsCertificateImportRequestModel) GetCertificate() string

GetCertificate returns the Certificate field value

func (*ModelsCertificateImportRequestModel) GetCertificateOk ¶

func (o *ModelsCertificateImportRequestModel) GetCertificateOk() (*string, bool)

GetCertificateOk returns a tuple with the Certificate field value and a boolean to check if the value has been set.

func (*ModelsCertificateImportRequestModel) GetImportMetadata ¶

func (o *ModelsCertificateImportRequestModel) GetImportMetadata() bool

GetImportMetadata returns the ImportMetadata field value if set, zero value otherwise.

func (*ModelsCertificateImportRequestModel) GetImportMetadataOk ¶

func (o *ModelsCertificateImportRequestModel) GetImportMetadataOk() (*bool, bool)

GetImportMetadataOk returns a tuple with the ImportMetadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateImportRequestModel) GetMetadata ¶

func (o *ModelsCertificateImportRequestModel) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ModelsCertificateImportRequestModel) GetMetadataOk ¶

func (o *ModelsCertificateImportRequestModel) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateImportRequestModel) GetPassword ¶

GetPassword returns the Password field value if set, zero value otherwise.

func (*ModelsCertificateImportRequestModel) GetPasswordOk ¶

func (o *ModelsCertificateImportRequestModel) 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 (*ModelsCertificateImportRequestModel) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*ModelsCertificateImportRequestModel) GetScheduleOk ¶

func (o *ModelsCertificateImportRequestModel) GetScheduleOk() (*time.Time, bool)

GetScheduleOk returns a tuple with the Schedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateImportRequestModel) GetStoreIds ¶

func (o *ModelsCertificateImportRequestModel) GetStoreIds() []string

GetStoreIds returns the StoreIds field value if set, zero value otherwise.

func (*ModelsCertificateImportRequestModel) GetStoreIdsOk ¶

func (o *ModelsCertificateImportRequestModel) GetStoreIdsOk() ([]string, bool)

GetStoreIdsOk returns a tuple with the StoreIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateImportRequestModel) GetStoreTypes ¶

GetStoreTypes returns the StoreTypes field value if set, zero value otherwise.

func (*ModelsCertificateImportRequestModel) GetStoreTypesOk ¶

GetStoreTypesOk returns a tuple with the StoreTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateImportRequestModel) HasImportMetadata ¶

func (o *ModelsCertificateImportRequestModel) HasImportMetadata() bool

HasImportMetadata returns a boolean if a field has been set.

func (*ModelsCertificateImportRequestModel) HasMetadata ¶

func (o *ModelsCertificateImportRequestModel) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ModelsCertificateImportRequestModel) HasPassword ¶

func (o *ModelsCertificateImportRequestModel) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ModelsCertificateImportRequestModel) HasSchedule ¶

func (o *ModelsCertificateImportRequestModel) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*ModelsCertificateImportRequestModel) HasStoreIds ¶

func (o *ModelsCertificateImportRequestModel) HasStoreIds() bool

HasStoreIds returns a boolean if a field has been set.

func (*ModelsCertificateImportRequestModel) HasStoreTypes ¶

func (o *ModelsCertificateImportRequestModel) HasStoreTypes() bool

HasStoreTypes returns a boolean if a field has been set.

func (ModelsCertificateImportRequestModel) MarshalJSON ¶

func (o ModelsCertificateImportRequestModel) MarshalJSON() ([]byte, error)

func (*ModelsCertificateImportRequestModel) SetCertificate ¶

func (o *ModelsCertificateImportRequestModel) SetCertificate(v string)

SetCertificate sets field value

func (*ModelsCertificateImportRequestModel) SetImportMetadata ¶

func (o *ModelsCertificateImportRequestModel) SetImportMetadata(v bool)

SetImportMetadata gets a reference to the given bool and assigns it to the ImportMetadata field.

func (*ModelsCertificateImportRequestModel) SetMetadata ¶

func (o *ModelsCertificateImportRequestModel) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*ModelsCertificateImportRequestModel) SetPassword ¶

func (o *ModelsCertificateImportRequestModel) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ModelsCertificateImportRequestModel) SetSchedule ¶

func (o *ModelsCertificateImportRequestModel) SetSchedule(v time.Time)

SetSchedule gets a reference to the given time.Time and assigns it to the Schedule field.

func (*ModelsCertificateImportRequestModel) SetStoreIds ¶

func (o *ModelsCertificateImportRequestModel) SetStoreIds(v []string)

SetStoreIds gets a reference to the given []string and assigns it to the StoreIds field.

func (*ModelsCertificateImportRequestModel) SetStoreTypes ¶

SetStoreTypes gets a reference to the given []ModelsEnrollmentManagementStoreType and assigns it to the StoreTypes field.

func (ModelsCertificateImportRequestModel) ToMap ¶

func (o ModelsCertificateImportRequestModel) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateImportRequestModel) UnmarshalJSON ¶

func (o *ModelsCertificateImportRequestModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateImportResponseModel ¶

type ModelsCertificateImportResponseModel struct {
	ImportStatus         *int32                  `json:"ImportStatus,omitempty"`
	JobStatus            *int32                  `json:"JobStatus,omitempty"`
	InvalidKeystores     []ModelsInvalidKeystore `json:"InvalidKeystores,omitempty"`
	Thumbprint           *string                 `json:"Thumbprint,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateImportResponseModel struct for ModelsCertificateImportResponseModel

func NewModelsCertificateImportResponseModel ¶

func NewModelsCertificateImportResponseModel() *ModelsCertificateImportResponseModel

NewModelsCertificateImportResponseModel instantiates a new ModelsCertificateImportResponseModel 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 NewModelsCertificateImportResponseModelWithDefaults ¶

func NewModelsCertificateImportResponseModelWithDefaults() *ModelsCertificateImportResponseModel

NewModelsCertificateImportResponseModelWithDefaults instantiates a new ModelsCertificateImportResponseModel 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 (*ModelsCertificateImportResponseModel) GetImportStatus ¶

func (o *ModelsCertificateImportResponseModel) GetImportStatus() int32

GetImportStatus returns the ImportStatus field value if set, zero value otherwise.

func (*ModelsCertificateImportResponseModel) GetImportStatusOk ¶

func (o *ModelsCertificateImportResponseModel) GetImportStatusOk() (*int32, bool)

GetImportStatusOk returns a tuple with the ImportStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateImportResponseModel) GetInvalidKeystores ¶

GetInvalidKeystores returns the InvalidKeystores field value if set, zero value otherwise.

func (*ModelsCertificateImportResponseModel) GetInvalidKeystoresOk ¶

func (o *ModelsCertificateImportResponseModel) GetInvalidKeystoresOk() ([]ModelsInvalidKeystore, bool)

GetInvalidKeystoresOk returns a tuple with the InvalidKeystores field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateImportResponseModel) GetJobStatus ¶

func (o *ModelsCertificateImportResponseModel) GetJobStatus() int32

GetJobStatus returns the JobStatus field value if set, zero value otherwise.

func (*ModelsCertificateImportResponseModel) GetJobStatusOk ¶

func (o *ModelsCertificateImportResponseModel) GetJobStatusOk() (*int32, bool)

GetJobStatusOk returns a tuple with the JobStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateImportResponseModel) GetThumbprint ¶

func (o *ModelsCertificateImportResponseModel) GetThumbprint() string

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsCertificateImportResponseModel) GetThumbprintOk ¶

func (o *ModelsCertificateImportResponseModel) GetThumbprintOk() (*string, bool)

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateImportResponseModel) HasImportStatus ¶

func (o *ModelsCertificateImportResponseModel) HasImportStatus() bool

HasImportStatus returns a boolean if a field has been set.

func (*ModelsCertificateImportResponseModel) HasInvalidKeystores ¶

func (o *ModelsCertificateImportResponseModel) HasInvalidKeystores() bool

HasInvalidKeystores returns a boolean if a field has been set.

func (*ModelsCertificateImportResponseModel) HasJobStatus ¶

func (o *ModelsCertificateImportResponseModel) HasJobStatus() bool

HasJobStatus returns a boolean if a field has been set.

func (*ModelsCertificateImportResponseModel) HasThumbprint ¶

func (o *ModelsCertificateImportResponseModel) HasThumbprint() bool

HasThumbprint returns a boolean if a field has been set.

func (ModelsCertificateImportResponseModel) MarshalJSON ¶

func (o ModelsCertificateImportResponseModel) MarshalJSON() ([]byte, error)

func (*ModelsCertificateImportResponseModel) SetImportStatus ¶

func (o *ModelsCertificateImportResponseModel) SetImportStatus(v int32)

SetImportStatus gets a reference to the given int32 and assigns it to the ImportStatus field.

func (*ModelsCertificateImportResponseModel) SetInvalidKeystores ¶

func (o *ModelsCertificateImportResponseModel) SetInvalidKeystores(v []ModelsInvalidKeystore)

SetInvalidKeystores gets a reference to the given []ModelsInvalidKeystore and assigns it to the InvalidKeystores field.

func (*ModelsCertificateImportResponseModel) SetJobStatus ¶

func (o *ModelsCertificateImportResponseModel) SetJobStatus(v int32)

SetJobStatus gets a reference to the given int32 and assigns it to the JobStatus field.

func (*ModelsCertificateImportResponseModel) SetThumbprint ¶

func (o *ModelsCertificateImportResponseModel) SetThumbprint(v string)

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (ModelsCertificateImportResponseModel) ToMap ¶

func (o ModelsCertificateImportResponseModel) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateImportResponseModel) UnmarshalJSON ¶

func (o *ModelsCertificateImportResponseModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateLocationSpecifier ¶

type ModelsCertificateLocationSpecifier struct {
	Alias                *string                           `json:"Alias,omitempty"`
	CertificateStoreId   *string                           `json:"CertificateStoreId,omitempty"`
	JobFields            map[string]map[string]interface{} `json:"JobFields,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateLocationSpecifier struct for ModelsCertificateLocationSpecifier

func NewModelsCertificateLocationSpecifier ¶

func NewModelsCertificateLocationSpecifier() *ModelsCertificateLocationSpecifier

NewModelsCertificateLocationSpecifier instantiates a new ModelsCertificateLocationSpecifier 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 NewModelsCertificateLocationSpecifierWithDefaults ¶

func NewModelsCertificateLocationSpecifierWithDefaults() *ModelsCertificateLocationSpecifier

NewModelsCertificateLocationSpecifierWithDefaults instantiates a new ModelsCertificateLocationSpecifier 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 (*ModelsCertificateLocationSpecifier) GetAlias ¶

GetAlias returns the Alias field value if set, zero value otherwise.

func (*ModelsCertificateLocationSpecifier) GetAliasOk ¶

func (o *ModelsCertificateLocationSpecifier) GetAliasOk() (*string, bool)

GetAliasOk returns a tuple with the Alias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateLocationSpecifier) GetCertificateStoreId ¶

func (o *ModelsCertificateLocationSpecifier) GetCertificateStoreId() string

GetCertificateStoreId returns the CertificateStoreId field value if set, zero value otherwise.

func (*ModelsCertificateLocationSpecifier) GetCertificateStoreIdOk ¶

func (o *ModelsCertificateLocationSpecifier) GetCertificateStoreIdOk() (*string, bool)

GetCertificateStoreIdOk returns a tuple with the CertificateStoreId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateLocationSpecifier) GetJobFields ¶

func (o *ModelsCertificateLocationSpecifier) GetJobFields() map[string]map[string]interface{}

GetJobFields returns the JobFields field value if set, zero value otherwise.

func (*ModelsCertificateLocationSpecifier) GetJobFieldsOk ¶

func (o *ModelsCertificateLocationSpecifier) GetJobFieldsOk() (map[string]map[string]interface{}, bool)

GetJobFieldsOk returns a tuple with the JobFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateLocationSpecifier) HasAlias ¶

HasAlias returns a boolean if a field has been set.

func (*ModelsCertificateLocationSpecifier) HasCertificateStoreId ¶

func (o *ModelsCertificateLocationSpecifier) HasCertificateStoreId() bool

HasCertificateStoreId returns a boolean if a field has been set.

func (*ModelsCertificateLocationSpecifier) HasJobFields ¶

func (o *ModelsCertificateLocationSpecifier) HasJobFields() bool

HasJobFields returns a boolean if a field has been set.

func (ModelsCertificateLocationSpecifier) MarshalJSON ¶

func (o ModelsCertificateLocationSpecifier) MarshalJSON() ([]byte, error)

func (*ModelsCertificateLocationSpecifier) SetAlias ¶

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*ModelsCertificateLocationSpecifier) SetCertificateStoreId ¶

func (o *ModelsCertificateLocationSpecifier) SetCertificateStoreId(v string)

SetCertificateStoreId gets a reference to the given string and assigns it to the CertificateStoreId field.

func (*ModelsCertificateLocationSpecifier) SetJobFields ¶

func (o *ModelsCertificateLocationSpecifier) SetJobFields(v map[string]map[string]interface{})

SetJobFields gets a reference to the given map[string]map[string]interface{} and assigns it to the JobFields field.

func (ModelsCertificateLocationSpecifier) ToMap ¶

func (o ModelsCertificateLocationSpecifier) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateLocationSpecifier) UnmarshalJSON ¶

func (o *ModelsCertificateLocationSpecifier) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateQuery ¶

type ModelsCertificateQuery struct {
	Id                   *int32  `json:"Id,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	Description          *string `json:"Description,omitempty"`
	Automated            *bool   `json:"Automated,omitempty"`
	Content              *string `json:"Content,omitempty"`
	DuplicationField     *int32  `json:"DuplicationField,omitempty"`
	ShowOnDashboard      *bool   `json:"ShowOnDashboard,omitempty"`
	Favorite             *bool   `json:"Favorite,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateQuery struct for ModelsCertificateQuery

func NewModelsCertificateQuery ¶

func NewModelsCertificateQuery() *ModelsCertificateQuery

NewModelsCertificateQuery instantiates a new ModelsCertificateQuery 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 NewModelsCertificateQueryWithDefaults ¶

func NewModelsCertificateQueryWithDefaults() *ModelsCertificateQuery

NewModelsCertificateQueryWithDefaults instantiates a new ModelsCertificateQuery 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 (*ModelsCertificateQuery) GetAutomated ¶

func (o *ModelsCertificateQuery) GetAutomated() bool

GetAutomated returns the Automated field value if set, zero value otherwise.

func (*ModelsCertificateQuery) GetAutomatedOk ¶

func (o *ModelsCertificateQuery) GetAutomatedOk() (*bool, bool)

GetAutomatedOk returns a tuple with the Automated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateQuery) GetContent ¶

func (o *ModelsCertificateQuery) GetContent() string

GetContent returns the Content field value if set, zero value otherwise.

func (*ModelsCertificateQuery) GetContentOk ¶

func (o *ModelsCertificateQuery) GetContentOk() (*string, bool)

GetContentOk returns a tuple with the Content field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateQuery) GetDescription ¶

func (o *ModelsCertificateQuery) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelsCertificateQuery) GetDescriptionOk ¶

func (o *ModelsCertificateQuery) 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 (*ModelsCertificateQuery) GetDuplicationField ¶

func (o *ModelsCertificateQuery) GetDuplicationField() int32

GetDuplicationField returns the DuplicationField field value if set, zero value otherwise.

func (*ModelsCertificateQuery) GetDuplicationFieldOk ¶

func (o *ModelsCertificateQuery) GetDuplicationFieldOk() (*int32, bool)

GetDuplicationFieldOk returns a tuple with the DuplicationField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateQuery) GetFavorite ¶

func (o *ModelsCertificateQuery) GetFavorite() bool

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*ModelsCertificateQuery) GetFavoriteOk ¶

func (o *ModelsCertificateQuery) GetFavoriteOk() (*bool, bool)

GetFavoriteOk returns a tuple with the Favorite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateQuery) GetId ¶

func (o *ModelsCertificateQuery) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateQuery) GetIdOk ¶

func (o *ModelsCertificateQuery) 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 (*ModelsCertificateQuery) GetName ¶

func (o *ModelsCertificateQuery) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsCertificateQuery) GetNameOk ¶

func (o *ModelsCertificateQuery) 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 (*ModelsCertificateQuery) GetShowOnDashboard ¶

func (o *ModelsCertificateQuery) GetShowOnDashboard() bool

GetShowOnDashboard returns the ShowOnDashboard field value if set, zero value otherwise.

func (*ModelsCertificateQuery) GetShowOnDashboardOk ¶

func (o *ModelsCertificateQuery) GetShowOnDashboardOk() (*bool, bool)

GetShowOnDashboardOk returns a tuple with the ShowOnDashboard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateQuery) HasAutomated ¶

func (o *ModelsCertificateQuery) HasAutomated() bool

HasAutomated returns a boolean if a field has been set.

func (*ModelsCertificateQuery) HasContent ¶

func (o *ModelsCertificateQuery) HasContent() bool

HasContent returns a boolean if a field has been set.

func (*ModelsCertificateQuery) HasDescription ¶

func (o *ModelsCertificateQuery) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelsCertificateQuery) HasDuplicationField ¶

func (o *ModelsCertificateQuery) HasDuplicationField() bool

HasDuplicationField returns a boolean if a field has been set.

func (*ModelsCertificateQuery) HasFavorite ¶

func (o *ModelsCertificateQuery) HasFavorite() bool

HasFavorite returns a boolean if a field has been set.

func (*ModelsCertificateQuery) HasId ¶

func (o *ModelsCertificateQuery) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsCertificateQuery) HasName ¶

func (o *ModelsCertificateQuery) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModelsCertificateQuery) HasShowOnDashboard ¶

func (o *ModelsCertificateQuery) HasShowOnDashboard() bool

HasShowOnDashboard returns a boolean if a field has been set.

func (ModelsCertificateQuery) MarshalJSON ¶

func (o ModelsCertificateQuery) MarshalJSON() ([]byte, error)

func (*ModelsCertificateQuery) SetAutomated ¶

func (o *ModelsCertificateQuery) SetAutomated(v bool)

SetAutomated gets a reference to the given bool and assigns it to the Automated field.

func (*ModelsCertificateQuery) SetContent ¶

func (o *ModelsCertificateQuery) SetContent(v string)

SetContent gets a reference to the given string and assigns it to the Content field.

func (*ModelsCertificateQuery) SetDescription ¶

func (o *ModelsCertificateQuery) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelsCertificateQuery) SetDuplicationField ¶

func (o *ModelsCertificateQuery) SetDuplicationField(v int32)

SetDuplicationField gets a reference to the given int32 and assigns it to the DuplicationField field.

func (*ModelsCertificateQuery) SetFavorite ¶

func (o *ModelsCertificateQuery) SetFavorite(v bool)

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*ModelsCertificateQuery) SetId ¶

func (o *ModelsCertificateQuery) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsCertificateQuery) SetName ¶

func (o *ModelsCertificateQuery) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsCertificateQuery) SetShowOnDashboard ¶

func (o *ModelsCertificateQuery) SetShowOnDashboard(v bool)

SetShowOnDashboard gets a reference to the given bool and assigns it to the ShowOnDashboard field.

func (ModelsCertificateQuery) ToMap ¶

func (o ModelsCertificateQuery) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateQuery) UnmarshalJSON ¶

func (o *ModelsCertificateQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateRecoveryRequest ¶

type ModelsCertificateRecoveryRequest struct {
	Password             string         `json:"Password"`
	CertID               *int32         `json:"CertID,omitempty"`
	SerialNumber         *string        `json:"SerialNumber,omitempty"`
	IssuerDN             NullableString `json:"IssuerDN,omitempty"`
	Thumbprint           *string        `json:"Thumbprint,omitempty"`
	IncludeChain         *bool          `json:"IncludeChain,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateRecoveryRequest struct for ModelsCertificateRecoveryRequest

func NewModelsCertificateRecoveryRequest ¶

func NewModelsCertificateRecoveryRequest(password string) *ModelsCertificateRecoveryRequest

NewModelsCertificateRecoveryRequest instantiates a new ModelsCertificateRecoveryRequest 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 NewModelsCertificateRecoveryRequestWithDefaults ¶

func NewModelsCertificateRecoveryRequestWithDefaults() *ModelsCertificateRecoveryRequest

NewModelsCertificateRecoveryRequestWithDefaults instantiates a new ModelsCertificateRecoveryRequest 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 (*ModelsCertificateRecoveryRequest) GetCertID ¶

func (o *ModelsCertificateRecoveryRequest) GetCertID() int32

GetCertID returns the CertID field value if set, zero value otherwise.

func (*ModelsCertificateRecoveryRequest) GetCertIDOk ¶

func (o *ModelsCertificateRecoveryRequest) GetCertIDOk() (*int32, bool)

GetCertIDOk returns a tuple with the CertID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRecoveryRequest) GetIncludeChain ¶

func (o *ModelsCertificateRecoveryRequest) GetIncludeChain() bool

GetIncludeChain returns the IncludeChain field value if set, zero value otherwise.

func (*ModelsCertificateRecoveryRequest) GetIncludeChainOk ¶

func (o *ModelsCertificateRecoveryRequest) 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 (*ModelsCertificateRecoveryRequest) GetIssuerDN ¶

func (o *ModelsCertificateRecoveryRequest) GetIssuerDN() string

GetIssuerDN returns the IssuerDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRecoveryRequest) GetIssuerDNOk ¶

func (o *ModelsCertificateRecoveryRequest) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRecoveryRequest) GetPassword ¶

func (o *ModelsCertificateRecoveryRequest) GetPassword() string

GetPassword returns the Password field value

func (*ModelsCertificateRecoveryRequest) GetPasswordOk ¶

func (o *ModelsCertificateRecoveryRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*ModelsCertificateRecoveryRequest) GetSerialNumber ¶

func (o *ModelsCertificateRecoveryRequest) GetSerialNumber() string

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*ModelsCertificateRecoveryRequest) GetSerialNumberOk ¶

func (o *ModelsCertificateRecoveryRequest) 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 (*ModelsCertificateRecoveryRequest) GetThumbprint ¶

func (o *ModelsCertificateRecoveryRequest) GetThumbprint() string

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsCertificateRecoveryRequest) GetThumbprintOk ¶

func (o *ModelsCertificateRecoveryRequest) GetThumbprintOk() (*string, bool)

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRecoveryRequest) HasCertID ¶

func (o *ModelsCertificateRecoveryRequest) HasCertID() bool

HasCertID returns a boolean if a field has been set.

func (*ModelsCertificateRecoveryRequest) HasIncludeChain ¶

func (o *ModelsCertificateRecoveryRequest) HasIncludeChain() bool

HasIncludeChain returns a boolean if a field has been set.

func (*ModelsCertificateRecoveryRequest) HasIssuerDN ¶

func (o *ModelsCertificateRecoveryRequest) HasIssuerDN() bool

HasIssuerDN returns a boolean if a field has been set.

func (*ModelsCertificateRecoveryRequest) HasSerialNumber ¶

func (o *ModelsCertificateRecoveryRequest) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (*ModelsCertificateRecoveryRequest) HasThumbprint ¶

func (o *ModelsCertificateRecoveryRequest) HasThumbprint() bool

HasThumbprint returns a boolean if a field has been set.

func (ModelsCertificateRecoveryRequest) MarshalJSON ¶

func (o ModelsCertificateRecoveryRequest) MarshalJSON() ([]byte, error)

func (*ModelsCertificateRecoveryRequest) SetCertID ¶

func (o *ModelsCertificateRecoveryRequest) SetCertID(v int32)

SetCertID gets a reference to the given int32 and assigns it to the CertID field.

func (*ModelsCertificateRecoveryRequest) SetIncludeChain ¶

func (o *ModelsCertificateRecoveryRequest) SetIncludeChain(v bool)

SetIncludeChain gets a reference to the given bool and assigns it to the IncludeChain field.

func (*ModelsCertificateRecoveryRequest) SetIssuerDN ¶

func (o *ModelsCertificateRecoveryRequest) SetIssuerDN(v string)

SetIssuerDN gets a reference to the given NullableString and assigns it to the IssuerDN field.

func (*ModelsCertificateRecoveryRequest) SetIssuerDNNil ¶

func (o *ModelsCertificateRecoveryRequest) SetIssuerDNNil()

SetIssuerDNNil sets the value for IssuerDN to be an explicit nil

func (*ModelsCertificateRecoveryRequest) SetPassword ¶

func (o *ModelsCertificateRecoveryRequest) SetPassword(v string)

SetPassword sets field value

func (*ModelsCertificateRecoveryRequest) SetSerialNumber ¶

func (o *ModelsCertificateRecoveryRequest) SetSerialNumber(v string)

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (*ModelsCertificateRecoveryRequest) SetThumbprint ¶

func (o *ModelsCertificateRecoveryRequest) SetThumbprint(v string)

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (ModelsCertificateRecoveryRequest) ToMap ¶

func (o ModelsCertificateRecoveryRequest) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateRecoveryRequest) UnmarshalJSON ¶

func (o *ModelsCertificateRecoveryRequest) UnmarshalJSON(bytes []byte) (err error)

func (*ModelsCertificateRecoveryRequest) UnsetIssuerDN ¶

func (o *ModelsCertificateRecoveryRequest) UnsetIssuerDN()

UnsetIssuerDN ensures that no value is present for IssuerDN, not even an explicit nil

type ModelsCertificateRetrievalResponse ¶

type ModelsCertificateRetrievalResponse struct {
	Id                       *int32         `json:"Id,omitempty"`
	Thumbprint               *string        `json:"Thumbprint,omitempty"`
	SerialNumber             *string        `json:"SerialNumber,omitempty"`
	IssuedDN                 NullableString `json:"IssuedDN,omitempty"`
	IssuedCN                 NullableString `json:"IssuedCN,omitempty"`
	ImportDate               *time.Time     `json:"ImportDate,omitempty"`
	NotBefore                *time.Time     `json:"NotBefore,omitempty"`
	NotAfter                 *time.Time     `json:"NotAfter,omitempty"`
	IssuerDN                 NullableString `json:"IssuerDN,omitempty"`
	PrincipalId              NullableInt32  `json:"PrincipalId,omitempty"`
	TemplateId               *int32         `json:"TemplateId,omitempty"`
	CertState                *int32         `json:"CertState,omitempty"`
	KeySizeInBits            *int32         `json:"KeySizeInBits,omitempty"`
	KeyType                  *int32         `json:"KeyType,omitempty"`
	RequesterId              *int32         `json:"RequesterId,omitempty"`
	IssuedOU                 NullableString `json:"IssuedOU,omitempty"`
	IssuedEmail              NullableString `json:"IssuedEmail,omitempty"`
	KeyUsage                 *int32         `json:"KeyUsage,omitempty"`
	SigningAlgorithm         *string        `json:"SigningAlgorithm,omitempty"`
	CertStateString          *string        `json:"CertStateString,omitempty"`
	KeyTypeString            *string        `json:"KeyTypeString,omitempty"`
	RevocationEffDate        NullableTime   `json:"RevocationEffDate,omitempty"`
	RevocationReason         NullableInt32  `json:"RevocationReason,omitempty"`
	RevocationComment        NullableString `json:"RevocationComment,omitempty"`
	CertificateAuthorityId   *int32         `json:"CertificateAuthorityId,omitempty"`
	CertificateAuthorityName *string        `json:"CertificateAuthorityName,omitempty"`
	// Full template display name.
	TemplateName           *string                                                                 `json:"TemplateName,omitempty"`
	ArchivedKey            *bool                                                                   `json:"ArchivedKey,omitempty"`
	HasPrivateKey          *bool                                                                   `json:"HasPrivateKey,omitempty"`
	PrincipalName          NullableString                                                          `json:"PrincipalName,omitempty"`
	CertRequestId          *int32                                                                  `json:"CertRequestId,omitempty"`
	RequesterName          *string                                                                 `json:"RequesterName,omitempty"`
	ContentBytes           *string                                                                 `json:"ContentBytes,omitempty"`
	ExtendedKeyUsages      []ModelsCertificateRetrievalResponseExtendedKeyUsageModel               `json:"ExtendedKeyUsages,omitempty"`
	SubjectAltNameElements []ModelsCertificateRetrievalResponseSubjectAlternativeNameModel         `json:"SubjectAltNameElements,omitempty"`
	CRLDistributionPoints  []ModelsCertificateRetrievalResponseCRLDistributionPointModel           `json:"CRLDistributionPoints,omitempty"`
	LocationsCount         []ModelsCertificateRetrievalResponseLocationCountModel                  `json:"LocationsCount,omitempty"`
	SSLLocations           []ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel `json:"SSLLocations,omitempty"`
	Locations              []ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel  `json:"Locations,omitempty"`
	Metadata               *map[string]string                                                      `json:"Metadata,omitempty"`
	CertificateKeyId       *int32                                                                  `json:"CertificateKeyId,omitempty"`
	CARowIndex             *int64                                                                  `json:"CARowIndex,omitempty"`
	CARecordId             *string                                                                 `json:"CARecordId,omitempty"`
	DetailedKeyUsage       *ModelsCertificateRetrievalResponseDetailedKeyUsageModel                `json:"DetailedKeyUsage,omitempty"`
	KeyRecoverable         *bool                                                                   `json:"KeyRecoverable,omitempty"`
	Curve                  NullableString                                                          `json:"Curve,omitempty"`
	AdditionalProperties   map[string]interface{}
}

ModelsCertificateRetrievalResponse struct for ModelsCertificateRetrievalResponse

func NewModelsCertificateRetrievalResponse ¶

func NewModelsCertificateRetrievalResponse() *ModelsCertificateRetrievalResponse

NewModelsCertificateRetrievalResponse instantiates a new ModelsCertificateRetrievalResponse 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 NewModelsCertificateRetrievalResponseWithDefaults ¶

func NewModelsCertificateRetrievalResponseWithDefaults() *ModelsCertificateRetrievalResponse

NewModelsCertificateRetrievalResponseWithDefaults instantiates a new ModelsCertificateRetrievalResponse 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 (*ModelsCertificateRetrievalResponse) GetArchivedKey ¶

func (o *ModelsCertificateRetrievalResponse) GetArchivedKey() bool

GetArchivedKey returns the ArchivedKey field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetArchivedKeyOk ¶

func (o *ModelsCertificateRetrievalResponse) GetArchivedKeyOk() (*bool, bool)

GetArchivedKeyOk returns a tuple with the ArchivedKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetCARecordId ¶

func (o *ModelsCertificateRetrievalResponse) GetCARecordId() string

GetCARecordId returns the CARecordId field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetCARecordIdOk ¶

func (o *ModelsCertificateRetrievalResponse) GetCARecordIdOk() (*string, bool)

GetCARecordIdOk returns a tuple with the CARecordId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetCARowIndex ¶

func (o *ModelsCertificateRetrievalResponse) GetCARowIndex() int64

GetCARowIndex returns the CARowIndex field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetCARowIndexOk ¶

func (o *ModelsCertificateRetrievalResponse) GetCARowIndexOk() (*int64, bool)

GetCARowIndexOk returns a tuple with the CARowIndex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetCRLDistributionPoints ¶

GetCRLDistributionPoints returns the CRLDistributionPoints field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetCRLDistributionPointsOk ¶

GetCRLDistributionPointsOk returns a tuple with the CRLDistributionPoints field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetCertRequestId ¶

func (o *ModelsCertificateRetrievalResponse) GetCertRequestId() int32

GetCertRequestId returns the CertRequestId field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetCertRequestIdOk ¶

func (o *ModelsCertificateRetrievalResponse) GetCertRequestIdOk() (*int32, bool)

GetCertRequestIdOk returns a tuple with the CertRequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetCertState ¶

func (o *ModelsCertificateRetrievalResponse) GetCertState() int32

GetCertState returns the CertState field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetCertStateOk ¶

func (o *ModelsCertificateRetrievalResponse) GetCertStateOk() (*int32, bool)

GetCertStateOk returns a tuple with the CertState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetCertStateString ¶

func (o *ModelsCertificateRetrievalResponse) GetCertStateString() string

GetCertStateString returns the CertStateString field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetCertStateStringOk ¶

func (o *ModelsCertificateRetrievalResponse) GetCertStateStringOk() (*string, bool)

GetCertStateStringOk returns a tuple with the CertStateString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetCertificateAuthorityId ¶

func (o *ModelsCertificateRetrievalResponse) GetCertificateAuthorityId() int32

GetCertificateAuthorityId returns the CertificateAuthorityId field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetCertificateAuthorityIdOk ¶

func (o *ModelsCertificateRetrievalResponse) GetCertificateAuthorityIdOk() (*int32, bool)

GetCertificateAuthorityIdOk returns a tuple with the CertificateAuthorityId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetCertificateAuthorityName ¶

func (o *ModelsCertificateRetrievalResponse) GetCertificateAuthorityName() string

GetCertificateAuthorityName returns the CertificateAuthorityName field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetCertificateAuthorityNameOk ¶

func (o *ModelsCertificateRetrievalResponse) 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 (*ModelsCertificateRetrievalResponse) GetCertificateKeyId ¶

func (o *ModelsCertificateRetrievalResponse) GetCertificateKeyId() int32

GetCertificateKeyId returns the CertificateKeyId field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetCertificateKeyIdOk ¶

func (o *ModelsCertificateRetrievalResponse) GetCertificateKeyIdOk() (*int32, bool)

GetCertificateKeyIdOk returns a tuple with the CertificateKeyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetContentBytes ¶

func (o *ModelsCertificateRetrievalResponse) GetContentBytes() string

GetContentBytes returns the ContentBytes field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetContentBytesOk ¶

func (o *ModelsCertificateRetrievalResponse) GetContentBytesOk() (*string, bool)

GetContentBytesOk returns a tuple with the ContentBytes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetCurve ¶

GetCurve returns the Curve field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRetrievalResponse) GetCurveOk ¶

func (o *ModelsCertificateRetrievalResponse) GetCurveOk() (*string, bool)

GetCurveOk returns a tuple with the Curve field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRetrievalResponse) GetDetailedKeyUsage ¶

GetDetailedKeyUsage returns the DetailedKeyUsage field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetDetailedKeyUsageOk ¶

GetDetailedKeyUsageOk returns a tuple with the DetailedKeyUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetExtendedKeyUsages ¶

GetExtendedKeyUsages returns the ExtendedKeyUsages field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetExtendedKeyUsagesOk ¶

GetExtendedKeyUsagesOk returns a tuple with the ExtendedKeyUsages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetHasPrivateKey ¶

func (o *ModelsCertificateRetrievalResponse) GetHasPrivateKey() bool

GetHasPrivateKey returns the HasPrivateKey field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetHasPrivateKeyOk ¶

func (o *ModelsCertificateRetrievalResponse) GetHasPrivateKeyOk() (*bool, bool)

GetHasPrivateKeyOk returns a tuple with the HasPrivateKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetIdOk ¶

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 (*ModelsCertificateRetrievalResponse) GetImportDate ¶

func (o *ModelsCertificateRetrievalResponse) GetImportDate() time.Time

GetImportDate returns the ImportDate field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetImportDateOk ¶

func (o *ModelsCertificateRetrievalResponse) GetImportDateOk() (*time.Time, bool)

GetImportDateOk returns a tuple with the ImportDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetIssuedCN ¶

func (o *ModelsCertificateRetrievalResponse) GetIssuedCN() string

GetIssuedCN returns the IssuedCN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRetrievalResponse) GetIssuedCNOk ¶

func (o *ModelsCertificateRetrievalResponse) GetIssuedCNOk() (*string, bool)

GetIssuedCNOk returns a tuple with the IssuedCN field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRetrievalResponse) GetIssuedDN ¶

func (o *ModelsCertificateRetrievalResponse) GetIssuedDN() string

GetIssuedDN returns the IssuedDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRetrievalResponse) GetIssuedDNOk ¶

func (o *ModelsCertificateRetrievalResponse) GetIssuedDNOk() (*string, bool)

GetIssuedDNOk returns a tuple with the IssuedDN field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRetrievalResponse) GetIssuedEmail ¶

func (o *ModelsCertificateRetrievalResponse) GetIssuedEmail() string

GetIssuedEmail returns the IssuedEmail field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRetrievalResponse) GetIssuedEmailOk ¶

func (o *ModelsCertificateRetrievalResponse) GetIssuedEmailOk() (*string, bool)

GetIssuedEmailOk returns a tuple with the IssuedEmail field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRetrievalResponse) GetIssuedOU ¶

func (o *ModelsCertificateRetrievalResponse) GetIssuedOU() string

GetIssuedOU returns the IssuedOU field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRetrievalResponse) GetIssuedOUOk ¶

func (o *ModelsCertificateRetrievalResponse) GetIssuedOUOk() (*string, bool)

GetIssuedOUOk returns a tuple with the IssuedOU field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRetrievalResponse) GetIssuerDN ¶

func (o *ModelsCertificateRetrievalResponse) GetIssuerDN() string

GetIssuerDN returns the IssuerDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRetrievalResponse) GetIssuerDNOk ¶

func (o *ModelsCertificateRetrievalResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRetrievalResponse) GetKeyRecoverable ¶

func (o *ModelsCertificateRetrievalResponse) GetKeyRecoverable() bool

GetKeyRecoverable returns the KeyRecoverable field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetKeyRecoverableOk ¶

func (o *ModelsCertificateRetrievalResponse) GetKeyRecoverableOk() (*bool, bool)

GetKeyRecoverableOk returns a tuple with the KeyRecoverable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetKeySizeInBits ¶

func (o *ModelsCertificateRetrievalResponse) GetKeySizeInBits() int32

GetKeySizeInBits returns the KeySizeInBits field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetKeySizeInBitsOk ¶

func (o *ModelsCertificateRetrievalResponse) GetKeySizeInBitsOk() (*int32, bool)

GetKeySizeInBitsOk returns a tuple with the KeySizeInBits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetKeyType ¶

func (o *ModelsCertificateRetrievalResponse) GetKeyType() int32

GetKeyType returns the KeyType field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetKeyTypeOk ¶

func (o *ModelsCertificateRetrievalResponse) GetKeyTypeOk() (*int32, bool)

GetKeyTypeOk returns a tuple with the KeyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetKeyTypeString ¶

func (o *ModelsCertificateRetrievalResponse) GetKeyTypeString() string

GetKeyTypeString returns the KeyTypeString field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetKeyTypeStringOk ¶

func (o *ModelsCertificateRetrievalResponse) GetKeyTypeStringOk() (*string, bool)

GetKeyTypeStringOk returns a tuple with the KeyTypeString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetKeyUsage ¶

func (o *ModelsCertificateRetrievalResponse) GetKeyUsage() int32

GetKeyUsage returns the KeyUsage field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetKeyUsageOk ¶

func (o *ModelsCertificateRetrievalResponse) GetKeyUsageOk() (*int32, bool)

GetKeyUsageOk returns a tuple with the KeyUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetLocations ¶

GetLocations returns the Locations field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetLocationsCount ¶

GetLocationsCount returns the LocationsCount field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetLocationsCountOk ¶

GetLocationsCountOk returns a tuple with the LocationsCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetLocationsOk ¶

GetLocationsOk returns a tuple with the Locations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetMetadata ¶

func (o *ModelsCertificateRetrievalResponse) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetMetadataOk ¶

func (o *ModelsCertificateRetrievalResponse) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetNotAfter ¶

func (o *ModelsCertificateRetrievalResponse) GetNotAfter() time.Time

GetNotAfter returns the NotAfter field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetNotAfterOk ¶

func (o *ModelsCertificateRetrievalResponse) GetNotAfterOk() (*time.Time, bool)

GetNotAfterOk returns a tuple with the NotAfter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetNotBefore ¶

func (o *ModelsCertificateRetrievalResponse) GetNotBefore() time.Time

GetNotBefore returns the NotBefore field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetNotBeforeOk ¶

func (o *ModelsCertificateRetrievalResponse) GetNotBeforeOk() (*time.Time, 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 (*ModelsCertificateRetrievalResponse) GetPrincipalId ¶

func (o *ModelsCertificateRetrievalResponse) GetPrincipalId() int32

GetPrincipalId returns the PrincipalId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRetrievalResponse) GetPrincipalIdOk ¶

func (o *ModelsCertificateRetrievalResponse) GetPrincipalIdOk() (*int32, bool)

GetPrincipalIdOk returns a tuple with the PrincipalId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRetrievalResponse) GetPrincipalName ¶

func (o *ModelsCertificateRetrievalResponse) GetPrincipalName() string

GetPrincipalName returns the PrincipalName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRetrievalResponse) GetPrincipalNameOk ¶

func (o *ModelsCertificateRetrievalResponse) GetPrincipalNameOk() (*string, bool)

GetPrincipalNameOk returns a tuple with the PrincipalName field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRetrievalResponse) GetRequesterId ¶

func (o *ModelsCertificateRetrievalResponse) GetRequesterId() int32

GetRequesterId returns the RequesterId field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetRequesterIdOk ¶

func (o *ModelsCertificateRetrievalResponse) GetRequesterIdOk() (*int32, bool)

GetRequesterIdOk returns a tuple with the RequesterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetRequesterName ¶

func (o *ModelsCertificateRetrievalResponse) GetRequesterName() string

GetRequesterName returns the RequesterName field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetRequesterNameOk ¶

func (o *ModelsCertificateRetrievalResponse) GetRequesterNameOk() (*string, bool)

GetRequesterNameOk returns a tuple with the RequesterName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetRevocationComment ¶

func (o *ModelsCertificateRetrievalResponse) GetRevocationComment() string

GetRevocationComment returns the RevocationComment field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRetrievalResponse) GetRevocationCommentOk ¶

func (o *ModelsCertificateRetrievalResponse) GetRevocationCommentOk() (*string, bool)

GetRevocationCommentOk returns a tuple with the RevocationComment field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRetrievalResponse) GetRevocationEffDate ¶

func (o *ModelsCertificateRetrievalResponse) GetRevocationEffDate() time.Time

GetRevocationEffDate returns the RevocationEffDate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRetrievalResponse) GetRevocationEffDateOk ¶

func (o *ModelsCertificateRetrievalResponse) GetRevocationEffDateOk() (*time.Time, bool)

GetRevocationEffDateOk returns a tuple with the RevocationEffDate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRetrievalResponse) GetRevocationReason ¶

func (o *ModelsCertificateRetrievalResponse) GetRevocationReason() int32

GetRevocationReason returns the RevocationReason field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateRetrievalResponse) GetRevocationReasonOk ¶

func (o *ModelsCertificateRetrievalResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateRetrievalResponse) GetSSLLocations ¶

GetSSLLocations returns the SSLLocations field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetSSLLocationsOk ¶

GetSSLLocationsOk returns a tuple with the SSLLocations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetSerialNumber ¶

func (o *ModelsCertificateRetrievalResponse) GetSerialNumber() string

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetSerialNumberOk ¶

func (o *ModelsCertificateRetrievalResponse) 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 (*ModelsCertificateRetrievalResponse) GetSigningAlgorithm ¶

func (o *ModelsCertificateRetrievalResponse) GetSigningAlgorithm() string

GetSigningAlgorithm returns the SigningAlgorithm field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetSigningAlgorithmOk ¶

func (o *ModelsCertificateRetrievalResponse) GetSigningAlgorithmOk() (*string, bool)

GetSigningAlgorithmOk returns a tuple with the SigningAlgorithm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetSubjectAltNameElements ¶

GetSubjectAltNameElements returns the SubjectAltNameElements field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetSubjectAltNameElementsOk ¶

GetSubjectAltNameElementsOk returns a tuple with the SubjectAltNameElements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetTemplateId ¶

func (o *ModelsCertificateRetrievalResponse) GetTemplateId() int32

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetTemplateIdOk ¶

func (o *ModelsCertificateRetrievalResponse) GetTemplateIdOk() (*int32, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetTemplateName ¶

func (o *ModelsCertificateRetrievalResponse) GetTemplateName() string

GetTemplateName returns the TemplateName field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetTemplateNameOk ¶

func (o *ModelsCertificateRetrievalResponse) GetTemplateNameOk() (*string, bool)

GetTemplateNameOk returns a tuple with the TemplateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) GetThumbprint ¶

func (o *ModelsCertificateRetrievalResponse) GetThumbprint() string

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponse) GetThumbprintOk ¶

func (o *ModelsCertificateRetrievalResponse) GetThumbprintOk() (*string, bool)

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponse) HasArchivedKey ¶

func (o *ModelsCertificateRetrievalResponse) HasArchivedKey() bool

HasArchivedKey returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasCARecordId ¶

func (o *ModelsCertificateRetrievalResponse) HasCARecordId() bool

HasCARecordId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasCARowIndex ¶

func (o *ModelsCertificateRetrievalResponse) HasCARowIndex() bool

HasCARowIndex returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasCRLDistributionPoints ¶

func (o *ModelsCertificateRetrievalResponse) HasCRLDistributionPoints() bool

HasCRLDistributionPoints returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasCertRequestId ¶

func (o *ModelsCertificateRetrievalResponse) HasCertRequestId() bool

HasCertRequestId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasCertState ¶

func (o *ModelsCertificateRetrievalResponse) HasCertState() bool

HasCertState returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasCertStateString ¶

func (o *ModelsCertificateRetrievalResponse) HasCertStateString() bool

HasCertStateString returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasCertificateAuthorityId ¶

func (o *ModelsCertificateRetrievalResponse) HasCertificateAuthorityId() bool

HasCertificateAuthorityId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasCertificateAuthorityName ¶

func (o *ModelsCertificateRetrievalResponse) HasCertificateAuthorityName() bool

HasCertificateAuthorityName returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasCertificateKeyId ¶

func (o *ModelsCertificateRetrievalResponse) HasCertificateKeyId() bool

HasCertificateKeyId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasContentBytes ¶

func (o *ModelsCertificateRetrievalResponse) HasContentBytes() bool

HasContentBytes returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasCurve ¶

HasCurve returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasDetailedKeyUsage ¶

func (o *ModelsCertificateRetrievalResponse) HasDetailedKeyUsage() bool

HasDetailedKeyUsage returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasExtendedKeyUsages ¶

func (o *ModelsCertificateRetrievalResponse) HasExtendedKeyUsages() bool

HasExtendedKeyUsages returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasHasPrivateKey ¶

func (o *ModelsCertificateRetrievalResponse) HasHasPrivateKey() bool

HasHasPrivateKey returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasImportDate ¶

func (o *ModelsCertificateRetrievalResponse) HasImportDate() bool

HasImportDate returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasIssuedCN ¶

func (o *ModelsCertificateRetrievalResponse) HasIssuedCN() bool

HasIssuedCN returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasIssuedDN ¶

func (o *ModelsCertificateRetrievalResponse) HasIssuedDN() bool

HasIssuedDN returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasIssuedEmail ¶

func (o *ModelsCertificateRetrievalResponse) HasIssuedEmail() bool

HasIssuedEmail returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasIssuedOU ¶

func (o *ModelsCertificateRetrievalResponse) HasIssuedOU() bool

HasIssuedOU returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasIssuerDN ¶

func (o *ModelsCertificateRetrievalResponse) HasIssuerDN() bool

HasIssuerDN returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasKeyRecoverable ¶

func (o *ModelsCertificateRetrievalResponse) HasKeyRecoverable() bool

HasKeyRecoverable returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasKeySizeInBits ¶

func (o *ModelsCertificateRetrievalResponse) HasKeySizeInBits() bool

HasKeySizeInBits returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasKeyType ¶

func (o *ModelsCertificateRetrievalResponse) HasKeyType() bool

HasKeyType returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasKeyTypeString ¶

func (o *ModelsCertificateRetrievalResponse) HasKeyTypeString() bool

HasKeyTypeString returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasKeyUsage ¶

func (o *ModelsCertificateRetrievalResponse) HasKeyUsage() bool

HasKeyUsage returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasLocations ¶

func (o *ModelsCertificateRetrievalResponse) HasLocations() bool

HasLocations returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasLocationsCount ¶

func (o *ModelsCertificateRetrievalResponse) HasLocationsCount() bool

HasLocationsCount returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasMetadata ¶

func (o *ModelsCertificateRetrievalResponse) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasNotAfter ¶

func (o *ModelsCertificateRetrievalResponse) HasNotAfter() bool

HasNotAfter returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasNotBefore ¶

func (o *ModelsCertificateRetrievalResponse) HasNotBefore() bool

HasNotBefore returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasPrincipalId ¶

func (o *ModelsCertificateRetrievalResponse) HasPrincipalId() bool

HasPrincipalId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasPrincipalName ¶

func (o *ModelsCertificateRetrievalResponse) HasPrincipalName() bool

HasPrincipalName returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasRequesterId ¶

func (o *ModelsCertificateRetrievalResponse) HasRequesterId() bool

HasRequesterId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasRequesterName ¶

func (o *ModelsCertificateRetrievalResponse) HasRequesterName() bool

HasRequesterName returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasRevocationComment ¶

func (o *ModelsCertificateRetrievalResponse) HasRevocationComment() bool

HasRevocationComment returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasRevocationEffDate ¶

func (o *ModelsCertificateRetrievalResponse) HasRevocationEffDate() bool

HasRevocationEffDate returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasRevocationReason ¶

func (o *ModelsCertificateRetrievalResponse) HasRevocationReason() bool

HasRevocationReason returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasSSLLocations ¶

func (o *ModelsCertificateRetrievalResponse) HasSSLLocations() bool

HasSSLLocations returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasSerialNumber ¶

func (o *ModelsCertificateRetrievalResponse) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasSigningAlgorithm ¶

func (o *ModelsCertificateRetrievalResponse) HasSigningAlgorithm() bool

HasSigningAlgorithm returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasSubjectAltNameElements ¶

func (o *ModelsCertificateRetrievalResponse) HasSubjectAltNameElements() bool

HasSubjectAltNameElements returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasTemplateId ¶

func (o *ModelsCertificateRetrievalResponse) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasTemplateName ¶

func (o *ModelsCertificateRetrievalResponse) HasTemplateName() bool

HasTemplateName returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponse) HasThumbprint ¶

func (o *ModelsCertificateRetrievalResponse) HasThumbprint() bool

HasThumbprint returns a boolean if a field has been set.

func (ModelsCertificateRetrievalResponse) MarshalJSON ¶

func (o ModelsCertificateRetrievalResponse) MarshalJSON() ([]byte, error)

func (*ModelsCertificateRetrievalResponse) SetArchivedKey ¶

func (o *ModelsCertificateRetrievalResponse) SetArchivedKey(v bool)

SetArchivedKey gets a reference to the given bool and assigns it to the ArchivedKey field.

func (*ModelsCertificateRetrievalResponse) SetCARecordId ¶

func (o *ModelsCertificateRetrievalResponse) SetCARecordId(v string)

SetCARecordId gets a reference to the given string and assigns it to the CARecordId field.

func (*ModelsCertificateRetrievalResponse) SetCARowIndex ¶

func (o *ModelsCertificateRetrievalResponse) SetCARowIndex(v int64)

SetCARowIndex gets a reference to the given int64 and assigns it to the CARowIndex field.

func (*ModelsCertificateRetrievalResponse) SetCRLDistributionPoints ¶

SetCRLDistributionPoints gets a reference to the given []ModelsCertificateRetrievalResponseCRLDistributionPointModel and assigns it to the CRLDistributionPoints field.

func (*ModelsCertificateRetrievalResponse) SetCertRequestId ¶

func (o *ModelsCertificateRetrievalResponse) SetCertRequestId(v int32)

SetCertRequestId gets a reference to the given int32 and assigns it to the CertRequestId field.

func (*ModelsCertificateRetrievalResponse) SetCertState ¶

func (o *ModelsCertificateRetrievalResponse) SetCertState(v int32)

SetCertState gets a reference to the given int32 and assigns it to the CertState field.

func (*ModelsCertificateRetrievalResponse) SetCertStateString ¶

func (o *ModelsCertificateRetrievalResponse) SetCertStateString(v string)

SetCertStateString gets a reference to the given string and assigns it to the CertStateString field.

func (*ModelsCertificateRetrievalResponse) SetCertificateAuthorityId ¶

func (o *ModelsCertificateRetrievalResponse) SetCertificateAuthorityId(v int32)

SetCertificateAuthorityId gets a reference to the given int32 and assigns it to the CertificateAuthorityId field.

func (*ModelsCertificateRetrievalResponse) SetCertificateAuthorityName ¶

func (o *ModelsCertificateRetrievalResponse) SetCertificateAuthorityName(v string)

SetCertificateAuthorityName gets a reference to the given string and assigns it to the CertificateAuthorityName field.

func (*ModelsCertificateRetrievalResponse) SetCertificateKeyId ¶

func (o *ModelsCertificateRetrievalResponse) SetCertificateKeyId(v int32)

SetCertificateKeyId gets a reference to the given int32 and assigns it to the CertificateKeyId field.

func (*ModelsCertificateRetrievalResponse) SetContentBytes ¶

func (o *ModelsCertificateRetrievalResponse) SetContentBytes(v string)

SetContentBytes gets a reference to the given string and assigns it to the ContentBytes field.

func (*ModelsCertificateRetrievalResponse) SetCurve ¶

SetCurve gets a reference to the given NullableString and assigns it to the Curve field.

func (*ModelsCertificateRetrievalResponse) SetCurveNil ¶

func (o *ModelsCertificateRetrievalResponse) SetCurveNil()

SetCurveNil sets the value for Curve to be an explicit nil

func (*ModelsCertificateRetrievalResponse) SetDetailedKeyUsage ¶

SetDetailedKeyUsage gets a reference to the given ModelsCertificateRetrievalResponseDetailedKeyUsageModel and assigns it to the DetailedKeyUsage field.

func (*ModelsCertificateRetrievalResponse) SetExtendedKeyUsages ¶

SetExtendedKeyUsages gets a reference to the given []ModelsCertificateRetrievalResponseExtendedKeyUsageModel and assigns it to the ExtendedKeyUsages field.

func (*ModelsCertificateRetrievalResponse) SetHasPrivateKey ¶

func (o *ModelsCertificateRetrievalResponse) SetHasPrivateKey(v bool)

SetHasPrivateKey gets a reference to the given bool and assigns it to the HasPrivateKey field.

func (*ModelsCertificateRetrievalResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsCertificateRetrievalResponse) SetImportDate ¶

func (o *ModelsCertificateRetrievalResponse) SetImportDate(v time.Time)

SetImportDate gets a reference to the given time.Time and assigns it to the ImportDate field.

func (*ModelsCertificateRetrievalResponse) SetIssuedCN ¶

func (o *ModelsCertificateRetrievalResponse) SetIssuedCN(v string)

SetIssuedCN gets a reference to the given NullableString and assigns it to the IssuedCN field.

func (*ModelsCertificateRetrievalResponse) SetIssuedCNNil ¶

func (o *ModelsCertificateRetrievalResponse) SetIssuedCNNil()

SetIssuedCNNil sets the value for IssuedCN to be an explicit nil

func (*ModelsCertificateRetrievalResponse) SetIssuedDN ¶

func (o *ModelsCertificateRetrievalResponse) SetIssuedDN(v string)

SetIssuedDN gets a reference to the given NullableString and assigns it to the IssuedDN field.

func (*ModelsCertificateRetrievalResponse) SetIssuedDNNil ¶

func (o *ModelsCertificateRetrievalResponse) SetIssuedDNNil()

SetIssuedDNNil sets the value for IssuedDN to be an explicit nil

func (*ModelsCertificateRetrievalResponse) SetIssuedEmail ¶

func (o *ModelsCertificateRetrievalResponse) SetIssuedEmail(v string)

SetIssuedEmail gets a reference to the given NullableString and assigns it to the IssuedEmail field.

func (*ModelsCertificateRetrievalResponse) SetIssuedEmailNil ¶

func (o *ModelsCertificateRetrievalResponse) SetIssuedEmailNil()

SetIssuedEmailNil sets the value for IssuedEmail to be an explicit nil

func (*ModelsCertificateRetrievalResponse) SetIssuedOU ¶

func (o *ModelsCertificateRetrievalResponse) SetIssuedOU(v string)

SetIssuedOU gets a reference to the given NullableString and assigns it to the IssuedOU field.

func (*ModelsCertificateRetrievalResponse) SetIssuedOUNil ¶

func (o *ModelsCertificateRetrievalResponse) SetIssuedOUNil()

SetIssuedOUNil sets the value for IssuedOU to be an explicit nil

func (*ModelsCertificateRetrievalResponse) SetIssuerDN ¶

func (o *ModelsCertificateRetrievalResponse) SetIssuerDN(v string)

SetIssuerDN gets a reference to the given NullableString and assigns it to the IssuerDN field.

func (*ModelsCertificateRetrievalResponse) SetIssuerDNNil ¶

func (o *ModelsCertificateRetrievalResponse) SetIssuerDNNil()

SetIssuerDNNil sets the value for IssuerDN to be an explicit nil

func (*ModelsCertificateRetrievalResponse) SetKeyRecoverable ¶

func (o *ModelsCertificateRetrievalResponse) SetKeyRecoverable(v bool)

SetKeyRecoverable gets a reference to the given bool and assigns it to the KeyRecoverable field.

func (*ModelsCertificateRetrievalResponse) SetKeySizeInBits ¶

func (o *ModelsCertificateRetrievalResponse) SetKeySizeInBits(v int32)

SetKeySizeInBits gets a reference to the given int32 and assigns it to the KeySizeInBits field.

func (*ModelsCertificateRetrievalResponse) SetKeyType ¶

func (o *ModelsCertificateRetrievalResponse) SetKeyType(v int32)

SetKeyType gets a reference to the given int32 and assigns it to the KeyType field.

func (*ModelsCertificateRetrievalResponse) SetKeyTypeString ¶

func (o *ModelsCertificateRetrievalResponse) SetKeyTypeString(v string)

SetKeyTypeString gets a reference to the given string and assigns it to the KeyTypeString field.

func (*ModelsCertificateRetrievalResponse) SetKeyUsage ¶

func (o *ModelsCertificateRetrievalResponse) SetKeyUsage(v int32)

SetKeyUsage gets a reference to the given int32 and assigns it to the KeyUsage field.

func (*ModelsCertificateRetrievalResponse) SetLocations ¶

SetLocations gets a reference to the given []ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel and assigns it to the Locations field.

func (*ModelsCertificateRetrievalResponse) SetLocationsCount ¶

SetLocationsCount gets a reference to the given []ModelsCertificateRetrievalResponseLocationCountModel and assigns it to the LocationsCount field.

func (*ModelsCertificateRetrievalResponse) SetMetadata ¶

func (o *ModelsCertificateRetrievalResponse) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*ModelsCertificateRetrievalResponse) SetNotAfter ¶

func (o *ModelsCertificateRetrievalResponse) SetNotAfter(v time.Time)

SetNotAfter gets a reference to the given time.Time and assigns it to the NotAfter field.

func (*ModelsCertificateRetrievalResponse) SetNotBefore ¶

func (o *ModelsCertificateRetrievalResponse) SetNotBefore(v time.Time)

SetNotBefore gets a reference to the given time.Time and assigns it to the NotBefore field.

func (*ModelsCertificateRetrievalResponse) SetPrincipalId ¶

func (o *ModelsCertificateRetrievalResponse) SetPrincipalId(v int32)

SetPrincipalId gets a reference to the given NullableInt32 and assigns it to the PrincipalId field.

func (*ModelsCertificateRetrievalResponse) SetPrincipalIdNil ¶

func (o *ModelsCertificateRetrievalResponse) SetPrincipalIdNil()

SetPrincipalIdNil sets the value for PrincipalId to be an explicit nil

func (*ModelsCertificateRetrievalResponse) SetPrincipalName ¶

func (o *ModelsCertificateRetrievalResponse) SetPrincipalName(v string)

SetPrincipalName gets a reference to the given NullableString and assigns it to the PrincipalName field.

func (*ModelsCertificateRetrievalResponse) SetPrincipalNameNil ¶

func (o *ModelsCertificateRetrievalResponse) SetPrincipalNameNil()

SetPrincipalNameNil sets the value for PrincipalName to be an explicit nil

func (*ModelsCertificateRetrievalResponse) SetRequesterId ¶

func (o *ModelsCertificateRetrievalResponse) SetRequesterId(v int32)

SetRequesterId gets a reference to the given int32 and assigns it to the RequesterId field.

func (*ModelsCertificateRetrievalResponse) SetRequesterName ¶

func (o *ModelsCertificateRetrievalResponse) SetRequesterName(v string)

SetRequesterName gets a reference to the given string and assigns it to the RequesterName field.

func (*ModelsCertificateRetrievalResponse) SetRevocationComment ¶

func (o *ModelsCertificateRetrievalResponse) SetRevocationComment(v string)

SetRevocationComment gets a reference to the given NullableString and assigns it to the RevocationComment field.

func (*ModelsCertificateRetrievalResponse) SetRevocationCommentNil ¶

func (o *ModelsCertificateRetrievalResponse) SetRevocationCommentNil()

SetRevocationCommentNil sets the value for RevocationComment to be an explicit nil

func (*ModelsCertificateRetrievalResponse) SetRevocationEffDate ¶

func (o *ModelsCertificateRetrievalResponse) SetRevocationEffDate(v time.Time)

SetRevocationEffDate gets a reference to the given NullableTime and assigns it to the RevocationEffDate field.

func (*ModelsCertificateRetrievalResponse) SetRevocationEffDateNil ¶

func (o *ModelsCertificateRetrievalResponse) SetRevocationEffDateNil()

SetRevocationEffDateNil sets the value for RevocationEffDate to be an explicit nil

func (*ModelsCertificateRetrievalResponse) SetRevocationReason ¶

func (o *ModelsCertificateRetrievalResponse) SetRevocationReason(v int32)

SetRevocationReason gets a reference to the given NullableInt32 and assigns it to the RevocationReason field.

func (*ModelsCertificateRetrievalResponse) SetRevocationReasonNil ¶

func (o *ModelsCertificateRetrievalResponse) SetRevocationReasonNil()

SetRevocationReasonNil sets the value for RevocationReason to be an explicit nil

func (*ModelsCertificateRetrievalResponse) SetSSLLocations ¶

SetSSLLocations gets a reference to the given []ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel and assigns it to the SSLLocations field.

func (*ModelsCertificateRetrievalResponse) SetSerialNumber ¶

func (o *ModelsCertificateRetrievalResponse) SetSerialNumber(v string)

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (*ModelsCertificateRetrievalResponse) SetSigningAlgorithm ¶

func (o *ModelsCertificateRetrievalResponse) SetSigningAlgorithm(v string)

SetSigningAlgorithm gets a reference to the given string and assigns it to the SigningAlgorithm field.

func (*ModelsCertificateRetrievalResponse) SetSubjectAltNameElements ¶

SetSubjectAltNameElements gets a reference to the given []ModelsCertificateRetrievalResponseSubjectAlternativeNameModel and assigns it to the SubjectAltNameElements field.

func (*ModelsCertificateRetrievalResponse) SetTemplateId ¶

func (o *ModelsCertificateRetrievalResponse) SetTemplateId(v int32)

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (*ModelsCertificateRetrievalResponse) SetTemplateName ¶

func (o *ModelsCertificateRetrievalResponse) SetTemplateName(v string)

SetTemplateName gets a reference to the given string and assigns it to the TemplateName field.

func (*ModelsCertificateRetrievalResponse) SetThumbprint ¶

func (o *ModelsCertificateRetrievalResponse) SetThumbprint(v string)

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (ModelsCertificateRetrievalResponse) ToMap ¶

func (o ModelsCertificateRetrievalResponse) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateRetrievalResponse) UnmarshalJSON ¶

func (o *ModelsCertificateRetrievalResponse) UnmarshalJSON(bytes []byte) (err error)

func (*ModelsCertificateRetrievalResponse) UnsetCurve ¶

func (o *ModelsCertificateRetrievalResponse) UnsetCurve()

UnsetCurve ensures that no value is present for Curve, not even an explicit nil

func (*ModelsCertificateRetrievalResponse) UnsetIssuedCN ¶

func (o *ModelsCertificateRetrievalResponse) UnsetIssuedCN()

UnsetIssuedCN ensures that no value is present for IssuedCN, not even an explicit nil

func (*ModelsCertificateRetrievalResponse) UnsetIssuedDN ¶

func (o *ModelsCertificateRetrievalResponse) UnsetIssuedDN()

UnsetIssuedDN ensures that no value is present for IssuedDN, not even an explicit nil

func (*ModelsCertificateRetrievalResponse) UnsetIssuedEmail ¶

func (o *ModelsCertificateRetrievalResponse) UnsetIssuedEmail()

UnsetIssuedEmail ensures that no value is present for IssuedEmail, not even an explicit nil

func (*ModelsCertificateRetrievalResponse) UnsetIssuedOU ¶

func (o *ModelsCertificateRetrievalResponse) UnsetIssuedOU()

UnsetIssuedOU ensures that no value is present for IssuedOU, not even an explicit nil

func (*ModelsCertificateRetrievalResponse) UnsetIssuerDN ¶

func (o *ModelsCertificateRetrievalResponse) UnsetIssuerDN()

UnsetIssuerDN ensures that no value is present for IssuerDN, not even an explicit nil

func (*ModelsCertificateRetrievalResponse) UnsetPrincipalId ¶

func (o *ModelsCertificateRetrievalResponse) UnsetPrincipalId()

UnsetPrincipalId ensures that no value is present for PrincipalId, not even an explicit nil

func (*ModelsCertificateRetrievalResponse) UnsetPrincipalName ¶

func (o *ModelsCertificateRetrievalResponse) UnsetPrincipalName()

UnsetPrincipalName ensures that no value is present for PrincipalName, not even an explicit nil

func (*ModelsCertificateRetrievalResponse) UnsetRevocationComment ¶

func (o *ModelsCertificateRetrievalResponse) UnsetRevocationComment()

UnsetRevocationComment ensures that no value is present for RevocationComment, not even an explicit nil

func (*ModelsCertificateRetrievalResponse) UnsetRevocationEffDate ¶

func (o *ModelsCertificateRetrievalResponse) UnsetRevocationEffDate()

UnsetRevocationEffDate ensures that no value is present for RevocationEffDate, not even an explicit nil

func (*ModelsCertificateRetrievalResponse) UnsetRevocationReason ¶

func (o *ModelsCertificateRetrievalResponse) UnsetRevocationReason()

UnsetRevocationReason ensures that no value is present for RevocationReason, not even an explicit nil

type ModelsCertificateRetrievalResponseCRLDistributionPointModel ¶

type ModelsCertificateRetrievalResponseCRLDistributionPointModel struct {
	Id                   *int32  `json:"Id,omitempty"`
	Url                  *string `json:"Url,omitempty"`
	UrlHash              *string `json:"UrlHash,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateRetrievalResponseCRLDistributionPointModel struct for ModelsCertificateRetrievalResponseCRLDistributionPointModel

func NewModelsCertificateRetrievalResponseCRLDistributionPointModel ¶

func NewModelsCertificateRetrievalResponseCRLDistributionPointModel() *ModelsCertificateRetrievalResponseCRLDistributionPointModel

NewModelsCertificateRetrievalResponseCRLDistributionPointModel instantiates a new ModelsCertificateRetrievalResponseCRLDistributionPointModel 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 NewModelsCertificateRetrievalResponseCRLDistributionPointModelWithDefaults ¶

func NewModelsCertificateRetrievalResponseCRLDistributionPointModelWithDefaults() *ModelsCertificateRetrievalResponseCRLDistributionPointModel

NewModelsCertificateRetrievalResponseCRLDistributionPointModelWithDefaults instantiates a new ModelsCertificateRetrievalResponseCRLDistributionPointModel 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 (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) GetIdOk ¶

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 (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) GetUrl ¶

GetUrl returns the Url field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) GetUrlHash ¶

GetUrlHash returns the UrlHash field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) GetUrlHashOk ¶

GetUrlHashOk returns a tuple with the UrlHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) GetUrlOk ¶

GetUrlOk returns a tuple with the Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) HasUrl ¶

HasUrl returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) HasUrlHash ¶

HasUrlHash returns a boolean if a field has been set.

func (ModelsCertificateRetrievalResponseCRLDistributionPointModel) MarshalJSON ¶

func (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) SetUrl ¶

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) SetUrlHash ¶

SetUrlHash gets a reference to the given string and assigns it to the UrlHash field.

func (ModelsCertificateRetrievalResponseCRLDistributionPointModel) ToMap ¶

func (*ModelsCertificateRetrievalResponseCRLDistributionPointModel) UnmarshalJSON ¶

type ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel ¶

type ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel struct {
	StoreMachine         *string `json:"StoreMachine,omitempty"`
	StorePath            *string `json:"StorePath,omitempty"`
	StoreType            *int32  `json:"StoreType,omitempty"`
	Alias                *string `json:"Alias,omitempty"`
	ChainLevel           *int32  `json:"ChainLevel,omitempty"`
	CertStoreId          *string `json:"CertStoreId,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel struct for ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel

func NewModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel ¶

func NewModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel() *ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel

NewModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel instantiates a new ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel 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 NewModelsCertificateRetrievalResponseCertificateStoreInventoryItemModelWithDefaults ¶

func NewModelsCertificateRetrievalResponseCertificateStoreInventoryItemModelWithDefaults() *ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel

NewModelsCertificateRetrievalResponseCertificateStoreInventoryItemModelWithDefaults instantiates a new ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel 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 (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetAlias ¶

GetAlias returns the Alias field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetAliasOk ¶

GetAliasOk returns a tuple with the Alias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetCertStoreId ¶

GetCertStoreId returns the CertStoreId field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetCertStoreIdOk ¶

GetCertStoreIdOk returns a tuple with the CertStoreId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetChainLevel ¶

GetChainLevel returns the ChainLevel field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetChainLevelOk ¶

GetChainLevelOk returns a tuple with the ChainLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetStoreMachine ¶

GetStoreMachine returns the StoreMachine field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetStoreMachineOk ¶

GetStoreMachineOk returns a tuple with the StoreMachine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetStorePath ¶

GetStorePath returns the StorePath field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetStorePathOk ¶

GetStorePathOk returns a tuple with the StorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetStoreType ¶

GetStoreType returns the StoreType field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) GetStoreTypeOk ¶

GetStoreTypeOk returns a tuple with the StoreType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) HasAlias ¶

HasAlias returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) HasCertStoreId ¶

HasCertStoreId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) HasChainLevel ¶

HasChainLevel returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) HasStoreMachine ¶

HasStoreMachine returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) HasStorePath ¶

HasStorePath returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) HasStoreType ¶

HasStoreType returns a boolean if a field has been set.

func (ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) MarshalJSON ¶

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) SetAlias ¶

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) SetCertStoreId ¶

SetCertStoreId gets a reference to the given string and assigns it to the CertStoreId field.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) SetChainLevel ¶

SetChainLevel gets a reference to the given int32 and assigns it to the ChainLevel field.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) SetStoreMachine ¶

SetStoreMachine gets a reference to the given string and assigns it to the StoreMachine field.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) SetStorePath ¶

SetStorePath gets a reference to the given string and assigns it to the StorePath field.

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) SetStoreType ¶

SetStoreType gets a reference to the given int32 and assigns it to the StoreType field.

func (ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) ToMap ¶

func (*ModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) UnmarshalJSON ¶

type ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel ¶

type ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel struct {
	StorePath            *string `json:"StorePath,omitempty"`
	AgentPool            *string `json:"AgentPool,omitempty"`
	IPAddress            *string `json:"IPAddress,omitempty"`
	Port                 *int32  `json:"Port,omitempty"`
	NetworkName          *string `json:"NetworkName,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel struct for ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel

func NewModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel ¶

func NewModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel() *ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel

NewModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel instantiates a new ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel 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 NewModelsCertificateRetrievalResponseCertificateStoreLocationDetailModelWithDefaults ¶

func NewModelsCertificateRetrievalResponseCertificateStoreLocationDetailModelWithDefaults() *ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel

NewModelsCertificateRetrievalResponseCertificateStoreLocationDetailModelWithDefaults instantiates a new ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel 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 (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) GetAgentPool ¶

GetAgentPool returns the AgentPool field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) GetAgentPoolOk ¶

GetAgentPoolOk returns a tuple with the AgentPool field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) GetIPAddress ¶

GetIPAddress returns the IPAddress field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) GetIPAddressOk ¶

GetIPAddressOk returns a tuple with the IPAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) GetNetworkName ¶

GetNetworkName returns the NetworkName field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) GetNetworkNameOk ¶

GetNetworkNameOk returns a tuple with the NetworkName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) GetPort ¶

GetPort returns the Port field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) GetPortOk ¶

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) GetStorePath ¶

GetStorePath returns the StorePath field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) GetStorePathOk ¶

GetStorePathOk returns a tuple with the StorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) HasAgentPool ¶

HasAgentPool returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) HasIPAddress ¶

HasIPAddress returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) HasNetworkName ¶

HasNetworkName returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) HasPort ¶

HasPort returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) HasStorePath ¶

HasStorePath returns a boolean if a field has been set.

func (ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) MarshalJSON ¶

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) SetAgentPool ¶

SetAgentPool gets a reference to the given string and assigns it to the AgentPool field.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) SetIPAddress ¶

SetIPAddress gets a reference to the given string and assigns it to the IPAddress field.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) SetNetworkName ¶

SetNetworkName gets a reference to the given string and assigns it to the NetworkName field.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) SetPort ¶

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) SetStorePath ¶

SetStorePath gets a reference to the given string and assigns it to the StorePath field.

func (ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) ToMap ¶

func (*ModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) UnmarshalJSON ¶

type ModelsCertificateRetrievalResponseDetailedKeyUsageModel ¶

type ModelsCertificateRetrievalResponseDetailedKeyUsageModel struct {
	CrlSign              *bool   `json:"CrlSign,omitempty"`
	DataEncipherment     *bool   `json:"DataEncipherment,omitempty"`
	DecipherOnly         *bool   `json:"DecipherOnly,omitempty"`
	DigitalSignature     *bool   `json:"DigitalSignature,omitempty"`
	EncipherOnly         *bool   `json:"EncipherOnly,omitempty"`
	KeyAgreement         *bool   `json:"KeyAgreement,omitempty"`
	KeyCertSign          *bool   `json:"KeyCertSign,omitempty"`
	KeyEncipherment      *bool   `json:"KeyEncipherment,omitempty"`
	NonRepudiation       *bool   `json:"NonRepudiation,omitempty"`
	HexCode              *string `json:"HexCode,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateRetrievalResponseDetailedKeyUsageModel struct for ModelsCertificateRetrievalResponseDetailedKeyUsageModel

func NewModelsCertificateRetrievalResponseDetailedKeyUsageModel ¶

func NewModelsCertificateRetrievalResponseDetailedKeyUsageModel() *ModelsCertificateRetrievalResponseDetailedKeyUsageModel

NewModelsCertificateRetrievalResponseDetailedKeyUsageModel instantiates a new ModelsCertificateRetrievalResponseDetailedKeyUsageModel 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 NewModelsCertificateRetrievalResponseDetailedKeyUsageModelWithDefaults ¶

func NewModelsCertificateRetrievalResponseDetailedKeyUsageModelWithDefaults() *ModelsCertificateRetrievalResponseDetailedKeyUsageModel

NewModelsCertificateRetrievalResponseDetailedKeyUsageModelWithDefaults instantiates a new ModelsCertificateRetrievalResponseDetailedKeyUsageModel 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 (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetCrlSign ¶

GetCrlSign returns the CrlSign field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetCrlSignOk ¶

GetCrlSignOk returns a tuple with the CrlSign field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetDataEncipherment ¶

GetDataEncipherment returns the DataEncipherment field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetDataEnciphermentOk ¶

func (o *ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetDataEnciphermentOk() (*bool, bool)

GetDataEnciphermentOk returns a tuple with the DataEncipherment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetDecipherOnly ¶

GetDecipherOnly returns the DecipherOnly field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetDecipherOnlyOk ¶

GetDecipherOnlyOk returns a tuple with the DecipherOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetDigitalSignature ¶

GetDigitalSignature returns the DigitalSignature field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetDigitalSignatureOk ¶

func (o *ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetDigitalSignatureOk() (*bool, bool)

GetDigitalSignatureOk returns a tuple with the DigitalSignature field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetEncipherOnly ¶

GetEncipherOnly returns the EncipherOnly field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetEncipherOnlyOk ¶

GetEncipherOnlyOk returns a tuple with the EncipherOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetHexCode ¶

GetHexCode returns the HexCode field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetHexCodeOk ¶

GetHexCodeOk returns a tuple with the HexCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetKeyAgreement ¶

GetKeyAgreement returns the KeyAgreement field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetKeyAgreementOk ¶

GetKeyAgreementOk returns a tuple with the KeyAgreement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetKeyCertSign ¶

GetKeyCertSign returns the KeyCertSign field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetKeyCertSignOk ¶

GetKeyCertSignOk returns a tuple with the KeyCertSign field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetKeyEncipherment ¶

GetKeyEncipherment returns the KeyEncipherment field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetKeyEnciphermentOk ¶

GetKeyEnciphermentOk returns a tuple with the KeyEncipherment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetNonRepudiation ¶

GetNonRepudiation returns the NonRepudiation field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) GetNonRepudiationOk ¶

GetNonRepudiationOk returns a tuple with the NonRepudiation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) HasCrlSign ¶

HasCrlSign returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) HasDataEncipherment ¶

HasDataEncipherment returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) HasDecipherOnly ¶

HasDecipherOnly returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) HasDigitalSignature ¶

HasDigitalSignature returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) HasEncipherOnly ¶

HasEncipherOnly returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) HasHexCode ¶

HasHexCode returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) HasKeyAgreement ¶

HasKeyAgreement returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) HasKeyCertSign ¶

HasKeyCertSign returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) HasKeyEncipherment ¶

HasKeyEncipherment returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) HasNonRepudiation ¶

HasNonRepudiation returns a boolean if a field has been set.

func (ModelsCertificateRetrievalResponseDetailedKeyUsageModel) MarshalJSON ¶

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) SetCrlSign ¶

SetCrlSign gets a reference to the given bool and assigns it to the CrlSign field.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) SetDataEncipherment ¶

SetDataEncipherment gets a reference to the given bool and assigns it to the DataEncipherment field.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) SetDecipherOnly ¶

SetDecipherOnly gets a reference to the given bool and assigns it to the DecipherOnly field.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) SetDigitalSignature ¶

SetDigitalSignature gets a reference to the given bool and assigns it to the DigitalSignature field.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) SetEncipherOnly ¶

SetEncipherOnly gets a reference to the given bool and assigns it to the EncipherOnly field.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) SetHexCode ¶

SetHexCode gets a reference to the given string and assigns it to the HexCode field.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) SetKeyAgreement ¶

SetKeyAgreement gets a reference to the given bool and assigns it to the KeyAgreement field.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) SetKeyCertSign ¶

SetKeyCertSign gets a reference to the given bool and assigns it to the KeyCertSign field.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) SetKeyEncipherment ¶

SetKeyEncipherment gets a reference to the given bool and assigns it to the KeyEncipherment field.

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) SetNonRepudiation ¶

SetNonRepudiation gets a reference to the given bool and assigns it to the NonRepudiation field.

func (ModelsCertificateRetrievalResponseDetailedKeyUsageModel) ToMap ¶

func (*ModelsCertificateRetrievalResponseDetailedKeyUsageModel) UnmarshalJSON ¶

func (o *ModelsCertificateRetrievalResponseDetailedKeyUsageModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateRetrievalResponseExtendedKeyUsageModel ¶

type ModelsCertificateRetrievalResponseExtendedKeyUsageModel struct {
	Id                   *int32  `json:"Id,omitempty"`
	Oid                  *string `json:"Oid,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateRetrievalResponseExtendedKeyUsageModel struct for ModelsCertificateRetrievalResponseExtendedKeyUsageModel

func NewModelsCertificateRetrievalResponseExtendedKeyUsageModel ¶

func NewModelsCertificateRetrievalResponseExtendedKeyUsageModel() *ModelsCertificateRetrievalResponseExtendedKeyUsageModel

NewModelsCertificateRetrievalResponseExtendedKeyUsageModel instantiates a new ModelsCertificateRetrievalResponseExtendedKeyUsageModel 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 NewModelsCertificateRetrievalResponseExtendedKeyUsageModelWithDefaults ¶

func NewModelsCertificateRetrievalResponseExtendedKeyUsageModelWithDefaults() *ModelsCertificateRetrievalResponseExtendedKeyUsageModel

NewModelsCertificateRetrievalResponseExtendedKeyUsageModelWithDefaults instantiates a new ModelsCertificateRetrievalResponseExtendedKeyUsageModel 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 (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) GetIdOk ¶

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 (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) GetOid ¶

GetOid returns the Oid field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) GetOidOk ¶

GetOidOk returns a tuple with the Oid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) HasOid ¶

HasOid returns a boolean if a field has been set.

func (ModelsCertificateRetrievalResponseExtendedKeyUsageModel) MarshalJSON ¶

func (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) SetOid ¶

SetOid gets a reference to the given string and assigns it to the Oid field.

func (ModelsCertificateRetrievalResponseExtendedKeyUsageModel) ToMap ¶

func (*ModelsCertificateRetrievalResponseExtendedKeyUsageModel) UnmarshalJSON ¶

func (o *ModelsCertificateRetrievalResponseExtendedKeyUsageModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateRetrievalResponseLocationCountModel ¶

type ModelsCertificateRetrievalResponseLocationCountModel struct {
	Type                 *string `json:"Type,omitempty"`
	Count                *int32  `json:"Count,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateRetrievalResponseLocationCountModel struct for ModelsCertificateRetrievalResponseLocationCountModel

func NewModelsCertificateRetrievalResponseLocationCountModel ¶

func NewModelsCertificateRetrievalResponseLocationCountModel() *ModelsCertificateRetrievalResponseLocationCountModel

NewModelsCertificateRetrievalResponseLocationCountModel instantiates a new ModelsCertificateRetrievalResponseLocationCountModel 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 NewModelsCertificateRetrievalResponseLocationCountModelWithDefaults ¶

func NewModelsCertificateRetrievalResponseLocationCountModelWithDefaults() *ModelsCertificateRetrievalResponseLocationCountModel

NewModelsCertificateRetrievalResponseLocationCountModelWithDefaults instantiates a new ModelsCertificateRetrievalResponseLocationCountModel 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 (*ModelsCertificateRetrievalResponseLocationCountModel) GetCount ¶

GetCount returns the Count field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseLocationCountModel) GetCountOk ¶

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseLocationCountModel) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseLocationCountModel) GetTypeOk ¶

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 (*ModelsCertificateRetrievalResponseLocationCountModel) HasCount ¶

HasCount returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseLocationCountModel) HasType ¶

HasType returns a boolean if a field has been set.

func (ModelsCertificateRetrievalResponseLocationCountModel) MarshalJSON ¶

func (*ModelsCertificateRetrievalResponseLocationCountModel) SetCount ¶

SetCount gets a reference to the given int32 and assigns it to the Count field.

func (*ModelsCertificateRetrievalResponseLocationCountModel) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (ModelsCertificateRetrievalResponseLocationCountModel) ToMap ¶

func (*ModelsCertificateRetrievalResponseLocationCountModel) UnmarshalJSON ¶

func (o *ModelsCertificateRetrievalResponseLocationCountModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateRetrievalResponseSubjectAlternativeNameModel ¶

type ModelsCertificateRetrievalResponseSubjectAlternativeNameModel struct {
	Id                   *int32  `json:"Id,omitempty"`
	Value                *string `json:"Value,omitempty"`
	Type                 *int32  `json:"Type,omitempty"`
	ValueHash            *string `json:"ValueHash,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateRetrievalResponseSubjectAlternativeNameModel struct for ModelsCertificateRetrievalResponseSubjectAlternativeNameModel

func NewModelsCertificateRetrievalResponseSubjectAlternativeNameModel ¶

func NewModelsCertificateRetrievalResponseSubjectAlternativeNameModel() *ModelsCertificateRetrievalResponseSubjectAlternativeNameModel

NewModelsCertificateRetrievalResponseSubjectAlternativeNameModel instantiates a new ModelsCertificateRetrievalResponseSubjectAlternativeNameModel 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 NewModelsCertificateRetrievalResponseSubjectAlternativeNameModelWithDefaults ¶

func NewModelsCertificateRetrievalResponseSubjectAlternativeNameModelWithDefaults() *ModelsCertificateRetrievalResponseSubjectAlternativeNameModel

NewModelsCertificateRetrievalResponseSubjectAlternativeNameModelWithDefaults instantiates a new ModelsCertificateRetrievalResponseSubjectAlternativeNameModel 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 (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) GetIdOk ¶

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 (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) GetTypeOk ¶

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 (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) GetValueHash ¶

GetValueHash returns the ValueHash field value if set, zero value otherwise.

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) GetValueHashOk ¶

GetValueHashOk returns a tuple with the ValueHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) 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 (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) HasType ¶

HasType returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) HasValue ¶

HasValue returns a boolean if a field has been set.

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) HasValueHash ¶

HasValueHash returns a boolean if a field has been set.

func (ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) MarshalJSON ¶

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) SetType ¶

SetType gets a reference to the given int32 and assigns it to the Type field.

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) SetValue ¶

SetValue gets a reference to the given string and assigns it to the Value field.

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) SetValueHash ¶

SetValueHash gets a reference to the given string and assigns it to the ValueHash field.

func (ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) ToMap ¶

func (*ModelsCertificateRetrievalResponseSubjectAlternativeNameModel) UnmarshalJSON ¶

type ModelsCertificateStore ¶

type ModelsCertificateStore struct {
	Id                      *string                                     `json:"Id,omitempty"`
	DisplayName             *string                                     `json:"DisplayName,omitempty"`
	ContainerId             *int32                                      `json:"ContainerId,omitempty"`
	ClientMachine           *string                                     `json:"ClientMachine,omitempty"`
	Storepath               *string                                     `json:"Storepath,omitempty"`
	CertStoreInventoryJobId *string                                     `json:"CertStoreInventoryJobId,omitempty"`
	CertStoreType           *int32                                      `json:"CertStoreType,omitempty"`
	Approved                *bool                                       `json:"Approved,omitempty"`
	CreateIfMissing         *bool                                       `json:"CreateIfMissing,omitempty"`
	Properties              *string                                     `json:"Properties,omitempty"`
	AgentId                 *string                                     `json:"AgentId,omitempty"`
	AgentAssigned           *bool                                       `json:"AgentAssigned,omitempty"`
	ContainerName           *string                                     `json:"ContainerName,omitempty"`
	InventorySchedule       *KeyfactorCommonSchedulingKeyfactorSchedule `json:"InventorySchedule,omitempty"`
	ReenrollmentStatus      *ModelsReenrollmentStatus                   `json:"ReenrollmentStatus,omitempty"`
	SetNewPasswordAllowed   *bool                                       `json:"SetNewPasswordAllowed,omitempty"`
	Password                *string                                     `json:"Password,omitempty"`
	AdditionalProperties    map[string]interface{}
}

ModelsCertificateStore struct for ModelsCertificateStore

func NewModelsCertificateStore ¶

func NewModelsCertificateStore() *ModelsCertificateStore

NewModelsCertificateStore instantiates a new ModelsCertificateStore 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 NewModelsCertificateStoreWithDefaults ¶

func NewModelsCertificateStoreWithDefaults() *ModelsCertificateStore

NewModelsCertificateStoreWithDefaults instantiates a new ModelsCertificateStore 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 (*ModelsCertificateStore) GetAgentAssigned ¶

func (o *ModelsCertificateStore) GetAgentAssigned() bool

GetAgentAssigned returns the AgentAssigned field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetAgentAssignedOk ¶

func (o *ModelsCertificateStore) GetAgentAssignedOk() (*bool, bool)

GetAgentAssignedOk returns a tuple with the AgentAssigned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetAgentId ¶

func (o *ModelsCertificateStore) GetAgentId() string

GetAgentId returns the AgentId field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetAgentIdOk ¶

func (o *ModelsCertificateStore) GetAgentIdOk() (*string, bool)

GetAgentIdOk returns a tuple with the AgentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetApproved ¶

func (o *ModelsCertificateStore) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetApprovedOk ¶

func (o *ModelsCertificateStore) GetApprovedOk() (*bool, bool)

GetApprovedOk returns a tuple with the Approved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetCertStoreInventoryJobId ¶

func (o *ModelsCertificateStore) GetCertStoreInventoryJobId() string

GetCertStoreInventoryJobId returns the CertStoreInventoryJobId field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetCertStoreInventoryJobIdOk ¶

func (o *ModelsCertificateStore) GetCertStoreInventoryJobIdOk() (*string, bool)

GetCertStoreInventoryJobIdOk returns a tuple with the CertStoreInventoryJobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetCertStoreType ¶

func (o *ModelsCertificateStore) GetCertStoreType() int32

GetCertStoreType returns the CertStoreType field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetCertStoreTypeOk ¶

func (o *ModelsCertificateStore) GetCertStoreTypeOk() (*int32, bool)

GetCertStoreTypeOk returns a tuple with the CertStoreType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetClientMachine ¶

func (o *ModelsCertificateStore) GetClientMachine() string

GetClientMachine returns the ClientMachine field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetClientMachineOk ¶

func (o *ModelsCertificateStore) GetClientMachineOk() (*string, bool)

GetClientMachineOk returns a tuple with the ClientMachine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetContainerId ¶

func (o *ModelsCertificateStore) GetContainerId() int32

GetContainerId returns the ContainerId field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetContainerIdOk ¶

func (o *ModelsCertificateStore) GetContainerIdOk() (*int32, bool)

GetContainerIdOk returns a tuple with the ContainerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetContainerName ¶

func (o *ModelsCertificateStore) GetContainerName() string

GetContainerName returns the ContainerName field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetContainerNameOk ¶

func (o *ModelsCertificateStore) GetContainerNameOk() (*string, bool)

GetContainerNameOk returns a tuple with the ContainerName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetCreateIfMissing ¶

func (o *ModelsCertificateStore) GetCreateIfMissing() bool

GetCreateIfMissing returns the CreateIfMissing field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetCreateIfMissingOk ¶

func (o *ModelsCertificateStore) GetCreateIfMissingOk() (*bool, bool)

GetCreateIfMissingOk returns a tuple with the CreateIfMissing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetDisplayName ¶

func (o *ModelsCertificateStore) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetDisplayNameOk ¶

func (o *ModelsCertificateStore) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetId ¶

func (o *ModelsCertificateStore) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetIdOk ¶

func (o *ModelsCertificateStore) GetIdOk() (*string, 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 (*ModelsCertificateStore) GetInventorySchedule ¶

GetInventorySchedule returns the InventorySchedule field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetInventoryScheduleOk ¶

GetInventoryScheduleOk returns a tuple with the InventorySchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetPassword ¶

func (o *ModelsCertificateStore) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetPasswordOk ¶

func (o *ModelsCertificateStore) 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 (*ModelsCertificateStore) GetProperties ¶

func (o *ModelsCertificateStore) GetProperties() string

GetProperties returns the Properties field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetPropertiesOk ¶

func (o *ModelsCertificateStore) GetPropertiesOk() (*string, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetReenrollmentStatus ¶

func (o *ModelsCertificateStore) GetReenrollmentStatus() ModelsReenrollmentStatus

GetReenrollmentStatus returns the ReenrollmentStatus field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetReenrollmentStatusOk ¶

func (o *ModelsCertificateStore) GetReenrollmentStatusOk() (*ModelsReenrollmentStatus, bool)

GetReenrollmentStatusOk returns a tuple with the ReenrollmentStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetSetNewPasswordAllowed ¶

func (o *ModelsCertificateStore) GetSetNewPasswordAllowed() bool

GetSetNewPasswordAllowed returns the SetNewPasswordAllowed field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetSetNewPasswordAllowedOk ¶

func (o *ModelsCertificateStore) GetSetNewPasswordAllowedOk() (*bool, bool)

GetSetNewPasswordAllowedOk returns a tuple with the SetNewPasswordAllowed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) GetStorepath ¶

func (o *ModelsCertificateStore) GetStorepath() string

GetStorepath returns the Storepath field value if set, zero value otherwise.

func (*ModelsCertificateStore) GetStorepathOk ¶

func (o *ModelsCertificateStore) GetStorepathOk() (*string, bool)

GetStorepathOk returns a tuple with the Storepath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStore) HasAgentAssigned ¶

func (o *ModelsCertificateStore) HasAgentAssigned() bool

HasAgentAssigned returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasAgentId ¶

func (o *ModelsCertificateStore) HasAgentId() bool

HasAgentId returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasApproved ¶

func (o *ModelsCertificateStore) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasCertStoreInventoryJobId ¶

func (o *ModelsCertificateStore) HasCertStoreInventoryJobId() bool

HasCertStoreInventoryJobId returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasCertStoreType ¶

func (o *ModelsCertificateStore) HasCertStoreType() bool

HasCertStoreType returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasClientMachine ¶

func (o *ModelsCertificateStore) HasClientMachine() bool

HasClientMachine returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasContainerId ¶

func (o *ModelsCertificateStore) HasContainerId() bool

HasContainerId returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasContainerName ¶

func (o *ModelsCertificateStore) HasContainerName() bool

HasContainerName returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasCreateIfMissing ¶

func (o *ModelsCertificateStore) HasCreateIfMissing() bool

HasCreateIfMissing returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasDisplayName ¶

func (o *ModelsCertificateStore) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasId ¶

func (o *ModelsCertificateStore) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasInventorySchedule ¶

func (o *ModelsCertificateStore) HasInventorySchedule() bool

HasInventorySchedule returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasPassword ¶

func (o *ModelsCertificateStore) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasProperties ¶

func (o *ModelsCertificateStore) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasReenrollmentStatus ¶

func (o *ModelsCertificateStore) HasReenrollmentStatus() bool

HasReenrollmentStatus returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasSetNewPasswordAllowed ¶

func (o *ModelsCertificateStore) HasSetNewPasswordAllowed() bool

HasSetNewPasswordAllowed returns a boolean if a field has been set.

func (*ModelsCertificateStore) HasStorepath ¶

func (o *ModelsCertificateStore) HasStorepath() bool

HasStorepath returns a boolean if a field has been set.

func (ModelsCertificateStore) MarshalJSON ¶

func (o ModelsCertificateStore) MarshalJSON() ([]byte, error)

func (*ModelsCertificateStore) SetAgentAssigned ¶

func (o *ModelsCertificateStore) SetAgentAssigned(v bool)

SetAgentAssigned gets a reference to the given bool and assigns it to the AgentAssigned field.

func (*ModelsCertificateStore) SetAgentId ¶

func (o *ModelsCertificateStore) SetAgentId(v string)

SetAgentId gets a reference to the given string and assigns it to the AgentId field.

func (*ModelsCertificateStore) SetApproved ¶

func (o *ModelsCertificateStore) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (*ModelsCertificateStore) SetCertStoreInventoryJobId ¶

func (o *ModelsCertificateStore) SetCertStoreInventoryJobId(v string)

SetCertStoreInventoryJobId gets a reference to the given string and assigns it to the CertStoreInventoryJobId field.

func (*ModelsCertificateStore) SetCertStoreType ¶

func (o *ModelsCertificateStore) SetCertStoreType(v int32)

SetCertStoreType gets a reference to the given int32 and assigns it to the CertStoreType field.

func (*ModelsCertificateStore) SetClientMachine ¶

func (o *ModelsCertificateStore) SetClientMachine(v string)

SetClientMachine gets a reference to the given string and assigns it to the ClientMachine field.

func (*ModelsCertificateStore) SetContainerId ¶

func (o *ModelsCertificateStore) SetContainerId(v int32)

SetContainerId gets a reference to the given int32 and assigns it to the ContainerId field.

func (*ModelsCertificateStore) SetContainerName ¶

func (o *ModelsCertificateStore) SetContainerName(v string)

SetContainerName gets a reference to the given string and assigns it to the ContainerName field.

func (*ModelsCertificateStore) SetCreateIfMissing ¶

func (o *ModelsCertificateStore) SetCreateIfMissing(v bool)

SetCreateIfMissing gets a reference to the given bool and assigns it to the CreateIfMissing field.

func (*ModelsCertificateStore) SetDisplayName ¶

func (o *ModelsCertificateStore) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsCertificateStore) SetId ¶

func (o *ModelsCertificateStore) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ModelsCertificateStore) SetInventorySchedule ¶

SetInventorySchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the InventorySchedule field.

func (*ModelsCertificateStore) SetPassword ¶

func (o *ModelsCertificateStore) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ModelsCertificateStore) SetProperties ¶

func (o *ModelsCertificateStore) SetProperties(v string)

SetProperties gets a reference to the given string and assigns it to the Properties field.

func (*ModelsCertificateStore) SetReenrollmentStatus ¶

func (o *ModelsCertificateStore) SetReenrollmentStatus(v ModelsReenrollmentStatus)

SetReenrollmentStatus gets a reference to the given ModelsReenrollmentStatus and assigns it to the ReenrollmentStatus field.

func (*ModelsCertificateStore) SetSetNewPasswordAllowed ¶

func (o *ModelsCertificateStore) SetSetNewPasswordAllowed(v bool)

SetSetNewPasswordAllowed gets a reference to the given bool and assigns it to the SetNewPasswordAllowed field.

func (*ModelsCertificateStore) SetStorepath ¶

func (o *ModelsCertificateStore) SetStorepath(v string)

SetStorepath gets a reference to the given string and assigns it to the Storepath field.

func (ModelsCertificateStore) ToMap ¶

func (o ModelsCertificateStore) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateStore) UnmarshalJSON ¶

func (o *ModelsCertificateStore) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateStoreContainerListResponse ¶

type ModelsCertificateStoreContainerListResponse struct {
	Id                   *int32  `json:"Id,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	OverwriteSchedules   *bool   `json:"OverwriteSchedules,omitempty"`
	Schedule             *string `json:"Schedule,omitempty"`
	CertStoreType        *int32  `json:"CertStoreType,omitempty"`
	StoreCount           *int32  `json:"StoreCount,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateStoreContainerListResponse struct for ModelsCertificateStoreContainerListResponse

func NewModelsCertificateStoreContainerListResponse ¶

func NewModelsCertificateStoreContainerListResponse() *ModelsCertificateStoreContainerListResponse

NewModelsCertificateStoreContainerListResponse instantiates a new ModelsCertificateStoreContainerListResponse 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 NewModelsCertificateStoreContainerListResponseWithDefaults ¶

func NewModelsCertificateStoreContainerListResponseWithDefaults() *ModelsCertificateStoreContainerListResponse

NewModelsCertificateStoreContainerListResponseWithDefaults instantiates a new ModelsCertificateStoreContainerListResponse 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 (*ModelsCertificateStoreContainerListResponse) GetCertStoreType ¶

func (o *ModelsCertificateStoreContainerListResponse) GetCertStoreType() int32

GetCertStoreType returns the CertStoreType field value if set, zero value otherwise.

func (*ModelsCertificateStoreContainerListResponse) GetCertStoreTypeOk ¶

func (o *ModelsCertificateStoreContainerListResponse) GetCertStoreTypeOk() (*int32, bool)

GetCertStoreTypeOk returns a tuple with the CertStoreType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreContainerListResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateStoreContainerListResponse) GetIdOk ¶

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 (*ModelsCertificateStoreContainerListResponse) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsCertificateStoreContainerListResponse) 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 (*ModelsCertificateStoreContainerListResponse) GetOverwriteSchedules ¶

func (o *ModelsCertificateStoreContainerListResponse) GetOverwriteSchedules() bool

GetOverwriteSchedules returns the OverwriteSchedules field value if set, zero value otherwise.

func (*ModelsCertificateStoreContainerListResponse) GetOverwriteSchedulesOk ¶

func (o *ModelsCertificateStoreContainerListResponse) GetOverwriteSchedulesOk() (*bool, bool)

GetOverwriteSchedulesOk returns a tuple with the OverwriteSchedules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreContainerListResponse) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*ModelsCertificateStoreContainerListResponse) GetScheduleOk ¶

GetScheduleOk returns a tuple with the Schedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreContainerListResponse) GetStoreCount ¶

GetStoreCount returns the StoreCount field value if set, zero value otherwise.

func (*ModelsCertificateStoreContainerListResponse) GetStoreCountOk ¶

func (o *ModelsCertificateStoreContainerListResponse) GetStoreCountOk() (*int32, bool)

GetStoreCountOk returns a tuple with the StoreCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreContainerListResponse) HasCertStoreType ¶

func (o *ModelsCertificateStoreContainerListResponse) HasCertStoreType() bool

HasCertStoreType returns a boolean if a field has been set.

func (*ModelsCertificateStoreContainerListResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsCertificateStoreContainerListResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*ModelsCertificateStoreContainerListResponse) HasOverwriteSchedules ¶

func (o *ModelsCertificateStoreContainerListResponse) HasOverwriteSchedules() bool

HasOverwriteSchedules returns a boolean if a field has been set.

func (*ModelsCertificateStoreContainerListResponse) HasSchedule ¶

HasSchedule returns a boolean if a field has been set.

func (*ModelsCertificateStoreContainerListResponse) HasStoreCount ¶

HasStoreCount returns a boolean if a field has been set.

func (ModelsCertificateStoreContainerListResponse) MarshalJSON ¶

func (*ModelsCertificateStoreContainerListResponse) SetCertStoreType ¶

func (o *ModelsCertificateStoreContainerListResponse) SetCertStoreType(v int32)

SetCertStoreType gets a reference to the given int32 and assigns it to the CertStoreType field.

func (*ModelsCertificateStoreContainerListResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsCertificateStoreContainerListResponse) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsCertificateStoreContainerListResponse) SetOverwriteSchedules ¶

func (o *ModelsCertificateStoreContainerListResponse) SetOverwriteSchedules(v bool)

SetOverwriteSchedules gets a reference to the given bool and assigns it to the OverwriteSchedules field.

func (*ModelsCertificateStoreContainerListResponse) SetSchedule ¶

SetSchedule gets a reference to the given string and assigns it to the Schedule field.

func (*ModelsCertificateStoreContainerListResponse) SetStoreCount ¶

SetStoreCount gets a reference to the given int32 and assigns it to the StoreCount field.

func (ModelsCertificateStoreContainerListResponse) ToMap ¶

func (o ModelsCertificateStoreContainerListResponse) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateStoreContainerListResponse) UnmarshalJSON ¶

func (o *ModelsCertificateStoreContainerListResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateStoreCreateServerRequest ¶

type ModelsCertificateStoreCreateServerRequest struct {
	Username             ModelsKeyfactorAPISecret `json:"Username"`
	Password             ModelsKeyfactorAPISecret `json:"Password"`
	UseSSL               bool                     `json:"UseSSL"`
	ServerType           int32                    `json:"ServerType"`
	Name                 string                   `json:"Name"`
	Container            *int32                   `json:"Container,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateStoreCreateServerRequest struct for ModelsCertificateStoreCreateServerRequest

func NewModelsCertificateStoreCreateServerRequest ¶

func NewModelsCertificateStoreCreateServerRequest(username ModelsKeyfactorAPISecret, password ModelsKeyfactorAPISecret, useSSL bool, serverType int32, name string) *ModelsCertificateStoreCreateServerRequest

NewModelsCertificateStoreCreateServerRequest instantiates a new ModelsCertificateStoreCreateServerRequest 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 NewModelsCertificateStoreCreateServerRequestWithDefaults ¶

func NewModelsCertificateStoreCreateServerRequestWithDefaults() *ModelsCertificateStoreCreateServerRequest

NewModelsCertificateStoreCreateServerRequestWithDefaults instantiates a new ModelsCertificateStoreCreateServerRequest 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 (*ModelsCertificateStoreCreateServerRequest) GetContainer ¶

GetContainer returns the Container field value if set, zero value otherwise.

func (*ModelsCertificateStoreCreateServerRequest) GetContainerOk ¶

func (o *ModelsCertificateStoreCreateServerRequest) GetContainerOk() (*int32, bool)

GetContainerOk returns a tuple with the Container field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreCreateServerRequest) GetName ¶

GetName returns the Name field value

func (*ModelsCertificateStoreCreateServerRequest) GetNameOk ¶

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ModelsCertificateStoreCreateServerRequest) GetPassword ¶

GetPassword returns the Password field value

func (*ModelsCertificateStoreCreateServerRequest) GetPasswordOk ¶

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*ModelsCertificateStoreCreateServerRequest) GetServerType ¶

GetServerType returns the ServerType field value

func (*ModelsCertificateStoreCreateServerRequest) GetServerTypeOk ¶

func (o *ModelsCertificateStoreCreateServerRequest) GetServerTypeOk() (*int32, bool)

GetServerTypeOk returns a tuple with the ServerType field value and a boolean to check if the value has been set.

func (*ModelsCertificateStoreCreateServerRequest) GetUseSSL ¶

GetUseSSL returns the UseSSL field value

func (*ModelsCertificateStoreCreateServerRequest) GetUseSSLOk ¶

GetUseSSLOk returns a tuple with the UseSSL field value and a boolean to check if the value has been set.

func (*ModelsCertificateStoreCreateServerRequest) GetUsername ¶

GetUsername returns the Username field value

func (*ModelsCertificateStoreCreateServerRequest) GetUsernameOk ¶

GetUsernameOk returns a tuple with the Username field value and a boolean to check if the value has been set.

func (*ModelsCertificateStoreCreateServerRequest) HasContainer ¶

HasContainer returns a boolean if a field has been set.

func (ModelsCertificateStoreCreateServerRequest) MarshalJSON ¶

func (*ModelsCertificateStoreCreateServerRequest) SetContainer ¶

SetContainer gets a reference to the given int32 and assigns it to the Container field.

func (*ModelsCertificateStoreCreateServerRequest) SetName ¶

SetName sets field value

func (*ModelsCertificateStoreCreateServerRequest) SetPassword ¶

SetPassword sets field value

func (*ModelsCertificateStoreCreateServerRequest) SetServerType ¶

SetServerType sets field value

func (*ModelsCertificateStoreCreateServerRequest) SetUseSSL ¶

SetUseSSL sets field value

func (*ModelsCertificateStoreCreateServerRequest) SetUsername ¶

SetUsername sets field value

func (ModelsCertificateStoreCreateServerRequest) ToMap ¶

func (o ModelsCertificateStoreCreateServerRequest) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateStoreCreateServerRequest) UnmarshalJSON ¶

func (o *ModelsCertificateStoreCreateServerRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateStoreEntry ¶

type ModelsCertificateStoreEntry struct {
	CertificateStoreId string                            `json:"CertificateStoreId"`
	Alias              *string                           `json:"Alias,omitempty"`
	JobFields          map[string]map[string]interface{} `json:"JobFields,omitempty"`
	Overwrite          *bool                             `json:"Overwrite,omitempty"`
	EntryPassword      *ModelsKeyfactorAPISecret         `json:"EntryPassword,omitempty"`
	// The PFX password.
	PfxPassword          *string `json:"PfxPassword,omitempty"`
	IncludePrivateKey    *bool   `json:"IncludePrivateKey,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateStoreEntry struct for ModelsCertificateStoreEntry

func NewModelsCertificateStoreEntry ¶

func NewModelsCertificateStoreEntry(certificateStoreId string) *ModelsCertificateStoreEntry

NewModelsCertificateStoreEntry instantiates a new ModelsCertificateStoreEntry 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 NewModelsCertificateStoreEntryWithDefaults ¶

func NewModelsCertificateStoreEntryWithDefaults() *ModelsCertificateStoreEntry

NewModelsCertificateStoreEntryWithDefaults instantiates a new ModelsCertificateStoreEntry 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 (*ModelsCertificateStoreEntry) GetAlias ¶

func (o *ModelsCertificateStoreEntry) GetAlias() string

GetAlias returns the Alias field value if set, zero value otherwise.

func (*ModelsCertificateStoreEntry) GetAliasOk ¶

func (o *ModelsCertificateStoreEntry) GetAliasOk() (*string, bool)

GetAliasOk returns a tuple with the Alias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreEntry) GetCertificateStoreId ¶

func (o *ModelsCertificateStoreEntry) GetCertificateStoreId() string

GetCertificateStoreId returns the CertificateStoreId field value

func (*ModelsCertificateStoreEntry) GetCertificateStoreIdOk ¶

func (o *ModelsCertificateStoreEntry) GetCertificateStoreIdOk() (*string, bool)

GetCertificateStoreIdOk returns a tuple with the CertificateStoreId field value and a boolean to check if the value has been set.

func (*ModelsCertificateStoreEntry) GetEntryPassword ¶

GetEntryPassword returns the EntryPassword field value if set, zero value otherwise.

func (*ModelsCertificateStoreEntry) GetEntryPasswordOk ¶

func (o *ModelsCertificateStoreEntry) GetEntryPasswordOk() (*ModelsKeyfactorAPISecret, bool)

GetEntryPasswordOk returns a tuple with the EntryPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreEntry) GetIncludePrivateKey ¶

func (o *ModelsCertificateStoreEntry) GetIncludePrivateKey() bool

GetIncludePrivateKey returns the IncludePrivateKey field value if set, zero value otherwise.

func (*ModelsCertificateStoreEntry) GetIncludePrivateKeyOk ¶

func (o *ModelsCertificateStoreEntry) GetIncludePrivateKeyOk() (*bool, bool)

GetIncludePrivateKeyOk returns a tuple with the IncludePrivateKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreEntry) GetJobFields ¶

func (o *ModelsCertificateStoreEntry) GetJobFields() map[string]map[string]interface{}

GetJobFields returns the JobFields field value if set, zero value otherwise.

func (*ModelsCertificateStoreEntry) GetJobFieldsOk ¶

func (o *ModelsCertificateStoreEntry) GetJobFieldsOk() (map[string]map[string]interface{}, bool)

GetJobFieldsOk returns a tuple with the JobFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreEntry) GetOverwrite ¶

func (o *ModelsCertificateStoreEntry) GetOverwrite() bool

GetOverwrite returns the Overwrite field value if set, zero value otherwise.

func (*ModelsCertificateStoreEntry) GetOverwriteOk ¶

func (o *ModelsCertificateStoreEntry) GetOverwriteOk() (*bool, bool)

GetOverwriteOk returns a tuple with the Overwrite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreEntry) GetPfxPassword ¶

func (o *ModelsCertificateStoreEntry) GetPfxPassword() string

GetPfxPassword returns the PfxPassword field value if set, zero value otherwise.

func (*ModelsCertificateStoreEntry) GetPfxPasswordOk ¶

func (o *ModelsCertificateStoreEntry) GetPfxPasswordOk() (*string, bool)

GetPfxPasswordOk returns a tuple with the PfxPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreEntry) HasAlias ¶

func (o *ModelsCertificateStoreEntry) HasAlias() bool

HasAlias returns a boolean if a field has been set.

func (*ModelsCertificateStoreEntry) HasEntryPassword ¶

func (o *ModelsCertificateStoreEntry) HasEntryPassword() bool

HasEntryPassword returns a boolean if a field has been set.

func (*ModelsCertificateStoreEntry) HasIncludePrivateKey ¶

func (o *ModelsCertificateStoreEntry) HasIncludePrivateKey() bool

HasIncludePrivateKey returns a boolean if a field has been set.

func (*ModelsCertificateStoreEntry) HasJobFields ¶

func (o *ModelsCertificateStoreEntry) HasJobFields() bool

HasJobFields returns a boolean if a field has been set.

func (*ModelsCertificateStoreEntry) HasOverwrite ¶

func (o *ModelsCertificateStoreEntry) HasOverwrite() bool

HasOverwrite returns a boolean if a field has been set.

func (*ModelsCertificateStoreEntry) HasPfxPassword ¶

func (o *ModelsCertificateStoreEntry) HasPfxPassword() bool

HasPfxPassword returns a boolean if a field has been set.

func (ModelsCertificateStoreEntry) MarshalJSON ¶

func (o ModelsCertificateStoreEntry) MarshalJSON() ([]byte, error)

func (*ModelsCertificateStoreEntry) SetAlias ¶

func (o *ModelsCertificateStoreEntry) SetAlias(v string)

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*ModelsCertificateStoreEntry) SetCertificateStoreId ¶

func (o *ModelsCertificateStoreEntry) SetCertificateStoreId(v string)

SetCertificateStoreId sets field value

func (*ModelsCertificateStoreEntry) SetEntryPassword ¶

SetEntryPassword gets a reference to the given ModelsKeyfactorAPISecret and assigns it to the EntryPassword field.

func (*ModelsCertificateStoreEntry) SetIncludePrivateKey ¶

func (o *ModelsCertificateStoreEntry) SetIncludePrivateKey(v bool)

SetIncludePrivateKey gets a reference to the given bool and assigns it to the IncludePrivateKey field.

func (*ModelsCertificateStoreEntry) SetJobFields ¶

func (o *ModelsCertificateStoreEntry) SetJobFields(v map[string]map[string]interface{})

SetJobFields gets a reference to the given map[string]map[string]interface{} and assigns it to the JobFields field.

func (*ModelsCertificateStoreEntry) SetOverwrite ¶

func (o *ModelsCertificateStoreEntry) SetOverwrite(v bool)

SetOverwrite gets a reference to the given bool and assigns it to the Overwrite field.

func (*ModelsCertificateStoreEntry) SetPfxPassword ¶

func (o *ModelsCertificateStoreEntry) SetPfxPassword(v string)

SetPfxPassword gets a reference to the given string and assigns it to the PfxPassword field.

func (ModelsCertificateStoreEntry) ToMap ¶

func (o ModelsCertificateStoreEntry) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateStoreEntry) UnmarshalJSON ¶

func (o *ModelsCertificateStoreEntry) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateStoreInventory ¶

type ModelsCertificateStoreInventory struct {
	Name                 *string                                       `json:"Name,omitempty"`
	Certificates         []ModelsCertificateStoreInventoryCertificates `json:"Certificates,omitempty"`
	Parameters           map[string]map[string]interface{}             `json:"Parameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateStoreInventory struct for ModelsCertificateStoreInventory

func NewModelsCertificateStoreInventory ¶

func NewModelsCertificateStoreInventory() *ModelsCertificateStoreInventory

NewModelsCertificateStoreInventory instantiates a new ModelsCertificateStoreInventory 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 NewModelsCertificateStoreInventoryWithDefaults ¶

func NewModelsCertificateStoreInventoryWithDefaults() *ModelsCertificateStoreInventory

NewModelsCertificateStoreInventoryWithDefaults instantiates a new ModelsCertificateStoreInventory 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 (*ModelsCertificateStoreInventory) GetCertificates ¶

GetCertificates returns the Certificates field value if set, zero value otherwise.

func (*ModelsCertificateStoreInventory) 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 (*ModelsCertificateStoreInventory) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsCertificateStoreInventory) GetNameOk ¶

func (o *ModelsCertificateStoreInventory) 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 (*ModelsCertificateStoreInventory) GetParameters ¶

func (o *ModelsCertificateStoreInventory) GetParameters() map[string]map[string]interface{}

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*ModelsCertificateStoreInventory) GetParametersOk ¶

func (o *ModelsCertificateStoreInventory) GetParametersOk() (map[string]map[string]interface{}, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreInventory) HasCertificates ¶

func (o *ModelsCertificateStoreInventory) HasCertificates() bool

HasCertificates returns a boolean if a field has been set.

func (*ModelsCertificateStoreInventory) HasName ¶

HasName returns a boolean if a field has been set.

func (*ModelsCertificateStoreInventory) HasParameters ¶

func (o *ModelsCertificateStoreInventory) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (ModelsCertificateStoreInventory) MarshalJSON ¶

func (o ModelsCertificateStoreInventory) MarshalJSON() ([]byte, error)

func (*ModelsCertificateStoreInventory) SetCertificates ¶

SetCertificates gets a reference to the given []ModelsCertificateStoreInventoryCertificates and assigns it to the Certificates field.

func (*ModelsCertificateStoreInventory) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsCertificateStoreInventory) SetParameters ¶

func (o *ModelsCertificateStoreInventory) SetParameters(v map[string]map[string]interface{})

SetParameters gets a reference to the given map[string]map[string]interface{} and assigns it to the Parameters field.

func (ModelsCertificateStoreInventory) ToMap ¶

func (o ModelsCertificateStoreInventory) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateStoreInventory) UnmarshalJSON ¶

func (o *ModelsCertificateStoreInventory) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateStoreInventoryCertificates ¶

type ModelsCertificateStoreInventoryCertificates struct {
	Id                       *int32                            `json:"Id,omitempty"`
	IssuedDN                 NullableString                    `json:"IssuedDN,omitempty"`
	SerialNumber             *string                           `json:"SerialNumber,omitempty"`
	NotBefore                *time.Time                        `json:"NotBefore,omitempty"`
	NotAfter                 *time.Time                        `json:"NotAfter,omitempty"`
	SigningAlgorithm         *string                           `json:"SigningAlgorithm,omitempty"`
	IssuerDN                 NullableString                    `json:"IssuerDN,omitempty"`
	Thumbprint               *string                           `json:"Thumbprint,omitempty"`
	CertStoreInventoryItemId *int32                            `json:"CertStoreInventoryItemId,omitempty"`
	Metadata                 map[string]map[string]interface{} `json:"Metadata,omitempty"`
	AdditionalProperties     map[string]interface{}
}

ModelsCertificateStoreInventoryCertificates struct for ModelsCertificateStoreInventoryCertificates

func NewModelsCertificateStoreInventoryCertificates ¶

func NewModelsCertificateStoreInventoryCertificates() *ModelsCertificateStoreInventoryCertificates

NewModelsCertificateStoreInventoryCertificates instantiates a new ModelsCertificateStoreInventoryCertificates 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 NewModelsCertificateStoreInventoryCertificatesWithDefaults ¶

func NewModelsCertificateStoreInventoryCertificatesWithDefaults() *ModelsCertificateStoreInventoryCertificates

NewModelsCertificateStoreInventoryCertificatesWithDefaults instantiates a new ModelsCertificateStoreInventoryCertificates 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 (*ModelsCertificateStoreInventoryCertificates) GetCertStoreInventoryItemId ¶

func (o *ModelsCertificateStoreInventoryCertificates) GetCertStoreInventoryItemId() int32

GetCertStoreInventoryItemId returns the CertStoreInventoryItemId field value if set, zero value otherwise.

func (*ModelsCertificateStoreInventoryCertificates) GetCertStoreInventoryItemIdOk ¶

func (o *ModelsCertificateStoreInventoryCertificates) GetCertStoreInventoryItemIdOk() (*int32, bool)

GetCertStoreInventoryItemIdOk returns a tuple with the CertStoreInventoryItemId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreInventoryCertificates) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateStoreInventoryCertificates) GetIdOk ¶

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 (*ModelsCertificateStoreInventoryCertificates) GetIssuedDN ¶

GetIssuedDN returns the IssuedDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateStoreInventoryCertificates) GetIssuedDNOk ¶

GetIssuedDNOk returns a tuple with the IssuedDN field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateStoreInventoryCertificates) GetIssuerDN ¶

GetIssuerDN returns the IssuerDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsCertificateStoreInventoryCertificates) GetIssuerDNOk ¶

GetIssuerDNOk returns a tuple with the IssuerDN field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsCertificateStoreInventoryCertificates) GetMetadata ¶

func (o *ModelsCertificateStoreInventoryCertificates) GetMetadata() map[string]map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ModelsCertificateStoreInventoryCertificates) GetMetadataOk ¶

func (o *ModelsCertificateStoreInventoryCertificates) GetMetadataOk() (map[string]map[string]interface{}, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreInventoryCertificates) GetNotAfter ¶

GetNotAfter returns the NotAfter field value if set, zero value otherwise.

func (*ModelsCertificateStoreInventoryCertificates) GetNotAfterOk ¶

GetNotAfterOk returns a tuple with the NotAfter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreInventoryCertificates) GetNotBefore ¶

GetNotBefore returns the NotBefore field value if set, zero value otherwise.

func (*ModelsCertificateStoreInventoryCertificates) GetNotBeforeOk ¶

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 (*ModelsCertificateStoreInventoryCertificates) GetSerialNumber ¶

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*ModelsCertificateStoreInventoryCertificates) GetSerialNumberOk ¶

func (o *ModelsCertificateStoreInventoryCertificates) 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 (*ModelsCertificateStoreInventoryCertificates) GetSigningAlgorithm ¶

func (o *ModelsCertificateStoreInventoryCertificates) GetSigningAlgorithm() string

GetSigningAlgorithm returns the SigningAlgorithm field value if set, zero value otherwise.

func (*ModelsCertificateStoreInventoryCertificates) GetSigningAlgorithmOk ¶

func (o *ModelsCertificateStoreInventoryCertificates) GetSigningAlgorithmOk() (*string, bool)

GetSigningAlgorithmOk returns a tuple with the SigningAlgorithm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreInventoryCertificates) GetThumbprint ¶

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsCertificateStoreInventoryCertificates) GetThumbprintOk ¶

func (o *ModelsCertificateStoreInventoryCertificates) GetThumbprintOk() (*string, bool)

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreInventoryCertificates) HasCertStoreInventoryItemId ¶

func (o *ModelsCertificateStoreInventoryCertificates) HasCertStoreInventoryItemId() bool

HasCertStoreInventoryItemId returns a boolean if a field has been set.

func (*ModelsCertificateStoreInventoryCertificates) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsCertificateStoreInventoryCertificates) HasIssuedDN ¶

HasIssuedDN returns a boolean if a field has been set.

func (*ModelsCertificateStoreInventoryCertificates) HasIssuerDN ¶

HasIssuerDN returns a boolean if a field has been set.

func (*ModelsCertificateStoreInventoryCertificates) HasMetadata ¶

HasMetadata returns a boolean if a field has been set.

func (*ModelsCertificateStoreInventoryCertificates) HasNotAfter ¶

HasNotAfter returns a boolean if a field has been set.

func (*ModelsCertificateStoreInventoryCertificates) HasNotBefore ¶

HasNotBefore returns a boolean if a field has been set.

func (*ModelsCertificateStoreInventoryCertificates) HasSerialNumber ¶

HasSerialNumber returns a boolean if a field has been set.

func (*ModelsCertificateStoreInventoryCertificates) HasSigningAlgorithm ¶

func (o *ModelsCertificateStoreInventoryCertificates) HasSigningAlgorithm() bool

HasSigningAlgorithm returns a boolean if a field has been set.

func (*ModelsCertificateStoreInventoryCertificates) HasThumbprint ¶

HasThumbprint returns a boolean if a field has been set.

func (ModelsCertificateStoreInventoryCertificates) MarshalJSON ¶

func (*ModelsCertificateStoreInventoryCertificates) SetCertStoreInventoryItemId ¶

func (o *ModelsCertificateStoreInventoryCertificates) SetCertStoreInventoryItemId(v int32)

SetCertStoreInventoryItemId gets a reference to the given int32 and assigns it to the CertStoreInventoryItemId field.

func (*ModelsCertificateStoreInventoryCertificates) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsCertificateStoreInventoryCertificates) SetIssuedDN ¶

SetIssuedDN gets a reference to the given NullableString and assigns it to the IssuedDN field.

func (*ModelsCertificateStoreInventoryCertificates) SetIssuedDNNil ¶

func (o *ModelsCertificateStoreInventoryCertificates) SetIssuedDNNil()

SetIssuedDNNil sets the value for IssuedDN to be an explicit nil

func (*ModelsCertificateStoreInventoryCertificates) SetIssuerDN ¶

SetIssuerDN gets a reference to the given NullableString and assigns it to the IssuerDN field.

func (*ModelsCertificateStoreInventoryCertificates) SetIssuerDNNil ¶

func (o *ModelsCertificateStoreInventoryCertificates) SetIssuerDNNil()

SetIssuerDNNil sets the value for IssuerDN to be an explicit nil

func (*ModelsCertificateStoreInventoryCertificates) SetMetadata ¶

func (o *ModelsCertificateStoreInventoryCertificates) SetMetadata(v map[string]map[string]interface{})

SetMetadata gets a reference to the given map[string]map[string]interface{} and assigns it to the Metadata field.

func (*ModelsCertificateStoreInventoryCertificates) SetNotAfter ¶

SetNotAfter gets a reference to the given time.Time and assigns it to the NotAfter field.

func (*ModelsCertificateStoreInventoryCertificates) SetNotBefore ¶

SetNotBefore gets a reference to the given time.Time and assigns it to the NotBefore field.

func (*ModelsCertificateStoreInventoryCertificates) SetSerialNumber ¶

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (*ModelsCertificateStoreInventoryCertificates) SetSigningAlgorithm ¶

func (o *ModelsCertificateStoreInventoryCertificates) SetSigningAlgorithm(v string)

SetSigningAlgorithm gets a reference to the given string and assigns it to the SigningAlgorithm field.

func (*ModelsCertificateStoreInventoryCertificates) SetThumbprint ¶

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (ModelsCertificateStoreInventoryCertificates) ToMap ¶

func (o ModelsCertificateStoreInventoryCertificates) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateStoreInventoryCertificates) UnmarshalJSON ¶

func (o *ModelsCertificateStoreInventoryCertificates) UnmarshalJSON(bytes []byte) (err error)

func (*ModelsCertificateStoreInventoryCertificates) UnsetIssuedDN ¶

UnsetIssuedDN ensures that no value is present for IssuedDN, not even an explicit nil

func (*ModelsCertificateStoreInventoryCertificates) UnsetIssuerDN ¶

UnsetIssuerDN ensures that no value is present for IssuerDN, not even an explicit nil

type ModelsCertificateStoreServerResponse ¶

type ModelsCertificateStoreServerResponse struct {
	Id                   *int32  `json:"Id,omitempty"`
	UseSSL               *bool   `json:"UseSSL,omitempty"`
	ServerType           *int32  `json:"ServerType,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateStoreServerResponse struct for ModelsCertificateStoreServerResponse

func NewModelsCertificateStoreServerResponse ¶

func NewModelsCertificateStoreServerResponse() *ModelsCertificateStoreServerResponse

NewModelsCertificateStoreServerResponse instantiates a new ModelsCertificateStoreServerResponse 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 NewModelsCertificateStoreServerResponseWithDefaults ¶

func NewModelsCertificateStoreServerResponseWithDefaults() *ModelsCertificateStoreServerResponse

NewModelsCertificateStoreServerResponseWithDefaults instantiates a new ModelsCertificateStoreServerResponse 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 (*ModelsCertificateStoreServerResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateStoreServerResponse) GetIdOk ¶

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 (*ModelsCertificateStoreServerResponse) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsCertificateStoreServerResponse) 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 (*ModelsCertificateStoreServerResponse) GetServerType ¶

func (o *ModelsCertificateStoreServerResponse) GetServerType() int32

GetServerType returns the ServerType field value if set, zero value otherwise.

func (*ModelsCertificateStoreServerResponse) GetServerTypeOk ¶

func (o *ModelsCertificateStoreServerResponse) GetServerTypeOk() (*int32, bool)

GetServerTypeOk returns a tuple with the ServerType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreServerResponse) GetUseSSL ¶

GetUseSSL returns the UseSSL field value if set, zero value otherwise.

func (*ModelsCertificateStoreServerResponse) GetUseSSLOk ¶

func (o *ModelsCertificateStoreServerResponse) GetUseSSLOk() (*bool, bool)

GetUseSSLOk returns a tuple with the UseSSL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreServerResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsCertificateStoreServerResponse) HasName ¶

HasName returns a boolean if a field has been set.

func (*ModelsCertificateStoreServerResponse) HasServerType ¶

func (o *ModelsCertificateStoreServerResponse) HasServerType() bool

HasServerType returns a boolean if a field has been set.

func (*ModelsCertificateStoreServerResponse) HasUseSSL ¶

HasUseSSL returns a boolean if a field has been set.

func (ModelsCertificateStoreServerResponse) MarshalJSON ¶

func (o ModelsCertificateStoreServerResponse) MarshalJSON() ([]byte, error)

func (*ModelsCertificateStoreServerResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsCertificateStoreServerResponse) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsCertificateStoreServerResponse) SetServerType ¶

func (o *ModelsCertificateStoreServerResponse) SetServerType(v int32)

SetServerType gets a reference to the given int32 and assigns it to the ServerType field.

func (*ModelsCertificateStoreServerResponse) SetUseSSL ¶

SetUseSSL gets a reference to the given bool and assigns it to the UseSSL field.

func (ModelsCertificateStoreServerResponse) ToMap ¶

func (o ModelsCertificateStoreServerResponse) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateStoreServerResponse) UnmarshalJSON ¶

func (o *ModelsCertificateStoreServerResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateStoreTypeProperty ¶

type ModelsCertificateStoreTypeProperty struct {
	StoreTypeId          *int32  `json:"StoreTypeId,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	Type                 *string `json:"Type,omitempty"`
	DependsOn            *string `json:"DependsOn,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	Required             *bool   `json:"Required,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateStoreTypeProperty struct for ModelsCertificateStoreTypeProperty

func NewModelsCertificateStoreTypeProperty ¶

func NewModelsCertificateStoreTypeProperty() *ModelsCertificateStoreTypeProperty

NewModelsCertificateStoreTypeProperty instantiates a new ModelsCertificateStoreTypeProperty 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 NewModelsCertificateStoreTypePropertyWithDefaults ¶

func NewModelsCertificateStoreTypePropertyWithDefaults() *ModelsCertificateStoreTypeProperty

NewModelsCertificateStoreTypePropertyWithDefaults instantiates a new ModelsCertificateStoreTypeProperty 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 (*ModelsCertificateStoreTypeProperty) GetDefaultValue ¶

func (o *ModelsCertificateStoreTypeProperty) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypeProperty) GetDefaultValueOk ¶

func (o *ModelsCertificateStoreTypeProperty) GetDefaultValueOk() (*string, bool)

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreTypeProperty) GetDependsOn ¶

func (o *ModelsCertificateStoreTypeProperty) GetDependsOn() string

GetDependsOn returns the DependsOn field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypeProperty) GetDependsOnOk ¶

func (o *ModelsCertificateStoreTypeProperty) GetDependsOnOk() (*string, bool)

GetDependsOnOk returns a tuple with the DependsOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreTypeProperty) GetDisplayName ¶

func (o *ModelsCertificateStoreTypeProperty) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypeProperty) GetDisplayNameOk ¶

func (o *ModelsCertificateStoreTypeProperty) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreTypeProperty) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypeProperty) GetNameOk ¶

func (o *ModelsCertificateStoreTypeProperty) 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 (*ModelsCertificateStoreTypeProperty) GetRequired ¶

func (o *ModelsCertificateStoreTypeProperty) GetRequired() bool

GetRequired returns the Required field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypeProperty) GetRequiredOk ¶

func (o *ModelsCertificateStoreTypeProperty) GetRequiredOk() (*bool, bool)

GetRequiredOk returns a tuple with the Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreTypeProperty) GetStoreTypeId ¶

func (o *ModelsCertificateStoreTypeProperty) GetStoreTypeId() int32

GetStoreTypeId returns the StoreTypeId field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypeProperty) GetStoreTypeIdOk ¶

func (o *ModelsCertificateStoreTypeProperty) GetStoreTypeIdOk() (*int32, bool)

GetStoreTypeIdOk returns a tuple with the StoreTypeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreTypeProperty) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypeProperty) GetTypeOk ¶

func (o *ModelsCertificateStoreTypeProperty) GetTypeOk() (*string, 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 (*ModelsCertificateStoreTypeProperty) HasDefaultValue ¶

func (o *ModelsCertificateStoreTypeProperty) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypeProperty) HasDependsOn ¶

func (o *ModelsCertificateStoreTypeProperty) HasDependsOn() bool

HasDependsOn returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypeProperty) HasDisplayName ¶

func (o *ModelsCertificateStoreTypeProperty) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypeProperty) HasName ¶

HasName returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypeProperty) HasRequired ¶

func (o *ModelsCertificateStoreTypeProperty) HasRequired() bool

HasRequired returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypeProperty) HasStoreTypeId ¶

func (o *ModelsCertificateStoreTypeProperty) HasStoreTypeId() bool

HasStoreTypeId returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypeProperty) HasType ¶

HasType returns a boolean if a field has been set.

func (ModelsCertificateStoreTypeProperty) MarshalJSON ¶

func (o ModelsCertificateStoreTypeProperty) MarshalJSON() ([]byte, error)

func (*ModelsCertificateStoreTypeProperty) SetDefaultValue ¶

func (o *ModelsCertificateStoreTypeProperty) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*ModelsCertificateStoreTypeProperty) SetDependsOn ¶

func (o *ModelsCertificateStoreTypeProperty) SetDependsOn(v string)

SetDependsOn gets a reference to the given string and assigns it to the DependsOn field.

func (*ModelsCertificateStoreTypeProperty) SetDisplayName ¶

func (o *ModelsCertificateStoreTypeProperty) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsCertificateStoreTypeProperty) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsCertificateStoreTypeProperty) SetRequired ¶

func (o *ModelsCertificateStoreTypeProperty) SetRequired(v bool)

SetRequired gets a reference to the given bool and assigns it to the Required field.

func (*ModelsCertificateStoreTypeProperty) SetStoreTypeId ¶

func (o *ModelsCertificateStoreTypeProperty) SetStoreTypeId(v int32)

SetStoreTypeId gets a reference to the given int32 and assigns it to the StoreTypeId field.

func (*ModelsCertificateStoreTypeProperty) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (ModelsCertificateStoreTypeProperty) ToMap ¶

func (o ModelsCertificateStoreTypeProperty) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateStoreTypeProperty) UnmarshalJSON ¶

func (o *ModelsCertificateStoreTypeProperty) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter ¶

type ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter struct {
	StoreTypeId          *int32           `json:"StoreTypeId,omitempty"`
	Name                 *string          `json:"Name,omitempty"`
	DisplayName          *string          `json:"DisplayName,omitempty"`
	Type                 *string          `json:"Type,omitempty"`
	RequiredWhen         *map[string]bool `json:"RequiredWhen,omitempty"`
	DependsOn            *string          `json:"DependsOn,omitempty"`
	DefaultValue         *string          `json:"DefaultValue,omitempty"`
	Options              *string          `json:"Options,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter struct for ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter

func NewModelsCertificateStoreTypesCertificateStoreTypeEntryParameter ¶

func NewModelsCertificateStoreTypesCertificateStoreTypeEntryParameter() *ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter

NewModelsCertificateStoreTypesCertificateStoreTypeEntryParameter instantiates a new ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter 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 NewModelsCertificateStoreTypesCertificateStoreTypeEntryParameterWithDefaults ¶

func NewModelsCertificateStoreTypesCertificateStoreTypeEntryParameterWithDefaults() *ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter

NewModelsCertificateStoreTypesCertificateStoreTypeEntryParameterWithDefaults instantiates a new ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter 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 (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetDefaultValue ¶

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetDefaultValueOk ¶

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetDependsOn ¶

GetDependsOn returns the DependsOn field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetDependsOnOk ¶

GetDependsOnOk returns a tuple with the DependsOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) 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 (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetOptions ¶

GetOptions returns the Options field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetOptionsOk ¶

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetRequiredWhen ¶

GetRequiredWhen returns the RequiredWhen field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetRequiredWhenOk ¶

GetRequiredWhenOk returns a tuple with the RequiredWhen field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetStoreTypeId ¶

GetStoreTypeId returns the StoreTypeId field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetStoreTypeIdOk ¶

GetStoreTypeIdOk returns a tuple with the StoreTypeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) GetTypeOk ¶

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 (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) HasDefaultValue ¶

HasDefaultValue returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) HasDependsOn ¶

HasDependsOn returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) HasName ¶

HasName returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) HasOptions ¶

HasOptions returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) HasRequiredWhen ¶

HasRequiredWhen returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) HasStoreTypeId ¶

HasStoreTypeId returns a boolean if a field has been set.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) HasType ¶

HasType returns a boolean if a field has been set.

func (ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) MarshalJSON ¶

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) SetDefaultValue ¶

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) SetDependsOn ¶

SetDependsOn gets a reference to the given string and assigns it to the DependsOn field.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) SetOptions ¶

SetOptions gets a reference to the given string and assigns it to the Options field.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) SetRequiredWhen ¶

SetRequiredWhen gets a reference to the given map[string]bool and assigns it to the RequiredWhen field.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) SetStoreTypeId ¶

SetStoreTypeId gets a reference to the given int32 and assigns it to the StoreTypeId field.

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) SetType ¶

SetType gets a reference to the given string and assigns it to the Type field.

func (ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) ToMap ¶

func (*ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) UnmarshalJSON ¶

type ModelsCertificateStoreUpdateServerRequest ¶

type ModelsCertificateStoreUpdateServerRequest struct {
	Id                   int32                    `json:"Id"`
	Username             ModelsKeyfactorAPISecret `json:"Username"`
	Password             ModelsKeyfactorAPISecret `json:"Password"`
	UseSSL               bool                     `json:"UseSSL"`
	Name                 string                   `json:"Name"`
	Container            *int32                   `json:"Container,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateStoreUpdateServerRequest struct for ModelsCertificateStoreUpdateServerRequest

func NewModelsCertificateStoreUpdateServerRequest ¶

func NewModelsCertificateStoreUpdateServerRequest(id int32, username ModelsKeyfactorAPISecret, password ModelsKeyfactorAPISecret, useSSL bool, name string) *ModelsCertificateStoreUpdateServerRequest

NewModelsCertificateStoreUpdateServerRequest instantiates a new ModelsCertificateStoreUpdateServerRequest 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 NewModelsCertificateStoreUpdateServerRequestWithDefaults ¶

func NewModelsCertificateStoreUpdateServerRequestWithDefaults() *ModelsCertificateStoreUpdateServerRequest

NewModelsCertificateStoreUpdateServerRequestWithDefaults instantiates a new ModelsCertificateStoreUpdateServerRequest 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 (*ModelsCertificateStoreUpdateServerRequest) GetContainer ¶

GetContainer returns the Container field value if set, zero value otherwise.

func (*ModelsCertificateStoreUpdateServerRequest) GetContainerOk ¶

func (o *ModelsCertificateStoreUpdateServerRequest) GetContainerOk() (*int32, bool)

GetContainerOk returns a tuple with the Container field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoreUpdateServerRequest) GetId ¶

GetId returns the Id field value

func (*ModelsCertificateStoreUpdateServerRequest) GetIdOk ¶

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ModelsCertificateStoreUpdateServerRequest) GetName ¶

GetName returns the Name field value

func (*ModelsCertificateStoreUpdateServerRequest) GetNameOk ¶

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ModelsCertificateStoreUpdateServerRequest) GetPassword ¶

GetPassword returns the Password field value

func (*ModelsCertificateStoreUpdateServerRequest) GetPasswordOk ¶

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*ModelsCertificateStoreUpdateServerRequest) GetUseSSL ¶

GetUseSSL returns the UseSSL field value

func (*ModelsCertificateStoreUpdateServerRequest) GetUseSSLOk ¶

GetUseSSLOk returns a tuple with the UseSSL field value and a boolean to check if the value has been set.

func (*ModelsCertificateStoreUpdateServerRequest) GetUsername ¶

GetUsername returns the Username field value

func (*ModelsCertificateStoreUpdateServerRequest) GetUsernameOk ¶

GetUsernameOk returns a tuple with the Username field value and a boolean to check if the value has been set.

func (*ModelsCertificateStoreUpdateServerRequest) HasContainer ¶

HasContainer returns a boolean if a field has been set.

func (ModelsCertificateStoreUpdateServerRequest) MarshalJSON ¶

func (*ModelsCertificateStoreUpdateServerRequest) SetContainer ¶

SetContainer gets a reference to the given int32 and assigns it to the Container field.

func (*ModelsCertificateStoreUpdateServerRequest) SetId ¶

SetId sets field value

func (*ModelsCertificateStoreUpdateServerRequest) SetName ¶

SetName sets field value

func (*ModelsCertificateStoreUpdateServerRequest) SetPassword ¶

SetPassword sets field value

func (*ModelsCertificateStoreUpdateServerRequest) SetUseSSL ¶

SetUseSSL sets field value

func (*ModelsCertificateStoreUpdateServerRequest) SetUsername ¶

SetUsername sets field value

func (ModelsCertificateStoreUpdateServerRequest) ToMap ¶

func (o ModelsCertificateStoreUpdateServerRequest) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateStoreUpdateServerRequest) UnmarshalJSON ¶

func (o *ModelsCertificateStoreUpdateServerRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateStoresCertificateStoreCreateRequest ¶

type ModelsCertificateStoresCertificateStoreCreateRequest struct {
	ContainerId          *int32                                      `json:"ContainerId,omitempty"`
	ClientMachine        *string                                     `json:"ClientMachine,omitempty"`
	Storepath            *string                                     `json:"Storepath,omitempty"`
	CertStoreType        *int32                                      `json:"CertStoreType,omitempty"`
	CreateIfMissing      *bool                                       `json:"CreateIfMissing,omitempty"`
	Properties           *string                                     `json:"Properties,omitempty"`
	AgentId              *string                                     `json:"AgentId,omitempty"`
	AgentAssigned        *bool                                       `json:"AgentAssigned,omitempty"`
	InventorySchedule    *KeyfactorCommonSchedulingKeyfactorSchedule `json:"InventorySchedule,omitempty"`
	Password             *ModelsKeyfactorAPISecret                   `json:"Password,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateStoresCertificateStoreCreateRequest struct for ModelsCertificateStoresCertificateStoreCreateRequest

func NewModelsCertificateStoresCertificateStoreCreateRequest ¶

func NewModelsCertificateStoresCertificateStoreCreateRequest() *ModelsCertificateStoresCertificateStoreCreateRequest

NewModelsCertificateStoresCertificateStoreCreateRequest instantiates a new ModelsCertificateStoresCertificateStoreCreateRequest 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 NewModelsCertificateStoresCertificateStoreCreateRequestWithDefaults ¶

func NewModelsCertificateStoresCertificateStoreCreateRequestWithDefaults() *ModelsCertificateStoresCertificateStoreCreateRequest

NewModelsCertificateStoresCertificateStoreCreateRequestWithDefaults instantiates a new ModelsCertificateStoresCertificateStoreCreateRequest 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 (*ModelsCertificateStoresCertificateStoreCreateRequest) GetAgentAssigned ¶

GetAgentAssigned returns the AgentAssigned field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetAgentAssignedOk ¶

GetAgentAssignedOk returns a tuple with the AgentAssigned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetAgentId ¶

GetAgentId returns the AgentId field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetAgentIdOk ¶

GetAgentIdOk returns a tuple with the AgentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetCertStoreType ¶

GetCertStoreType returns the CertStoreType field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetCertStoreTypeOk ¶

GetCertStoreTypeOk returns a tuple with the CertStoreType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetClientMachine ¶

GetClientMachine returns the ClientMachine field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetClientMachineOk ¶

GetClientMachineOk returns a tuple with the ClientMachine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetContainerId ¶

GetContainerId returns the ContainerId field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetContainerIdOk ¶

GetContainerIdOk returns a tuple with the ContainerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetCreateIfMissing ¶

GetCreateIfMissing returns the CreateIfMissing field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetCreateIfMissingOk ¶

func (o *ModelsCertificateStoresCertificateStoreCreateRequest) GetCreateIfMissingOk() (*bool, bool)

GetCreateIfMissingOk returns a tuple with the CreateIfMissing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetInventorySchedule ¶

GetInventorySchedule returns the InventorySchedule field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetInventoryScheduleOk ¶

GetInventoryScheduleOk returns a tuple with the InventorySchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetPassword ¶

GetPassword returns the Password field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetPasswordOk ¶

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 (*ModelsCertificateStoresCertificateStoreCreateRequest) GetProperties ¶

GetProperties returns the Properties field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetPropertiesOk ¶

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetStorepath ¶

GetStorepath returns the Storepath field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) GetStorepathOk ¶

GetStorepathOk returns a tuple with the Storepath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) HasAgentAssigned ¶

HasAgentAssigned returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) HasAgentId ¶

HasAgentId returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) HasCertStoreType ¶

HasCertStoreType returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) HasClientMachine ¶

HasClientMachine returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) HasContainerId ¶

HasContainerId returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) HasCreateIfMissing ¶

HasCreateIfMissing returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) HasInventorySchedule ¶

HasInventorySchedule returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) HasPassword ¶

HasPassword returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) HasProperties ¶

HasProperties returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) HasStorepath ¶

HasStorepath returns a boolean if a field has been set.

func (ModelsCertificateStoresCertificateStoreCreateRequest) MarshalJSON ¶

func (*ModelsCertificateStoresCertificateStoreCreateRequest) SetAgentAssigned ¶

SetAgentAssigned gets a reference to the given bool and assigns it to the AgentAssigned field.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) SetAgentId ¶

SetAgentId gets a reference to the given string and assigns it to the AgentId field.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) SetCertStoreType ¶

SetCertStoreType gets a reference to the given int32 and assigns it to the CertStoreType field.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) SetClientMachine ¶

SetClientMachine gets a reference to the given string and assigns it to the ClientMachine field.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) SetContainerId ¶

SetContainerId gets a reference to the given int32 and assigns it to the ContainerId field.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) SetCreateIfMissing ¶

SetCreateIfMissing gets a reference to the given bool and assigns it to the CreateIfMissing field.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) SetInventorySchedule ¶

SetInventorySchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the InventorySchedule field.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) SetPassword ¶

SetPassword gets a reference to the given ModelsKeyfactorAPISecret and assigns it to the Password field.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) SetProperties ¶

SetProperties gets a reference to the given string and assigns it to the Properties field.

func (*ModelsCertificateStoresCertificateStoreCreateRequest) SetStorepath ¶

SetStorepath gets a reference to the given string and assigns it to the Storepath field.

func (ModelsCertificateStoresCertificateStoreCreateRequest) ToMap ¶

func (*ModelsCertificateStoresCertificateStoreCreateRequest) UnmarshalJSON ¶

func (o *ModelsCertificateStoresCertificateStoreCreateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateStoresCertificateStoreUpdateRequest ¶

type ModelsCertificateStoresCertificateStoreUpdateRequest struct {
	Id                   *string                                     `json:"Id,omitempty"`
	ContainerId          *int32                                      `json:"ContainerId,omitempty"`
	CreateIfMissing      *bool                                       `json:"CreateIfMissing,omitempty"`
	Properties           *string                                     `json:"Properties,omitempty"`
	AgentId              *string                                     `json:"AgentId,omitempty"`
	InventorySchedule    *KeyfactorCommonSchedulingKeyfactorSchedule `json:"InventorySchedule,omitempty"`
	Password             *ModelsKeyfactorAPISecret                   `json:"Password,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateStoresCertificateStoreUpdateRequest struct for ModelsCertificateStoresCertificateStoreUpdateRequest

func NewModelsCertificateStoresCertificateStoreUpdateRequest ¶

func NewModelsCertificateStoresCertificateStoreUpdateRequest() *ModelsCertificateStoresCertificateStoreUpdateRequest

NewModelsCertificateStoresCertificateStoreUpdateRequest instantiates a new ModelsCertificateStoresCertificateStoreUpdateRequest 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 NewModelsCertificateStoresCertificateStoreUpdateRequestWithDefaults ¶

func NewModelsCertificateStoresCertificateStoreUpdateRequestWithDefaults() *ModelsCertificateStoresCertificateStoreUpdateRequest

NewModelsCertificateStoresCertificateStoreUpdateRequestWithDefaults instantiates a new ModelsCertificateStoresCertificateStoreUpdateRequest 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 (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetAgentId ¶

GetAgentId returns the AgentId field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetAgentIdOk ¶

GetAgentIdOk returns a tuple with the AgentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetContainerId ¶

GetContainerId returns the ContainerId field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetContainerIdOk ¶

GetContainerIdOk returns a tuple with the ContainerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetCreateIfMissing ¶

GetCreateIfMissing returns the CreateIfMissing field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetCreateIfMissingOk ¶

func (o *ModelsCertificateStoresCertificateStoreUpdateRequest) GetCreateIfMissingOk() (*bool, bool)

GetCreateIfMissingOk returns a tuple with the CreateIfMissing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetIdOk ¶

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 (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetInventorySchedule ¶

GetInventorySchedule returns the InventorySchedule field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetInventoryScheduleOk ¶

GetInventoryScheduleOk returns a tuple with the InventorySchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetPassword ¶

GetPassword returns the Password field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetPasswordOk ¶

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 (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetProperties ¶

GetProperties returns the Properties field value if set, zero value otherwise.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) GetPropertiesOk ¶

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) HasAgentId ¶

HasAgentId returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) HasContainerId ¶

HasContainerId returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) HasCreateIfMissing ¶

HasCreateIfMissing returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) HasInventorySchedule ¶

HasInventorySchedule returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) HasPassword ¶

HasPassword returns a boolean if a field has been set.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) HasProperties ¶

HasProperties returns a boolean if a field has been set.

func (ModelsCertificateStoresCertificateStoreUpdateRequest) MarshalJSON ¶

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) SetAgentId ¶

SetAgentId gets a reference to the given string and assigns it to the AgentId field.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) SetContainerId ¶

SetContainerId gets a reference to the given int32 and assigns it to the ContainerId field.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) SetCreateIfMissing ¶

SetCreateIfMissing gets a reference to the given bool and assigns it to the CreateIfMissing field.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) SetInventorySchedule ¶

SetInventorySchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the InventorySchedule field.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) SetPassword ¶

SetPassword gets a reference to the given ModelsKeyfactorAPISecret and assigns it to the Password field.

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) SetProperties ¶

SetProperties gets a reference to the given string and assigns it to the Properties field.

func (ModelsCertificateStoresCertificateStoreUpdateRequest) ToMap ¶

func (*ModelsCertificateStoresCertificateStoreUpdateRequest) UnmarshalJSON ¶

func (o *ModelsCertificateStoresCertificateStoreUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsCertificateValidationResponse ¶

type ModelsCertificateValidationResponse struct {
	// States whether the certificate is valid or not
	Valid *bool `json:"Valid,omitempty"`
	// Lists any reasons why the certificate is not valid
	Results              *map[string]string `json:"Results,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCertificateValidationResponse struct for ModelsCertificateValidationResponse

func NewModelsCertificateValidationResponse ¶

func NewModelsCertificateValidationResponse() *ModelsCertificateValidationResponse

NewModelsCertificateValidationResponse instantiates a new ModelsCertificateValidationResponse 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 NewModelsCertificateValidationResponseWithDefaults ¶

func NewModelsCertificateValidationResponseWithDefaults() *ModelsCertificateValidationResponse

NewModelsCertificateValidationResponseWithDefaults instantiates a new ModelsCertificateValidationResponse 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 (*ModelsCertificateValidationResponse) GetResults ¶

GetResults returns the Results field value if set, zero value otherwise.

func (*ModelsCertificateValidationResponse) GetResultsOk ¶

func (o *ModelsCertificateValidationResponse) GetResultsOk() (*map[string]string, bool)

GetResultsOk returns a tuple with the Results field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateValidationResponse) GetValid ¶

GetValid returns the Valid field value if set, zero value otherwise.

func (*ModelsCertificateValidationResponse) GetValidOk ¶

func (o *ModelsCertificateValidationResponse) GetValidOk() (*bool, bool)

GetValidOk returns a tuple with the Valid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCertificateValidationResponse) HasResults ¶

func (o *ModelsCertificateValidationResponse) HasResults() bool

HasResults returns a boolean if a field has been set.

func (*ModelsCertificateValidationResponse) HasValid ¶

HasValid returns a boolean if a field has been set.

func (ModelsCertificateValidationResponse) MarshalJSON ¶

func (o ModelsCertificateValidationResponse) MarshalJSON() ([]byte, error)

func (*ModelsCertificateValidationResponse) SetResults ¶

func (o *ModelsCertificateValidationResponse) SetResults(v map[string]string)

SetResults gets a reference to the given map[string]string and assigns it to the Results field.

func (*ModelsCertificateValidationResponse) SetValid ¶

SetValid gets a reference to the given bool and assigns it to the Valid field.

func (ModelsCertificateValidationResponse) ToMap ¶

func (o ModelsCertificateValidationResponse) ToMap() (map[string]interface{}, error)

func (*ModelsCertificateValidationResponse) UnmarshalJSON ¶

func (o *ModelsCertificateValidationResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsCollectionRolePermissions ¶

type ModelsCollectionRolePermissions struct {
	RoleId               *int32   `json:"RoleId,omitempty"`
	Permissions          []string `json:"Permissions,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCollectionRolePermissions struct for ModelsCollectionRolePermissions

func NewModelsCollectionRolePermissions ¶

func NewModelsCollectionRolePermissions() *ModelsCollectionRolePermissions

NewModelsCollectionRolePermissions instantiates a new ModelsCollectionRolePermissions 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 NewModelsCollectionRolePermissionsWithDefaults ¶

func NewModelsCollectionRolePermissionsWithDefaults() *ModelsCollectionRolePermissions

NewModelsCollectionRolePermissionsWithDefaults instantiates a new ModelsCollectionRolePermissions 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 (*ModelsCollectionRolePermissions) GetPermissions ¶

func (o *ModelsCollectionRolePermissions) GetPermissions() []string

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*ModelsCollectionRolePermissions) GetPermissionsOk ¶

func (o *ModelsCollectionRolePermissions) GetPermissionsOk() ([]string, bool)

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCollectionRolePermissions) GetRoleId ¶

func (o *ModelsCollectionRolePermissions) GetRoleId() int32

GetRoleId returns the RoleId field value if set, zero value otherwise.

func (*ModelsCollectionRolePermissions) GetRoleIdOk ¶

func (o *ModelsCollectionRolePermissions) GetRoleIdOk() (*int32, bool)

GetRoleIdOk returns a tuple with the RoleId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCollectionRolePermissions) HasPermissions ¶

func (o *ModelsCollectionRolePermissions) HasPermissions() bool

HasPermissions returns a boolean if a field has been set.

func (*ModelsCollectionRolePermissions) HasRoleId ¶

func (o *ModelsCollectionRolePermissions) HasRoleId() bool

HasRoleId returns a boolean if a field has been set.

func (ModelsCollectionRolePermissions) MarshalJSON ¶

func (o ModelsCollectionRolePermissions) MarshalJSON() ([]byte, error)

func (*ModelsCollectionRolePermissions) SetPermissions ¶

func (o *ModelsCollectionRolePermissions) SetPermissions(v []string)

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (*ModelsCollectionRolePermissions) SetRoleId ¶

func (o *ModelsCollectionRolePermissions) SetRoleId(v int32)

SetRoleId gets a reference to the given int32 and assigns it to the RoleId field.

func (ModelsCollectionRolePermissions) ToMap ¶

func (o ModelsCollectionRolePermissions) ToMap() (map[string]interface{}, error)

func (*ModelsCollectionRolePermissions) UnmarshalJSON ¶

func (o *ModelsCollectionRolePermissions) UnmarshalJSON(bytes []byte) (err error)

type ModelsContainerAssignment ¶

type ModelsContainerAssignment struct {
	CertStoreContainerId *int32   `json:"CertStoreContainerId,omitempty"`
	NewContainerName     *string  `json:"NewContainerName,omitempty"`
	NewContainerType     *int32   `json:"NewContainerType,omitempty"`
	KeystoreIds          []string `json:"KeystoreIds"`
	AdditionalProperties map[string]interface{}
}

ModelsContainerAssignment struct for ModelsContainerAssignment

func NewModelsContainerAssignment ¶

func NewModelsContainerAssignment(keystoreIds []string) *ModelsContainerAssignment

NewModelsContainerAssignment instantiates a new ModelsContainerAssignment 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 NewModelsContainerAssignmentWithDefaults ¶

func NewModelsContainerAssignmentWithDefaults() *ModelsContainerAssignment

NewModelsContainerAssignmentWithDefaults instantiates a new ModelsContainerAssignment 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 (*ModelsContainerAssignment) GetCertStoreContainerId ¶

func (o *ModelsContainerAssignment) GetCertStoreContainerId() int32

GetCertStoreContainerId returns the CertStoreContainerId field value if set, zero value otherwise.

func (*ModelsContainerAssignment) GetCertStoreContainerIdOk ¶

func (o *ModelsContainerAssignment) GetCertStoreContainerIdOk() (*int32, bool)

GetCertStoreContainerIdOk returns a tuple with the CertStoreContainerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsContainerAssignment) GetKeystoreIds ¶

func (o *ModelsContainerAssignment) GetKeystoreIds() []string

GetKeystoreIds returns the KeystoreIds field value

func (*ModelsContainerAssignment) GetKeystoreIdsOk ¶

func (o *ModelsContainerAssignment) GetKeystoreIdsOk() ([]string, bool)

GetKeystoreIdsOk returns a tuple with the KeystoreIds field value and a boolean to check if the value has been set.

func (*ModelsContainerAssignment) GetNewContainerName ¶

func (o *ModelsContainerAssignment) GetNewContainerName() string

GetNewContainerName returns the NewContainerName field value if set, zero value otherwise.

func (*ModelsContainerAssignment) GetNewContainerNameOk ¶

func (o *ModelsContainerAssignment) GetNewContainerNameOk() (*string, bool)

GetNewContainerNameOk returns a tuple with the NewContainerName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsContainerAssignment) GetNewContainerType ¶

func (o *ModelsContainerAssignment) GetNewContainerType() int32

GetNewContainerType returns the NewContainerType field value if set, zero value otherwise.

func (*ModelsContainerAssignment) GetNewContainerTypeOk ¶

func (o *ModelsContainerAssignment) GetNewContainerTypeOk() (*int32, bool)

GetNewContainerTypeOk returns a tuple with the NewContainerType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsContainerAssignment) HasCertStoreContainerId ¶

func (o *ModelsContainerAssignment) HasCertStoreContainerId() bool

HasCertStoreContainerId returns a boolean if a field has been set.

func (*ModelsContainerAssignment) HasNewContainerName ¶

func (o *ModelsContainerAssignment) HasNewContainerName() bool

HasNewContainerName returns a boolean if a field has been set.

func (*ModelsContainerAssignment) HasNewContainerType ¶

func (o *ModelsContainerAssignment) HasNewContainerType() bool

HasNewContainerType returns a boolean if a field has been set.

func (ModelsContainerAssignment) MarshalJSON ¶

func (o ModelsContainerAssignment) MarshalJSON() ([]byte, error)

func (*ModelsContainerAssignment) SetCertStoreContainerId ¶

func (o *ModelsContainerAssignment) SetCertStoreContainerId(v int32)

SetCertStoreContainerId gets a reference to the given int32 and assigns it to the CertStoreContainerId field.

func (*ModelsContainerAssignment) SetKeystoreIds ¶

func (o *ModelsContainerAssignment) SetKeystoreIds(v []string)

SetKeystoreIds sets field value

func (*ModelsContainerAssignment) SetNewContainerName ¶

func (o *ModelsContainerAssignment) SetNewContainerName(v string)

SetNewContainerName gets a reference to the given string and assigns it to the NewContainerName field.

func (*ModelsContainerAssignment) SetNewContainerType ¶

func (o *ModelsContainerAssignment) SetNewContainerType(v int32)

SetNewContainerType gets a reference to the given int32 and assigns it to the NewContainerType field.

func (ModelsContainerAssignment) ToMap ¶

func (o ModelsContainerAssignment) ToMap() (map[string]interface{}, error)

func (*ModelsContainerAssignment) UnmarshalJSON ¶

func (o *ModelsContainerAssignment) UnmarshalJSON(bytes []byte) (err error)

type ModelsCustomReport ¶

type ModelsCustomReport struct {
	CustomURL            *string `json:"CustomURL,omitempty"`
	Id                   *int32  `json:"Id,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	Description          *string `json:"Description,omitempty"`
	InNavigator          *bool   `json:"InNavigator,omitempty"`
	Favorite             *bool   `json:"Favorite,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCustomReport The CustomReport can be used to create and update a custom report.

func NewModelsCustomReport ¶

func NewModelsCustomReport() *ModelsCustomReport

NewModelsCustomReport instantiates a new ModelsCustomReport 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 NewModelsCustomReportWithDefaults ¶

func NewModelsCustomReportWithDefaults() *ModelsCustomReport

NewModelsCustomReportWithDefaults instantiates a new ModelsCustomReport 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 (*ModelsCustomReport) GetCustomURL ¶

func (o *ModelsCustomReport) GetCustomURL() string

GetCustomURL returns the CustomURL field value if set, zero value otherwise.

func (*ModelsCustomReport) GetCustomURLOk ¶

func (o *ModelsCustomReport) GetCustomURLOk() (*string, bool)

GetCustomURLOk returns a tuple with the CustomURL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCustomReport) GetDescription ¶

func (o *ModelsCustomReport) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelsCustomReport) GetDescriptionOk ¶

func (o *ModelsCustomReport) 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 (*ModelsCustomReport) GetDisplayName ¶

func (o *ModelsCustomReport) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsCustomReport) GetDisplayNameOk ¶

func (o *ModelsCustomReport) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCustomReport) GetFavorite ¶

func (o *ModelsCustomReport) GetFavorite() bool

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*ModelsCustomReport) GetFavoriteOk ¶

func (o *ModelsCustomReport) GetFavoriteOk() (*bool, bool)

GetFavoriteOk returns a tuple with the Favorite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCustomReport) GetId ¶

func (o *ModelsCustomReport) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsCustomReport) GetIdOk ¶

func (o *ModelsCustomReport) 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 (*ModelsCustomReport) GetInNavigator ¶

func (o *ModelsCustomReport) GetInNavigator() bool

GetInNavigator returns the InNavigator field value if set, zero value otherwise.

func (*ModelsCustomReport) GetInNavigatorOk ¶

func (o *ModelsCustomReport) GetInNavigatorOk() (*bool, bool)

GetInNavigatorOk returns a tuple with the InNavigator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCustomReport) HasCustomURL ¶

func (o *ModelsCustomReport) HasCustomURL() bool

HasCustomURL returns a boolean if a field has been set.

func (*ModelsCustomReport) HasDescription ¶

func (o *ModelsCustomReport) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelsCustomReport) HasDisplayName ¶

func (o *ModelsCustomReport) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ModelsCustomReport) HasFavorite ¶

func (o *ModelsCustomReport) HasFavorite() bool

HasFavorite returns a boolean if a field has been set.

func (*ModelsCustomReport) HasId ¶

func (o *ModelsCustomReport) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsCustomReport) HasInNavigator ¶

func (o *ModelsCustomReport) HasInNavigator() bool

HasInNavigator returns a boolean if a field has been set.

func (ModelsCustomReport) MarshalJSON ¶

func (o ModelsCustomReport) MarshalJSON() ([]byte, error)

func (*ModelsCustomReport) SetCustomURL ¶

func (o *ModelsCustomReport) SetCustomURL(v string)

SetCustomURL gets a reference to the given string and assigns it to the CustomURL field.

func (*ModelsCustomReport) SetDescription ¶

func (o *ModelsCustomReport) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelsCustomReport) SetDisplayName ¶

func (o *ModelsCustomReport) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsCustomReport) SetFavorite ¶

func (o *ModelsCustomReport) SetFavorite(v bool)

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*ModelsCustomReport) SetId ¶

func (o *ModelsCustomReport) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsCustomReport) SetInNavigator ¶

func (o *ModelsCustomReport) SetInNavigator(v bool)

SetInNavigator gets a reference to the given bool and assigns it to the InNavigator field.

func (ModelsCustomReport) ToMap ¶

func (o ModelsCustomReport) ToMap() (map[string]interface{}, error)

func (*ModelsCustomReport) UnmarshalJSON ¶

func (o *ModelsCustomReport) UnmarshalJSON(bytes []byte) (err error)

type ModelsCustomReportCreationRequest ¶

type ModelsCustomReportCreationRequest struct {
	CustomURL            string `json:"CustomURL"`
	DisplayName          string `json:"DisplayName"`
	Description          string `json:"Description"`
	InNavigator          *bool  `json:"InNavigator,omitempty"`
	Favorite             *bool  `json:"Favorite,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCustomReportCreationRequest The CustomReport can be used to create and update a custom report.

func NewModelsCustomReportCreationRequest ¶

func NewModelsCustomReportCreationRequest(customURL string, displayName string, description string) *ModelsCustomReportCreationRequest

NewModelsCustomReportCreationRequest instantiates a new ModelsCustomReportCreationRequest 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 NewModelsCustomReportCreationRequestWithDefaults ¶

func NewModelsCustomReportCreationRequestWithDefaults() *ModelsCustomReportCreationRequest

NewModelsCustomReportCreationRequestWithDefaults instantiates a new ModelsCustomReportCreationRequest 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 (*ModelsCustomReportCreationRequest) GetCustomURL ¶

func (o *ModelsCustomReportCreationRequest) GetCustomURL() string

GetCustomURL returns the CustomURL field value

func (*ModelsCustomReportCreationRequest) GetCustomURLOk ¶

func (o *ModelsCustomReportCreationRequest) GetCustomURLOk() (*string, bool)

GetCustomURLOk returns a tuple with the CustomURL field value and a boolean to check if the value has been set.

func (*ModelsCustomReportCreationRequest) GetDescription ¶

func (o *ModelsCustomReportCreationRequest) GetDescription() string

GetDescription returns the Description field value

func (*ModelsCustomReportCreationRequest) GetDescriptionOk ¶

func (o *ModelsCustomReportCreationRequest) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*ModelsCustomReportCreationRequest) GetDisplayName ¶

func (o *ModelsCustomReportCreationRequest) GetDisplayName() string

GetDisplayName returns the DisplayName field value

func (*ModelsCustomReportCreationRequest) GetDisplayNameOk ¶

func (o *ModelsCustomReportCreationRequest) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value and a boolean to check if the value has been set.

func (*ModelsCustomReportCreationRequest) GetFavorite ¶

func (o *ModelsCustomReportCreationRequest) GetFavorite() bool

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*ModelsCustomReportCreationRequest) GetFavoriteOk ¶

func (o *ModelsCustomReportCreationRequest) GetFavoriteOk() (*bool, bool)

GetFavoriteOk returns a tuple with the Favorite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCustomReportCreationRequest) GetInNavigator ¶

func (o *ModelsCustomReportCreationRequest) GetInNavigator() bool

GetInNavigator returns the InNavigator field value if set, zero value otherwise.

func (*ModelsCustomReportCreationRequest) GetInNavigatorOk ¶

func (o *ModelsCustomReportCreationRequest) GetInNavigatorOk() (*bool, bool)

GetInNavigatorOk returns a tuple with the InNavigator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCustomReportCreationRequest) HasFavorite ¶

func (o *ModelsCustomReportCreationRequest) HasFavorite() bool

HasFavorite returns a boolean if a field has been set.

func (*ModelsCustomReportCreationRequest) HasInNavigator ¶

func (o *ModelsCustomReportCreationRequest) HasInNavigator() bool

HasInNavigator returns a boolean if a field has been set.

func (ModelsCustomReportCreationRequest) MarshalJSON ¶

func (o ModelsCustomReportCreationRequest) MarshalJSON() ([]byte, error)

func (*ModelsCustomReportCreationRequest) SetCustomURL ¶

func (o *ModelsCustomReportCreationRequest) SetCustomURL(v string)

SetCustomURL sets field value

func (*ModelsCustomReportCreationRequest) SetDescription ¶

func (o *ModelsCustomReportCreationRequest) SetDescription(v string)

SetDescription sets field value

func (*ModelsCustomReportCreationRequest) SetDisplayName ¶

func (o *ModelsCustomReportCreationRequest) SetDisplayName(v string)

SetDisplayName sets field value

func (*ModelsCustomReportCreationRequest) SetFavorite ¶

func (o *ModelsCustomReportCreationRequest) SetFavorite(v bool)

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*ModelsCustomReportCreationRequest) SetInNavigator ¶

func (o *ModelsCustomReportCreationRequest) SetInNavigator(v bool)

SetInNavigator gets a reference to the given bool and assigns it to the InNavigator field.

func (ModelsCustomReportCreationRequest) ToMap ¶

func (o ModelsCustomReportCreationRequest) ToMap() (map[string]interface{}, error)

func (*ModelsCustomReportCreationRequest) UnmarshalJSON ¶

func (o *ModelsCustomReportCreationRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsCustomReportUpdateRequest ¶

type ModelsCustomReportUpdateRequest struct {
	CustomURL            *string `json:"CustomURL,omitempty"`
	Id                   int32   `json:"Id"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	Description          *string `json:"Description,omitempty"`
	InNavigator          *bool   `json:"InNavigator,omitempty"`
	Favorite             *bool   `json:"Favorite,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsCustomReportUpdateRequest The CustomReport can be used to create and update a custom report.

func NewModelsCustomReportUpdateRequest ¶

func NewModelsCustomReportUpdateRequest(id int32) *ModelsCustomReportUpdateRequest

NewModelsCustomReportUpdateRequest instantiates a new ModelsCustomReportUpdateRequest 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 NewModelsCustomReportUpdateRequestWithDefaults ¶

func NewModelsCustomReportUpdateRequestWithDefaults() *ModelsCustomReportUpdateRequest

NewModelsCustomReportUpdateRequestWithDefaults instantiates a new ModelsCustomReportUpdateRequest 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 (*ModelsCustomReportUpdateRequest) GetCustomURL ¶

func (o *ModelsCustomReportUpdateRequest) GetCustomURL() string

GetCustomURL returns the CustomURL field value if set, zero value otherwise.

func (*ModelsCustomReportUpdateRequest) GetCustomURLOk ¶

func (o *ModelsCustomReportUpdateRequest) GetCustomURLOk() (*string, bool)

GetCustomURLOk returns a tuple with the CustomURL field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCustomReportUpdateRequest) GetDescription ¶

func (o *ModelsCustomReportUpdateRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelsCustomReportUpdateRequest) GetDescriptionOk ¶

func (o *ModelsCustomReportUpdateRequest) 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 (*ModelsCustomReportUpdateRequest) GetDisplayName ¶

func (o *ModelsCustomReportUpdateRequest) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsCustomReportUpdateRequest) GetDisplayNameOk ¶

func (o *ModelsCustomReportUpdateRequest) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCustomReportUpdateRequest) GetFavorite ¶

func (o *ModelsCustomReportUpdateRequest) GetFavorite() bool

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*ModelsCustomReportUpdateRequest) GetFavoriteOk ¶

func (o *ModelsCustomReportUpdateRequest) GetFavoriteOk() (*bool, bool)

GetFavoriteOk returns a tuple with the Favorite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCustomReportUpdateRequest) GetId ¶

GetId returns the Id field value

func (*ModelsCustomReportUpdateRequest) GetIdOk ¶

func (o *ModelsCustomReportUpdateRequest) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ModelsCustomReportUpdateRequest) GetInNavigator ¶

func (o *ModelsCustomReportUpdateRequest) GetInNavigator() bool

GetInNavigator returns the InNavigator field value if set, zero value otherwise.

func (*ModelsCustomReportUpdateRequest) GetInNavigatorOk ¶

func (o *ModelsCustomReportUpdateRequest) GetInNavigatorOk() (*bool, bool)

GetInNavigatorOk returns a tuple with the InNavigator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsCustomReportUpdateRequest) HasCustomURL ¶

func (o *ModelsCustomReportUpdateRequest) HasCustomURL() bool

HasCustomURL returns a boolean if a field has been set.

func (*ModelsCustomReportUpdateRequest) HasDescription ¶

func (o *ModelsCustomReportUpdateRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelsCustomReportUpdateRequest) HasDisplayName ¶

func (o *ModelsCustomReportUpdateRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ModelsCustomReportUpdateRequest) HasFavorite ¶

func (o *ModelsCustomReportUpdateRequest) HasFavorite() bool

HasFavorite returns a boolean if a field has been set.

func (*ModelsCustomReportUpdateRequest) HasInNavigator ¶

func (o *ModelsCustomReportUpdateRequest) HasInNavigator() bool

HasInNavigator returns a boolean if a field has been set.

func (ModelsCustomReportUpdateRequest) MarshalJSON ¶

func (o ModelsCustomReportUpdateRequest) MarshalJSON() ([]byte, error)

func (*ModelsCustomReportUpdateRequest) SetCustomURL ¶

func (o *ModelsCustomReportUpdateRequest) SetCustomURL(v string)

SetCustomURL gets a reference to the given string and assigns it to the CustomURL field.

func (*ModelsCustomReportUpdateRequest) SetDescription ¶

func (o *ModelsCustomReportUpdateRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelsCustomReportUpdateRequest) SetDisplayName ¶

func (o *ModelsCustomReportUpdateRequest) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsCustomReportUpdateRequest) SetFavorite ¶

func (o *ModelsCustomReportUpdateRequest) SetFavorite(v bool)

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*ModelsCustomReportUpdateRequest) SetId ¶

SetId sets field value

func (*ModelsCustomReportUpdateRequest) SetInNavigator ¶

func (o *ModelsCustomReportUpdateRequest) SetInNavigator(v bool)

SetInNavigator gets a reference to the given bool and assigns it to the InNavigator field.

func (ModelsCustomReportUpdateRequest) ToMap ¶

func (o ModelsCustomReportUpdateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsCustomReportUpdateRequest) UnmarshalJSON ¶

func (o *ModelsCustomReportUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsDiscoveryJobRequest ¶

type ModelsDiscoveryJobRequest struct {
	ClientMachine         *string                   `json:"ClientMachine,omitempty"`
	AgentId               *string                   `json:"AgentId,omitempty"`
	Type                  int32                     `json:"Type"`
	JobExecutionTimestamp *time.Time                `json:"JobExecutionTimestamp,omitempty"`
	Dirs                  *string                   `json:"Dirs,omitempty"`
	IgnoredDirs           *string                   `json:"IgnoredDirs,omitempty"`
	Extensions            *string                   `json:"Extensions,omitempty"`
	NamePatterns          *string                   `json:"NamePatterns,omitempty"`
	SymLinks              *bool                     `json:"SymLinks,omitempty"`
	Compatibility         *bool                     `json:"Compatibility,omitempty"`
	ServerUsername        *ModelsKeyfactorAPISecret `json:"ServerUsername,omitempty"`
	ServerPassword        *ModelsKeyfactorAPISecret `json:"ServerPassword,omitempty"`
	ServerUseSsl          *bool                     `json:"ServerUseSsl,omitempty"`
	AdditionalProperties  map[string]interface{}
}

ModelsDiscoveryJobRequest struct for ModelsDiscoveryJobRequest

func NewModelsDiscoveryJobRequest ¶

func NewModelsDiscoveryJobRequest(type_ int32) *ModelsDiscoveryJobRequest

NewModelsDiscoveryJobRequest instantiates a new ModelsDiscoveryJobRequest 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 NewModelsDiscoveryJobRequestWithDefaults ¶

func NewModelsDiscoveryJobRequestWithDefaults() *ModelsDiscoveryJobRequest

NewModelsDiscoveryJobRequestWithDefaults instantiates a new ModelsDiscoveryJobRequest 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 (*ModelsDiscoveryJobRequest) GetAgentId ¶

func (o *ModelsDiscoveryJobRequest) GetAgentId() string

GetAgentId returns the AgentId field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetAgentIdOk ¶

func (o *ModelsDiscoveryJobRequest) GetAgentIdOk() (*string, bool)

GetAgentIdOk returns a tuple with the AgentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) GetClientMachine ¶

func (o *ModelsDiscoveryJobRequest) GetClientMachine() string

GetClientMachine returns the ClientMachine field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetClientMachineOk ¶

func (o *ModelsDiscoveryJobRequest) GetClientMachineOk() (*string, bool)

GetClientMachineOk returns a tuple with the ClientMachine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) GetCompatibility ¶

func (o *ModelsDiscoveryJobRequest) GetCompatibility() bool

GetCompatibility returns the Compatibility field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetCompatibilityOk ¶

func (o *ModelsDiscoveryJobRequest) GetCompatibilityOk() (*bool, bool)

GetCompatibilityOk returns a tuple with the Compatibility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) GetDirs ¶

func (o *ModelsDiscoveryJobRequest) GetDirs() string

GetDirs returns the Dirs field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetDirsOk ¶

func (o *ModelsDiscoveryJobRequest) GetDirsOk() (*string, bool)

GetDirsOk returns a tuple with the Dirs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) GetExtensions ¶

func (o *ModelsDiscoveryJobRequest) GetExtensions() string

GetExtensions returns the Extensions field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetExtensionsOk ¶

func (o *ModelsDiscoveryJobRequest) GetExtensionsOk() (*string, bool)

GetExtensionsOk returns a tuple with the Extensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) GetIgnoredDirs ¶

func (o *ModelsDiscoveryJobRequest) GetIgnoredDirs() string

GetIgnoredDirs returns the IgnoredDirs field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetIgnoredDirsOk ¶

func (o *ModelsDiscoveryJobRequest) GetIgnoredDirsOk() (*string, bool)

GetIgnoredDirsOk returns a tuple with the IgnoredDirs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) GetJobExecutionTimestamp ¶

func (o *ModelsDiscoveryJobRequest) GetJobExecutionTimestamp() time.Time

GetJobExecutionTimestamp returns the JobExecutionTimestamp field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetJobExecutionTimestampOk ¶

func (o *ModelsDiscoveryJobRequest) GetJobExecutionTimestampOk() (*time.Time, bool)

GetJobExecutionTimestampOk returns a tuple with the JobExecutionTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) GetNamePatterns ¶

func (o *ModelsDiscoveryJobRequest) GetNamePatterns() string

GetNamePatterns returns the NamePatterns field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetNamePatternsOk ¶

func (o *ModelsDiscoveryJobRequest) GetNamePatternsOk() (*string, bool)

GetNamePatternsOk returns a tuple with the NamePatterns field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) GetServerPassword ¶

func (o *ModelsDiscoveryJobRequest) GetServerPassword() ModelsKeyfactorAPISecret

GetServerPassword returns the ServerPassword field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetServerPasswordOk ¶

func (o *ModelsDiscoveryJobRequest) GetServerPasswordOk() (*ModelsKeyfactorAPISecret, bool)

GetServerPasswordOk returns a tuple with the ServerPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) GetServerUseSsl ¶

func (o *ModelsDiscoveryJobRequest) GetServerUseSsl() bool

GetServerUseSsl returns the ServerUseSsl field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetServerUseSslOk ¶

func (o *ModelsDiscoveryJobRequest) GetServerUseSslOk() (*bool, bool)

GetServerUseSslOk returns a tuple with the ServerUseSsl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) GetServerUsername ¶

func (o *ModelsDiscoveryJobRequest) GetServerUsername() ModelsKeyfactorAPISecret

GetServerUsername returns the ServerUsername field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetServerUsernameOk ¶

func (o *ModelsDiscoveryJobRequest) GetServerUsernameOk() (*ModelsKeyfactorAPISecret, bool)

GetServerUsernameOk returns a tuple with the ServerUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ModelsDiscoveryJobRequest) GetSymLinks() bool

GetSymLinks returns the SymLinks field value if set, zero value otherwise.

func (*ModelsDiscoveryJobRequest) GetSymLinksOk ¶

func (o *ModelsDiscoveryJobRequest) GetSymLinksOk() (*bool, bool)

GetSymLinksOk returns a tuple with the SymLinks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) GetType ¶

func (o *ModelsDiscoveryJobRequest) GetType() int32

GetType returns the Type field value

func (*ModelsDiscoveryJobRequest) GetTypeOk ¶

func (o *ModelsDiscoveryJobRequest) GetTypeOk() (*int32, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*ModelsDiscoveryJobRequest) HasAgentId ¶

func (o *ModelsDiscoveryJobRequest) HasAgentId() bool

HasAgentId returns a boolean if a field has been set.

func (*ModelsDiscoveryJobRequest) HasClientMachine ¶

func (o *ModelsDiscoveryJobRequest) HasClientMachine() bool

HasClientMachine returns a boolean if a field has been set.

func (*ModelsDiscoveryJobRequest) HasCompatibility ¶

func (o *ModelsDiscoveryJobRequest) HasCompatibility() bool

HasCompatibility returns a boolean if a field has been set.

func (*ModelsDiscoveryJobRequest) HasDirs ¶

func (o *ModelsDiscoveryJobRequest) HasDirs() bool

HasDirs returns a boolean if a field has been set.

func (*ModelsDiscoveryJobRequest) HasExtensions ¶

func (o *ModelsDiscoveryJobRequest) HasExtensions() bool

HasExtensions returns a boolean if a field has been set.

func (*ModelsDiscoveryJobRequest) HasIgnoredDirs ¶

func (o *ModelsDiscoveryJobRequest) HasIgnoredDirs() bool

HasIgnoredDirs returns a boolean if a field has been set.

func (*ModelsDiscoveryJobRequest) HasJobExecutionTimestamp ¶

func (o *ModelsDiscoveryJobRequest) HasJobExecutionTimestamp() bool

HasJobExecutionTimestamp returns a boolean if a field has been set.

func (*ModelsDiscoveryJobRequest) HasNamePatterns ¶

func (o *ModelsDiscoveryJobRequest) HasNamePatterns() bool

HasNamePatterns returns a boolean if a field has been set.

func (*ModelsDiscoveryJobRequest) HasServerPassword ¶

func (o *ModelsDiscoveryJobRequest) HasServerPassword() bool

HasServerPassword returns a boolean if a field has been set.

func (*ModelsDiscoveryJobRequest) HasServerUseSsl ¶

func (o *ModelsDiscoveryJobRequest) HasServerUseSsl() bool

HasServerUseSsl returns a boolean if a field has been set.

func (*ModelsDiscoveryJobRequest) HasServerUsername ¶

func (o *ModelsDiscoveryJobRequest) HasServerUsername() bool

HasServerUsername returns a boolean if a field has been set.

func (o *ModelsDiscoveryJobRequest) HasSymLinks() bool

HasSymLinks returns a boolean if a field has been set.

func (ModelsDiscoveryJobRequest) MarshalJSON ¶

func (o ModelsDiscoveryJobRequest) MarshalJSON() ([]byte, error)

func (*ModelsDiscoveryJobRequest) SetAgentId ¶

func (o *ModelsDiscoveryJobRequest) SetAgentId(v string)

SetAgentId gets a reference to the given string and assigns it to the AgentId field.

func (*ModelsDiscoveryJobRequest) SetClientMachine ¶

func (o *ModelsDiscoveryJobRequest) SetClientMachine(v string)

SetClientMachine gets a reference to the given string and assigns it to the ClientMachine field.

func (*ModelsDiscoveryJobRequest) SetCompatibility ¶

func (o *ModelsDiscoveryJobRequest) SetCompatibility(v bool)

SetCompatibility gets a reference to the given bool and assigns it to the Compatibility field.

func (*ModelsDiscoveryJobRequest) SetDirs ¶

func (o *ModelsDiscoveryJobRequest) SetDirs(v string)

SetDirs gets a reference to the given string and assigns it to the Dirs field.

func (*ModelsDiscoveryJobRequest) SetExtensions ¶

func (o *ModelsDiscoveryJobRequest) SetExtensions(v string)

SetExtensions gets a reference to the given string and assigns it to the Extensions field.

func (*ModelsDiscoveryJobRequest) SetIgnoredDirs ¶

func (o *ModelsDiscoveryJobRequest) SetIgnoredDirs(v string)

SetIgnoredDirs gets a reference to the given string and assigns it to the IgnoredDirs field.

func (*ModelsDiscoveryJobRequest) SetJobExecutionTimestamp ¶

func (o *ModelsDiscoveryJobRequest) SetJobExecutionTimestamp(v time.Time)

SetJobExecutionTimestamp gets a reference to the given time.Time and assigns it to the JobExecutionTimestamp field.

func (*ModelsDiscoveryJobRequest) SetNamePatterns ¶

func (o *ModelsDiscoveryJobRequest) SetNamePatterns(v string)

SetNamePatterns gets a reference to the given string and assigns it to the NamePatterns field.

func (*ModelsDiscoveryJobRequest) SetServerPassword ¶

func (o *ModelsDiscoveryJobRequest) SetServerPassword(v ModelsKeyfactorAPISecret)

SetServerPassword gets a reference to the given ModelsKeyfactorAPISecret and assigns it to the ServerPassword field.

func (*ModelsDiscoveryJobRequest) SetServerUseSsl ¶

func (o *ModelsDiscoveryJobRequest) SetServerUseSsl(v bool)

SetServerUseSsl gets a reference to the given bool and assigns it to the ServerUseSsl field.

func (*ModelsDiscoveryJobRequest) SetServerUsername ¶

func (o *ModelsDiscoveryJobRequest) SetServerUsername(v ModelsKeyfactorAPISecret)

SetServerUsername gets a reference to the given ModelsKeyfactorAPISecret and assigns it to the ServerUsername field.

func (o *ModelsDiscoveryJobRequest) SetSymLinks(v bool)

SetSymLinks gets a reference to the given bool and assigns it to the SymLinks field.

func (*ModelsDiscoveryJobRequest) SetType ¶

func (o *ModelsDiscoveryJobRequest) SetType(v int32)

SetType sets field value

func (ModelsDiscoveryJobRequest) ToMap ¶

func (o ModelsDiscoveryJobRequest) ToMap() (map[string]interface{}, error)

func (*ModelsDiscoveryJobRequest) UnmarshalJSON ¶

func (o *ModelsDiscoveryJobRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsEnrollmentAvailableRenewal ¶

type ModelsEnrollmentAvailableRenewal struct {
	AvailableRenewalType *int32  `json:"AvailableRenewalType,omitempty"`
	Message              *string `json:"Message,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsEnrollmentAvailableRenewal struct for ModelsEnrollmentAvailableRenewal

func NewModelsEnrollmentAvailableRenewal ¶

func NewModelsEnrollmentAvailableRenewal() *ModelsEnrollmentAvailableRenewal

NewModelsEnrollmentAvailableRenewal instantiates a new ModelsEnrollmentAvailableRenewal 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 NewModelsEnrollmentAvailableRenewalWithDefaults ¶

func NewModelsEnrollmentAvailableRenewalWithDefaults() *ModelsEnrollmentAvailableRenewal

NewModelsEnrollmentAvailableRenewalWithDefaults instantiates a new ModelsEnrollmentAvailableRenewal 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 (*ModelsEnrollmentAvailableRenewal) GetAvailableRenewalType ¶

func (o *ModelsEnrollmentAvailableRenewal) GetAvailableRenewalType() int32

GetAvailableRenewalType returns the AvailableRenewalType field value if set, zero value otherwise.

func (*ModelsEnrollmentAvailableRenewal) GetAvailableRenewalTypeOk ¶

func (o *ModelsEnrollmentAvailableRenewal) GetAvailableRenewalTypeOk() (*int32, bool)

GetAvailableRenewalTypeOk returns a tuple with the AvailableRenewalType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentAvailableRenewal) GetMessage ¶

func (o *ModelsEnrollmentAvailableRenewal) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ModelsEnrollmentAvailableRenewal) GetMessageOk ¶

func (o *ModelsEnrollmentAvailableRenewal) 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 (*ModelsEnrollmentAvailableRenewal) HasAvailableRenewalType ¶

func (o *ModelsEnrollmentAvailableRenewal) HasAvailableRenewalType() bool

HasAvailableRenewalType returns a boolean if a field has been set.

func (*ModelsEnrollmentAvailableRenewal) HasMessage ¶

func (o *ModelsEnrollmentAvailableRenewal) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (ModelsEnrollmentAvailableRenewal) MarshalJSON ¶

func (o ModelsEnrollmentAvailableRenewal) MarshalJSON() ([]byte, error)

func (*ModelsEnrollmentAvailableRenewal) SetAvailableRenewalType ¶

func (o *ModelsEnrollmentAvailableRenewal) SetAvailableRenewalType(v int32)

SetAvailableRenewalType gets a reference to the given int32 and assigns it to the AvailableRenewalType field.

func (*ModelsEnrollmentAvailableRenewal) SetMessage ¶

func (o *ModelsEnrollmentAvailableRenewal) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (ModelsEnrollmentAvailableRenewal) ToMap ¶

func (o ModelsEnrollmentAvailableRenewal) ToMap() (map[string]interface{}, error)

func (*ModelsEnrollmentAvailableRenewal) UnmarshalJSON ¶

func (o *ModelsEnrollmentAvailableRenewal) UnmarshalJSON(bytes []byte) (err error)

type ModelsEnrollmentCSREnrollmentRequest ¶

type ModelsEnrollmentCSREnrollmentRequest struct {
	CSR                        string                            `json:"CSR"`
	CertificateAuthority       *string                           `json:"CertificateAuthority,omitempty"`
	IncludeChain               *bool                             `json:"IncludeChain,omitempty"`
	Metadata                   map[string]interface{}            `json:"Metadata,omitempty"`
	AdditionalEnrollmentFields map[string]map[string]interface{} `json:"AdditionalEnrollmentFields,omitempty"`
	Timestamp                  *time.Time                        `json:"Timestamp,omitempty"`
	Template                   *string                           `json:"Template,omitempty"`
	SANs                       *map[string][]string              `json:"SANs,omitempty"`
	AdditionalProperties       map[string]interface{}
}

ModelsEnrollmentCSREnrollmentRequest struct for ModelsEnrollmentCSREnrollmentRequest

func NewModelsEnrollmentCSREnrollmentRequest ¶

func NewModelsEnrollmentCSREnrollmentRequest(cSR string) *ModelsEnrollmentCSREnrollmentRequest

NewModelsEnrollmentCSREnrollmentRequest instantiates a new ModelsEnrollmentCSREnrollmentRequest 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 NewModelsEnrollmentCSREnrollmentRequestWithDefaults ¶

func NewModelsEnrollmentCSREnrollmentRequestWithDefaults() *ModelsEnrollmentCSREnrollmentRequest

NewModelsEnrollmentCSREnrollmentRequestWithDefaults instantiates a new ModelsEnrollmentCSREnrollmentRequest 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 (*ModelsEnrollmentCSREnrollmentRequest) GetAdditionalEnrollmentFields ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) GetAdditionalEnrollmentFields() map[string]map[string]interface{}

GetAdditionalEnrollmentFields returns the AdditionalEnrollmentFields field value if set, zero value otherwise.

func (*ModelsEnrollmentCSREnrollmentRequest) GetAdditionalEnrollmentFieldsOk ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) GetAdditionalEnrollmentFieldsOk() (map[string]map[string]interface{}, bool)

GetAdditionalEnrollmentFieldsOk returns a tuple with the AdditionalEnrollmentFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) GetCSR ¶

GetCSR returns the CSR field value

func (*ModelsEnrollmentCSREnrollmentRequest) GetCSROk ¶

GetCSROk returns a tuple with the CSR field value and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) GetCertificateAuthority ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) GetCertificateAuthority() string

GetCertificateAuthority returns the CertificateAuthority field value if set, zero value otherwise.

func (*ModelsEnrollmentCSREnrollmentRequest) GetCertificateAuthorityOk ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) GetCertificateAuthorityOk() (*string, bool)

GetCertificateAuthorityOk returns a tuple with the CertificateAuthority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) GetIncludeChain ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) GetIncludeChain() bool

GetIncludeChain returns the IncludeChain field value if set, zero value otherwise.

func (*ModelsEnrollmentCSREnrollmentRequest) GetIncludeChainOk ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) 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 (*ModelsEnrollmentCSREnrollmentRequest) GetMetadata ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ModelsEnrollmentCSREnrollmentRequest) GetMetadataOk ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) GetMetadataOk() (map[string]interface{}, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) GetSANs ¶

GetSANs returns the SANs field value if set, zero value otherwise.

func (*ModelsEnrollmentCSREnrollmentRequest) GetSANsOk ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) GetSANsOk() (*map[string][]string, bool)

GetSANsOk returns a tuple with the SANs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*ModelsEnrollmentCSREnrollmentRequest) GetTemplateOk ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) GetTemplateOk() (*string, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) GetTimestamp ¶

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ModelsEnrollmentCSREnrollmentRequest) GetTimestampOk ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) HasAdditionalEnrollmentFields ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) HasAdditionalEnrollmentFields() bool

HasAdditionalEnrollmentFields returns a boolean if a field has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) HasCertificateAuthority ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) HasCertificateAuthority() bool

HasCertificateAuthority returns a boolean if a field has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) HasIncludeChain ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) HasIncludeChain() bool

HasIncludeChain returns a boolean if a field has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) HasMetadata ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) HasSANs ¶

HasSANs returns a boolean if a field has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) HasTemplate ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*ModelsEnrollmentCSREnrollmentRequest) HasTimestamp ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (ModelsEnrollmentCSREnrollmentRequest) MarshalJSON ¶

func (o ModelsEnrollmentCSREnrollmentRequest) MarshalJSON() ([]byte, error)

func (*ModelsEnrollmentCSREnrollmentRequest) SetAdditionalEnrollmentFields ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) SetAdditionalEnrollmentFields(v map[string]map[string]interface{})

SetAdditionalEnrollmentFields gets a reference to the given map[string]map[string]interface{} and assigns it to the AdditionalEnrollmentFields field.

func (*ModelsEnrollmentCSREnrollmentRequest) SetCSR ¶

SetCSR sets field value

func (*ModelsEnrollmentCSREnrollmentRequest) SetCertificateAuthority ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) SetCertificateAuthority(v string)

SetCertificateAuthority gets a reference to the given string and assigns it to the CertificateAuthority field.

func (*ModelsEnrollmentCSREnrollmentRequest) SetIncludeChain ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) SetIncludeChain(v bool)

SetIncludeChain gets a reference to the given bool and assigns it to the IncludeChain field.

func (*ModelsEnrollmentCSREnrollmentRequest) SetMetadata ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*ModelsEnrollmentCSREnrollmentRequest) SetSANs ¶

SetSANs gets a reference to the given map[string][]string and assigns it to the SANs field.

func (*ModelsEnrollmentCSREnrollmentRequest) SetTemplate ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) SetTemplate(v string)

SetTemplate gets a reference to the given string and assigns it to the Template field.

func (*ModelsEnrollmentCSREnrollmentRequest) SetTimestamp ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (ModelsEnrollmentCSREnrollmentRequest) ToMap ¶

func (o ModelsEnrollmentCSREnrollmentRequest) ToMap() (map[string]interface{}, error)

func (*ModelsEnrollmentCSREnrollmentRequest) UnmarshalJSON ¶

func (o *ModelsEnrollmentCSREnrollmentRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsEnrollmentCSREnrollmentResponse ¶

type ModelsEnrollmentCSREnrollmentResponse struct {
	CertificateInformation *ModelsPkcs10CertificateResponse `json:"CertificateInformation,omitempty"`
	Metadata               *map[string]string               `json:"Metadata,omitempty"`
	AdditionalProperties   map[string]interface{}
}

ModelsEnrollmentCSREnrollmentResponse struct for ModelsEnrollmentCSREnrollmentResponse

func NewModelsEnrollmentCSREnrollmentResponse ¶

func NewModelsEnrollmentCSREnrollmentResponse() *ModelsEnrollmentCSREnrollmentResponse

NewModelsEnrollmentCSREnrollmentResponse instantiates a new ModelsEnrollmentCSREnrollmentResponse 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 NewModelsEnrollmentCSREnrollmentResponseWithDefaults ¶

func NewModelsEnrollmentCSREnrollmentResponseWithDefaults() *ModelsEnrollmentCSREnrollmentResponse

NewModelsEnrollmentCSREnrollmentResponseWithDefaults instantiates a new ModelsEnrollmentCSREnrollmentResponse 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 (*ModelsEnrollmentCSREnrollmentResponse) GetCertificateInformation ¶

GetCertificateInformation returns the CertificateInformation field value if set, zero value otherwise.

func (*ModelsEnrollmentCSREnrollmentResponse) GetCertificateInformationOk ¶

func (o *ModelsEnrollmentCSREnrollmentResponse) GetCertificateInformationOk() (*ModelsPkcs10CertificateResponse, bool)

GetCertificateInformationOk returns a tuple with the CertificateInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSREnrollmentResponse) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ModelsEnrollmentCSREnrollmentResponse) GetMetadataOk ¶

func (o *ModelsEnrollmentCSREnrollmentResponse) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSREnrollmentResponse) HasCertificateInformation ¶

func (o *ModelsEnrollmentCSREnrollmentResponse) HasCertificateInformation() bool

HasCertificateInformation returns a boolean if a field has been set.

func (*ModelsEnrollmentCSREnrollmentResponse) HasMetadata ¶

HasMetadata returns a boolean if a field has been set.

func (ModelsEnrollmentCSREnrollmentResponse) MarshalJSON ¶

func (o ModelsEnrollmentCSREnrollmentResponse) MarshalJSON() ([]byte, error)

func (*ModelsEnrollmentCSREnrollmentResponse) SetCertificateInformation ¶

SetCertificateInformation gets a reference to the given ModelsPkcs10CertificateResponse and assigns it to the CertificateInformation field.

func (*ModelsEnrollmentCSREnrollmentResponse) SetMetadata ¶

func (o *ModelsEnrollmentCSREnrollmentResponse) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (ModelsEnrollmentCSREnrollmentResponse) ToMap ¶

func (o ModelsEnrollmentCSREnrollmentResponse) ToMap() (map[string]interface{}, error)

func (*ModelsEnrollmentCSREnrollmentResponse) UnmarshalJSON ¶

func (o *ModelsEnrollmentCSREnrollmentResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsEnrollmentCSRGenerationRequest ¶

type ModelsEnrollmentCSRGenerationRequest struct {
	// Subject for the requested certificate
	Subject string `json:"Subject"`
	// Certificate key type [RSA, ECC]
	KeyType string `json:"KeyType"`
	// Size of the certificate key (ex: RSA 1024, 2048, 4096/ECC 256, 384, 521)
	KeyLength            int32                `json:"KeyLength"`
	Template             *string              `json:"Template,omitempty"`
	SANs                 *map[string][]string `json:"SANs,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsEnrollmentCSRGenerationRequest struct for ModelsEnrollmentCSRGenerationRequest

func NewModelsEnrollmentCSRGenerationRequest ¶

func NewModelsEnrollmentCSRGenerationRequest(subject string, keyType string, keyLength int32) *ModelsEnrollmentCSRGenerationRequest

NewModelsEnrollmentCSRGenerationRequest instantiates a new ModelsEnrollmentCSRGenerationRequest 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 NewModelsEnrollmentCSRGenerationRequestWithDefaults ¶

func NewModelsEnrollmentCSRGenerationRequestWithDefaults() *ModelsEnrollmentCSRGenerationRequest

NewModelsEnrollmentCSRGenerationRequestWithDefaults instantiates a new ModelsEnrollmentCSRGenerationRequest 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 (*ModelsEnrollmentCSRGenerationRequest) GetKeyLength ¶

func (o *ModelsEnrollmentCSRGenerationRequest) GetKeyLength() int32

GetKeyLength returns the KeyLength field value

func (*ModelsEnrollmentCSRGenerationRequest) GetKeyLengthOk ¶

func (o *ModelsEnrollmentCSRGenerationRequest) GetKeyLengthOk() (*int32, bool)

GetKeyLengthOk returns a tuple with the KeyLength field value and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSRGenerationRequest) GetKeyType ¶

GetKeyType returns the KeyType field value

func (*ModelsEnrollmentCSRGenerationRequest) GetKeyTypeOk ¶

func (o *ModelsEnrollmentCSRGenerationRequest) GetKeyTypeOk() (*string, bool)

GetKeyTypeOk returns a tuple with the KeyType field value and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSRGenerationRequest) GetSANs ¶

GetSANs returns the SANs field value if set, zero value otherwise.

func (*ModelsEnrollmentCSRGenerationRequest) GetSANsOk ¶

func (o *ModelsEnrollmentCSRGenerationRequest) GetSANsOk() (*map[string][]string, bool)

GetSANsOk returns a tuple with the SANs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSRGenerationRequest) GetSubject ¶

GetSubject returns the Subject field value

func (*ModelsEnrollmentCSRGenerationRequest) GetSubjectOk ¶

func (o *ModelsEnrollmentCSRGenerationRequest) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSRGenerationRequest) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*ModelsEnrollmentCSRGenerationRequest) GetTemplateOk ¶

func (o *ModelsEnrollmentCSRGenerationRequest) GetTemplateOk() (*string, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentCSRGenerationRequest) HasSANs ¶

HasSANs returns a boolean if a field has been set.

func (*ModelsEnrollmentCSRGenerationRequest) HasTemplate ¶

func (o *ModelsEnrollmentCSRGenerationRequest) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (ModelsEnrollmentCSRGenerationRequest) MarshalJSON ¶

func (o ModelsEnrollmentCSRGenerationRequest) MarshalJSON() ([]byte, error)

func (*ModelsEnrollmentCSRGenerationRequest) SetKeyLength ¶

func (o *ModelsEnrollmentCSRGenerationRequest) SetKeyLength(v int32)

SetKeyLength sets field value

func (*ModelsEnrollmentCSRGenerationRequest) SetKeyType ¶

SetKeyType sets field value

func (*ModelsEnrollmentCSRGenerationRequest) SetSANs ¶

SetSANs gets a reference to the given map[string][]string and assigns it to the SANs field.

func (*ModelsEnrollmentCSRGenerationRequest) SetSubject ¶

SetSubject sets field value

func (*ModelsEnrollmentCSRGenerationRequest) SetTemplate ¶

func (o *ModelsEnrollmentCSRGenerationRequest) SetTemplate(v string)

SetTemplate gets a reference to the given string and assigns it to the Template field.

func (ModelsEnrollmentCSRGenerationRequest) ToMap ¶

func (o ModelsEnrollmentCSRGenerationRequest) ToMap() (map[string]interface{}, error)

func (*ModelsEnrollmentCSRGenerationRequest) UnmarshalJSON ¶

func (o *ModelsEnrollmentCSRGenerationRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsEnrollmentExistingEnrollmentManagementRequest ¶

type ModelsEnrollmentExistingEnrollmentManagementRequest struct {
	ExistingCertificateId *int32     `json:"ExistingCertificateId,omitempty"`
	CertificateId         *int32     `json:"CertificateId,omitempty"`
	RequestId             *int32     `json:"RequestId,omitempty"`
	Password              *string    `json:"Password,omitempty"`
	JobTime               *time.Time `json:"JobTime,omitempty"`
	AdditionalProperties  map[string]interface{}
}

ModelsEnrollmentExistingEnrollmentManagementRequest struct for ModelsEnrollmentExistingEnrollmentManagementRequest

func NewModelsEnrollmentExistingEnrollmentManagementRequest ¶

func NewModelsEnrollmentExistingEnrollmentManagementRequest() *ModelsEnrollmentExistingEnrollmentManagementRequest

NewModelsEnrollmentExistingEnrollmentManagementRequest instantiates a new ModelsEnrollmentExistingEnrollmentManagementRequest 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 NewModelsEnrollmentExistingEnrollmentManagementRequestWithDefaults ¶

func NewModelsEnrollmentExistingEnrollmentManagementRequestWithDefaults() *ModelsEnrollmentExistingEnrollmentManagementRequest

NewModelsEnrollmentExistingEnrollmentManagementRequestWithDefaults instantiates a new ModelsEnrollmentExistingEnrollmentManagementRequest 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 (*ModelsEnrollmentExistingEnrollmentManagementRequest) GetCertificateId ¶

GetCertificateId returns the CertificateId field value if set, zero value otherwise.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) GetCertificateIdOk ¶

GetCertificateIdOk returns a tuple with the CertificateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) GetExistingCertificateId ¶

func (o *ModelsEnrollmentExistingEnrollmentManagementRequest) GetExistingCertificateId() int32

GetExistingCertificateId returns the ExistingCertificateId field value if set, zero value otherwise.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) GetExistingCertificateIdOk ¶

func (o *ModelsEnrollmentExistingEnrollmentManagementRequest) GetExistingCertificateIdOk() (*int32, bool)

GetExistingCertificateIdOk returns a tuple with the ExistingCertificateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) GetJobTime ¶

GetJobTime returns the JobTime field value if set, zero value otherwise.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) GetJobTimeOk ¶

GetJobTimeOk returns a tuple with the JobTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) GetPassword ¶

GetPassword returns the Password field value if set, zero value otherwise.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) GetPasswordOk ¶

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 (*ModelsEnrollmentExistingEnrollmentManagementRequest) GetRequestId ¶

GetRequestId returns the RequestId field value if set, zero value otherwise.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) GetRequestIdOk ¶

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) HasCertificateId ¶

HasCertificateId returns a boolean if a field has been set.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) HasExistingCertificateId ¶

func (o *ModelsEnrollmentExistingEnrollmentManagementRequest) HasExistingCertificateId() bool

HasExistingCertificateId returns a boolean if a field has been set.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) HasJobTime ¶

HasJobTime returns a boolean if a field has been set.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) HasPassword ¶

HasPassword returns a boolean if a field has been set.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) HasRequestId ¶

HasRequestId returns a boolean if a field has been set.

func (ModelsEnrollmentExistingEnrollmentManagementRequest) MarshalJSON ¶

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) SetCertificateId ¶

SetCertificateId gets a reference to the given int32 and assigns it to the CertificateId field.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) SetExistingCertificateId ¶

func (o *ModelsEnrollmentExistingEnrollmentManagementRequest) SetExistingCertificateId(v int32)

SetExistingCertificateId gets a reference to the given int32 and assigns it to the ExistingCertificateId field.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) SetJobTime ¶

SetJobTime gets a reference to the given time.Time and assigns it to the JobTime field.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) SetPassword ¶

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) SetRequestId ¶

SetRequestId gets a reference to the given int32 and assigns it to the RequestId field.

func (ModelsEnrollmentExistingEnrollmentManagementRequest) ToMap ¶

func (*ModelsEnrollmentExistingEnrollmentManagementRequest) UnmarshalJSON ¶

func (o *ModelsEnrollmentExistingEnrollmentManagementRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsEnrollmentManagementStoreType ¶

type ModelsEnrollmentManagementStoreType struct {
	StoreTypeId          *int32                   `json:"StoreTypeId,omitempty"`
	Alias                *string                  `json:"Alias,omitempty"`
	Overwrite            *bool                    `json:"Overwrite,omitempty"`
	Properties           []map[string]interface{} `json:"Properties,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsEnrollmentManagementStoreType struct for ModelsEnrollmentManagementStoreType

func NewModelsEnrollmentManagementStoreType ¶

func NewModelsEnrollmentManagementStoreType() *ModelsEnrollmentManagementStoreType

NewModelsEnrollmentManagementStoreType instantiates a new ModelsEnrollmentManagementStoreType 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 NewModelsEnrollmentManagementStoreTypeWithDefaults ¶

func NewModelsEnrollmentManagementStoreTypeWithDefaults() *ModelsEnrollmentManagementStoreType

NewModelsEnrollmentManagementStoreTypeWithDefaults instantiates a new ModelsEnrollmentManagementStoreType 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 (*ModelsEnrollmentManagementStoreType) GetAlias ¶

GetAlias returns the Alias field value if set, zero value otherwise.

func (*ModelsEnrollmentManagementStoreType) GetAliasOk ¶

func (o *ModelsEnrollmentManagementStoreType) GetAliasOk() (*string, bool)

GetAliasOk returns a tuple with the Alias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentManagementStoreType) GetOverwrite ¶

func (o *ModelsEnrollmentManagementStoreType) GetOverwrite() bool

GetOverwrite returns the Overwrite field value if set, zero value otherwise.

func (*ModelsEnrollmentManagementStoreType) GetOverwriteOk ¶

func (o *ModelsEnrollmentManagementStoreType) GetOverwriteOk() (*bool, bool)

GetOverwriteOk returns a tuple with the Overwrite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentManagementStoreType) GetProperties ¶

func (o *ModelsEnrollmentManagementStoreType) GetProperties() []map[string]interface{}

GetProperties returns the Properties field value if set, zero value otherwise.

func (*ModelsEnrollmentManagementStoreType) GetPropertiesOk ¶

func (o *ModelsEnrollmentManagementStoreType) GetPropertiesOk() ([]map[string]interface{}, bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentManagementStoreType) GetStoreTypeId ¶

func (o *ModelsEnrollmentManagementStoreType) GetStoreTypeId() int32

GetStoreTypeId returns the StoreTypeId field value if set, zero value otherwise.

func (*ModelsEnrollmentManagementStoreType) GetStoreTypeIdOk ¶

func (o *ModelsEnrollmentManagementStoreType) GetStoreTypeIdOk() (*int32, bool)

GetStoreTypeIdOk returns a tuple with the StoreTypeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentManagementStoreType) HasAlias ¶

HasAlias returns a boolean if a field has been set.

func (*ModelsEnrollmentManagementStoreType) HasOverwrite ¶

func (o *ModelsEnrollmentManagementStoreType) HasOverwrite() bool

HasOverwrite returns a boolean if a field has been set.

func (*ModelsEnrollmentManagementStoreType) HasProperties ¶

func (o *ModelsEnrollmentManagementStoreType) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*ModelsEnrollmentManagementStoreType) HasStoreTypeId ¶

func (o *ModelsEnrollmentManagementStoreType) HasStoreTypeId() bool

HasStoreTypeId returns a boolean if a field has been set.

func (ModelsEnrollmentManagementStoreType) MarshalJSON ¶

func (o ModelsEnrollmentManagementStoreType) MarshalJSON() ([]byte, error)

func (*ModelsEnrollmentManagementStoreType) SetAlias ¶

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*ModelsEnrollmentManagementStoreType) SetOverwrite ¶

func (o *ModelsEnrollmentManagementStoreType) SetOverwrite(v bool)

SetOverwrite gets a reference to the given bool and assigns it to the Overwrite field.

func (*ModelsEnrollmentManagementStoreType) SetProperties ¶

func (o *ModelsEnrollmentManagementStoreType) SetProperties(v []map[string]interface{})

SetProperties gets a reference to the given []map[string]interface{} and assigns it to the Properties field.

func (*ModelsEnrollmentManagementStoreType) SetStoreTypeId ¶

func (o *ModelsEnrollmentManagementStoreType) SetStoreTypeId(v int32)

SetStoreTypeId gets a reference to the given int32 and assigns it to the StoreTypeId field.

func (ModelsEnrollmentManagementStoreType) ToMap ¶

func (o ModelsEnrollmentManagementStoreType) ToMap() (map[string]interface{}, error)

func (*ModelsEnrollmentManagementStoreType) UnmarshalJSON ¶

func (o *ModelsEnrollmentManagementStoreType) UnmarshalJSON(bytes []byte) (err error)

type ModelsEnrollmentPFXEnrollmentRequest ¶

type ModelsEnrollmentPFXEnrollmentRequest struct {
	CustomFriendlyName          *string                           `json:"CustomFriendlyName,omitempty"`
	Password                    *string                           `json:"Password,omitempty"`
	PopulateMissingValuesFromAD *bool                             `json:"PopulateMissingValuesFromAD,omitempty"`
	Subject                     *string                           `json:"Subject,omitempty"`
	IncludeChain                *bool                             `json:"IncludeChain,omitempty"`
	RenewalCertificateId        *int32                            `json:"RenewalCertificateId,omitempty"`
	CertificateAuthority        *string                           `json:"CertificateAuthority,omitempty"`
	Metadata                    map[string]interface{}            `json:"Metadata,omitempty"`
	AdditionalEnrollmentFields  map[string]map[string]interface{} `json:"AdditionalEnrollmentFields,omitempty"`
	Timestamp                   *time.Time                        `json:"Timestamp,omitempty"`
	Template                    *string                           `json:"Template,omitempty"`
	SANs                        *map[string][]string              `json:"SANs,omitempty"`
	AdditionalProperties        map[string]interface{}
}

ModelsEnrollmentPFXEnrollmentRequest struct for ModelsEnrollmentPFXEnrollmentRequest

func NewModelsEnrollmentPFXEnrollmentRequest ¶

func NewModelsEnrollmentPFXEnrollmentRequest() *ModelsEnrollmentPFXEnrollmentRequest

NewModelsEnrollmentPFXEnrollmentRequest instantiates a new ModelsEnrollmentPFXEnrollmentRequest 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 NewModelsEnrollmentPFXEnrollmentRequestWithDefaults ¶

func NewModelsEnrollmentPFXEnrollmentRequestWithDefaults() *ModelsEnrollmentPFXEnrollmentRequest

NewModelsEnrollmentPFXEnrollmentRequestWithDefaults instantiates a new ModelsEnrollmentPFXEnrollmentRequest 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 (*ModelsEnrollmentPFXEnrollmentRequest) GetAdditionalEnrollmentFields ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetAdditionalEnrollmentFields() map[string]map[string]interface{}

GetAdditionalEnrollmentFields returns the AdditionalEnrollmentFields field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetAdditionalEnrollmentFieldsOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetAdditionalEnrollmentFieldsOk() (map[string]map[string]interface{}, bool)

GetAdditionalEnrollmentFieldsOk returns a tuple with the AdditionalEnrollmentFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetCertificateAuthority ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetCertificateAuthority() string

GetCertificateAuthority returns the CertificateAuthority field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetCertificateAuthorityOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetCertificateAuthorityOk() (*string, bool)

GetCertificateAuthorityOk returns a tuple with the CertificateAuthority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetCustomFriendlyName ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetCustomFriendlyName() string

GetCustomFriendlyName returns the CustomFriendlyName field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetCustomFriendlyNameOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetCustomFriendlyNameOk() (*string, bool)

GetCustomFriendlyNameOk returns a tuple with the CustomFriendlyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetIncludeChain ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetIncludeChain() bool

GetIncludeChain returns the IncludeChain field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetIncludeChainOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) 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 (*ModelsEnrollmentPFXEnrollmentRequest) GetMetadata ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetMetadataOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetMetadataOk() (map[string]interface{}, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetPassword ¶

GetPassword returns the Password field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetPasswordOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) 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 (*ModelsEnrollmentPFXEnrollmentRequest) GetPopulateMissingValuesFromAD ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetPopulateMissingValuesFromAD() bool

GetPopulateMissingValuesFromAD returns the PopulateMissingValuesFromAD field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetPopulateMissingValuesFromADOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetPopulateMissingValuesFromADOk() (*bool, bool)

GetPopulateMissingValuesFromADOk returns a tuple with the PopulateMissingValuesFromAD field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetRenewalCertificateId ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetRenewalCertificateId() int32

GetRenewalCertificateId returns the RenewalCertificateId field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetRenewalCertificateIdOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetRenewalCertificateIdOk() (*int32, bool)

GetRenewalCertificateIdOk returns a tuple with the RenewalCertificateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetSANs ¶

GetSANs returns the SANs field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetSANsOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetSANsOk() (*map[string][]string, bool)

GetSANsOk returns a tuple with the SANs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetSubject ¶

GetSubject returns the Subject field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetSubjectOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetTemplateOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetTemplateOk() (*string, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetTimestamp ¶

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentRequest) GetTimestampOk ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasAdditionalEnrollmentFields ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) HasAdditionalEnrollmentFields() bool

HasAdditionalEnrollmentFields returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasCertificateAuthority ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) HasCertificateAuthority() bool

HasCertificateAuthority returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasCustomFriendlyName ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) HasCustomFriendlyName() bool

HasCustomFriendlyName returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasIncludeChain ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) HasIncludeChain() bool

HasIncludeChain returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasMetadata ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasPassword ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasPopulateMissingValuesFromAD ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) HasPopulateMissingValuesFromAD() bool

HasPopulateMissingValuesFromAD returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasRenewalCertificateId ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) HasRenewalCertificateId() bool

HasRenewalCertificateId returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasSANs ¶

HasSANs returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasSubject ¶

HasSubject returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasTemplate ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentRequest) HasTimestamp ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (ModelsEnrollmentPFXEnrollmentRequest) MarshalJSON ¶

func (o ModelsEnrollmentPFXEnrollmentRequest) MarshalJSON() ([]byte, error)

func (*ModelsEnrollmentPFXEnrollmentRequest) SetAdditionalEnrollmentFields ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) SetAdditionalEnrollmentFields(v map[string]map[string]interface{})

SetAdditionalEnrollmentFields gets a reference to the given map[string]map[string]interface{} and assigns it to the AdditionalEnrollmentFields field.

func (*ModelsEnrollmentPFXEnrollmentRequest) SetCertificateAuthority ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) SetCertificateAuthority(v string)

SetCertificateAuthority gets a reference to the given string and assigns it to the CertificateAuthority field.

func (*ModelsEnrollmentPFXEnrollmentRequest) SetCustomFriendlyName ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) SetCustomFriendlyName(v string)

SetCustomFriendlyName gets a reference to the given string and assigns it to the CustomFriendlyName field.

func (*ModelsEnrollmentPFXEnrollmentRequest) SetIncludeChain ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) SetIncludeChain(v bool)

SetIncludeChain gets a reference to the given bool and assigns it to the IncludeChain field.

func (*ModelsEnrollmentPFXEnrollmentRequest) SetMetadata ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*ModelsEnrollmentPFXEnrollmentRequest) SetPassword ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ModelsEnrollmentPFXEnrollmentRequest) SetPopulateMissingValuesFromAD ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) SetPopulateMissingValuesFromAD(v bool)

SetPopulateMissingValuesFromAD gets a reference to the given bool and assigns it to the PopulateMissingValuesFromAD field.

func (*ModelsEnrollmentPFXEnrollmentRequest) SetRenewalCertificateId ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) SetRenewalCertificateId(v int32)

SetRenewalCertificateId gets a reference to the given int32 and assigns it to the RenewalCertificateId field.

func (*ModelsEnrollmentPFXEnrollmentRequest) SetSANs ¶

SetSANs gets a reference to the given map[string][]string and assigns it to the SANs field.

func (*ModelsEnrollmentPFXEnrollmentRequest) SetSubject ¶

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (*ModelsEnrollmentPFXEnrollmentRequest) SetTemplate ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) SetTemplate(v string)

SetTemplate gets a reference to the given string and assigns it to the Template field.

func (*ModelsEnrollmentPFXEnrollmentRequest) SetTimestamp ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (ModelsEnrollmentPFXEnrollmentRequest) ToMap ¶

func (o ModelsEnrollmentPFXEnrollmentRequest) ToMap() (map[string]interface{}, error)

func (*ModelsEnrollmentPFXEnrollmentRequest) UnmarshalJSON ¶

func (o *ModelsEnrollmentPFXEnrollmentRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsEnrollmentPFXEnrollmentResponse ¶

type ModelsEnrollmentPFXEnrollmentResponse struct {
	CertificateInformation *ModelsPkcs12CertificateResponse `json:"CertificateInformation,omitempty"`
	Metadata               *map[string]string               `json:"Metadata,omitempty"`
	AdditionalProperties   map[string]interface{}
}

ModelsEnrollmentPFXEnrollmentResponse struct for ModelsEnrollmentPFXEnrollmentResponse

func NewModelsEnrollmentPFXEnrollmentResponse ¶

func NewModelsEnrollmentPFXEnrollmentResponse() *ModelsEnrollmentPFXEnrollmentResponse

NewModelsEnrollmentPFXEnrollmentResponse instantiates a new ModelsEnrollmentPFXEnrollmentResponse 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 NewModelsEnrollmentPFXEnrollmentResponseWithDefaults ¶

func NewModelsEnrollmentPFXEnrollmentResponseWithDefaults() *ModelsEnrollmentPFXEnrollmentResponse

NewModelsEnrollmentPFXEnrollmentResponseWithDefaults instantiates a new ModelsEnrollmentPFXEnrollmentResponse 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 (*ModelsEnrollmentPFXEnrollmentResponse) GetCertificateInformation ¶

GetCertificateInformation returns the CertificateInformation field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentResponse) GetCertificateInformationOk ¶

func (o *ModelsEnrollmentPFXEnrollmentResponse) GetCertificateInformationOk() (*ModelsPkcs12CertificateResponse, bool)

GetCertificateInformationOk returns a tuple with the CertificateInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentResponse) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ModelsEnrollmentPFXEnrollmentResponse) GetMetadataOk ¶

func (o *ModelsEnrollmentPFXEnrollmentResponse) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentPFXEnrollmentResponse) HasCertificateInformation ¶

func (o *ModelsEnrollmentPFXEnrollmentResponse) HasCertificateInformation() bool

HasCertificateInformation returns a boolean if a field has been set.

func (*ModelsEnrollmentPFXEnrollmentResponse) HasMetadata ¶

HasMetadata returns a boolean if a field has been set.

func (ModelsEnrollmentPFXEnrollmentResponse) MarshalJSON ¶

func (o ModelsEnrollmentPFXEnrollmentResponse) MarshalJSON() ([]byte, error)

func (*ModelsEnrollmentPFXEnrollmentResponse) SetCertificateInformation ¶

SetCertificateInformation gets a reference to the given ModelsPkcs12CertificateResponse and assigns it to the CertificateInformation field.

func (*ModelsEnrollmentPFXEnrollmentResponse) SetMetadata ¶

func (o *ModelsEnrollmentPFXEnrollmentResponse) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (ModelsEnrollmentPFXEnrollmentResponse) ToMap ¶

func (o ModelsEnrollmentPFXEnrollmentResponse) ToMap() (map[string]interface{}, error)

func (*ModelsEnrollmentPFXEnrollmentResponse) UnmarshalJSON ¶

func (o *ModelsEnrollmentPFXEnrollmentResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsEnrollmentRenewalRequest ¶

type ModelsEnrollmentRenewalRequest struct {
	CertificateId        *int32     `json:"CertificateId,omitempty"`
	Thumbprint           *string    `json:"Thumbprint,omitempty"`
	CertificateAuthority *string    `json:"CertificateAuthority,omitempty"`
	Template             *string    `json:"Template,omitempty"`
	Timestamp            *time.Time `json:"Timestamp,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsEnrollmentRenewalRequest struct for ModelsEnrollmentRenewalRequest

func NewModelsEnrollmentRenewalRequest ¶

func NewModelsEnrollmentRenewalRequest() *ModelsEnrollmentRenewalRequest

NewModelsEnrollmentRenewalRequest instantiates a new ModelsEnrollmentRenewalRequest 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 NewModelsEnrollmentRenewalRequestWithDefaults ¶

func NewModelsEnrollmentRenewalRequestWithDefaults() *ModelsEnrollmentRenewalRequest

NewModelsEnrollmentRenewalRequestWithDefaults instantiates a new ModelsEnrollmentRenewalRequest 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 (*ModelsEnrollmentRenewalRequest) GetCertificateAuthority ¶

func (o *ModelsEnrollmentRenewalRequest) GetCertificateAuthority() string

GetCertificateAuthority returns the CertificateAuthority field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalRequest) GetCertificateAuthorityOk ¶

func (o *ModelsEnrollmentRenewalRequest) GetCertificateAuthorityOk() (*string, bool)

GetCertificateAuthorityOk returns a tuple with the CertificateAuthority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentRenewalRequest) GetCertificateId ¶

func (o *ModelsEnrollmentRenewalRequest) GetCertificateId() int32

GetCertificateId returns the CertificateId field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalRequest) GetCertificateIdOk ¶

func (o *ModelsEnrollmentRenewalRequest) GetCertificateIdOk() (*int32, bool)

GetCertificateIdOk returns a tuple with the CertificateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentRenewalRequest) GetTemplate ¶

func (o *ModelsEnrollmentRenewalRequest) GetTemplate() string

GetTemplate returns the Template field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalRequest) GetTemplateOk ¶

func (o *ModelsEnrollmentRenewalRequest) GetTemplateOk() (*string, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentRenewalRequest) GetThumbprint ¶

func (o *ModelsEnrollmentRenewalRequest) GetThumbprint() string

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalRequest) GetThumbprintOk ¶

func (o *ModelsEnrollmentRenewalRequest) GetThumbprintOk() (*string, bool)

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentRenewalRequest) GetTimestamp ¶

func (o *ModelsEnrollmentRenewalRequest) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalRequest) GetTimestampOk ¶

func (o *ModelsEnrollmentRenewalRequest) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentRenewalRequest) HasCertificateAuthority ¶

func (o *ModelsEnrollmentRenewalRequest) HasCertificateAuthority() bool

HasCertificateAuthority returns a boolean if a field has been set.

func (*ModelsEnrollmentRenewalRequest) HasCertificateId ¶

func (o *ModelsEnrollmentRenewalRequest) HasCertificateId() bool

HasCertificateId returns a boolean if a field has been set.

func (*ModelsEnrollmentRenewalRequest) HasTemplate ¶

func (o *ModelsEnrollmentRenewalRequest) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*ModelsEnrollmentRenewalRequest) HasThumbprint ¶

func (o *ModelsEnrollmentRenewalRequest) HasThumbprint() bool

HasThumbprint returns a boolean if a field has been set.

func (*ModelsEnrollmentRenewalRequest) HasTimestamp ¶

func (o *ModelsEnrollmentRenewalRequest) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (ModelsEnrollmentRenewalRequest) MarshalJSON ¶

func (o ModelsEnrollmentRenewalRequest) MarshalJSON() ([]byte, error)

func (*ModelsEnrollmentRenewalRequest) SetCertificateAuthority ¶

func (o *ModelsEnrollmentRenewalRequest) SetCertificateAuthority(v string)

SetCertificateAuthority gets a reference to the given string and assigns it to the CertificateAuthority field.

func (*ModelsEnrollmentRenewalRequest) SetCertificateId ¶

func (o *ModelsEnrollmentRenewalRequest) SetCertificateId(v int32)

SetCertificateId gets a reference to the given int32 and assigns it to the CertificateId field.

func (*ModelsEnrollmentRenewalRequest) SetTemplate ¶

func (o *ModelsEnrollmentRenewalRequest) SetTemplate(v string)

SetTemplate gets a reference to the given string and assigns it to the Template field.

func (*ModelsEnrollmentRenewalRequest) SetThumbprint ¶

func (o *ModelsEnrollmentRenewalRequest) SetThumbprint(v string)

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (*ModelsEnrollmentRenewalRequest) SetTimestamp ¶

func (o *ModelsEnrollmentRenewalRequest) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (ModelsEnrollmentRenewalRequest) ToMap ¶

func (o ModelsEnrollmentRenewalRequest) ToMap() (map[string]interface{}, error)

func (*ModelsEnrollmentRenewalRequest) UnmarshalJSON ¶

func (o *ModelsEnrollmentRenewalRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsEnrollmentRenewalResponse ¶

type ModelsEnrollmentRenewalResponse struct {
	KeyfactorId          *int32         `json:"KeyfactorId,omitempty"`
	KeyfactorRequestId   *int32         `json:"KeyfactorRequestId,omitempty"`
	Thumbprint           *string        `json:"Thumbprint,omitempty"`
	SerialNumber         *string        `json:"SerialNumber,omitempty"`
	IssuerDN             NullableString `json:"IssuerDN,omitempty"`
	RequestDisposition   *string        `json:"RequestDisposition,omitempty"`
	DispositionMessage   *string        `json:"DispositionMessage,omitempty"`
	Password             *string        `json:"Password,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsEnrollmentRenewalResponse struct for ModelsEnrollmentRenewalResponse

func NewModelsEnrollmentRenewalResponse ¶

func NewModelsEnrollmentRenewalResponse() *ModelsEnrollmentRenewalResponse

NewModelsEnrollmentRenewalResponse instantiates a new ModelsEnrollmentRenewalResponse 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 NewModelsEnrollmentRenewalResponseWithDefaults ¶

func NewModelsEnrollmentRenewalResponseWithDefaults() *ModelsEnrollmentRenewalResponse

NewModelsEnrollmentRenewalResponseWithDefaults instantiates a new ModelsEnrollmentRenewalResponse 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 (*ModelsEnrollmentRenewalResponse) GetDispositionMessage ¶

func (o *ModelsEnrollmentRenewalResponse) GetDispositionMessage() string

GetDispositionMessage returns the DispositionMessage field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalResponse) GetDispositionMessageOk ¶

func (o *ModelsEnrollmentRenewalResponse) GetDispositionMessageOk() (*string, bool)

GetDispositionMessageOk returns a tuple with the DispositionMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentRenewalResponse) GetIssuerDN ¶

func (o *ModelsEnrollmentRenewalResponse) GetIssuerDN() string

GetIssuerDN returns the IssuerDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsEnrollmentRenewalResponse) GetIssuerDNOk ¶

func (o *ModelsEnrollmentRenewalResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsEnrollmentRenewalResponse) GetKeyfactorId ¶

func (o *ModelsEnrollmentRenewalResponse) GetKeyfactorId() int32

GetKeyfactorId returns the KeyfactorId field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalResponse) GetKeyfactorIdOk ¶

func (o *ModelsEnrollmentRenewalResponse) GetKeyfactorIdOk() (*int32, bool)

GetKeyfactorIdOk returns a tuple with the KeyfactorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentRenewalResponse) GetKeyfactorRequestId ¶

func (o *ModelsEnrollmentRenewalResponse) GetKeyfactorRequestId() int32

GetKeyfactorRequestId returns the KeyfactorRequestId field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalResponse) GetKeyfactorRequestIdOk ¶

func (o *ModelsEnrollmentRenewalResponse) GetKeyfactorRequestIdOk() (*int32, bool)

GetKeyfactorRequestIdOk returns a tuple with the KeyfactorRequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentRenewalResponse) GetPassword ¶

func (o *ModelsEnrollmentRenewalResponse) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalResponse) GetPasswordOk ¶

func (o *ModelsEnrollmentRenewalResponse) 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 (*ModelsEnrollmentRenewalResponse) GetRequestDisposition ¶

func (o *ModelsEnrollmentRenewalResponse) GetRequestDisposition() string

GetRequestDisposition returns the RequestDisposition field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalResponse) GetRequestDispositionOk ¶

func (o *ModelsEnrollmentRenewalResponse) GetRequestDispositionOk() (*string, bool)

GetRequestDispositionOk returns a tuple with the RequestDisposition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentRenewalResponse) GetSerialNumber ¶

func (o *ModelsEnrollmentRenewalResponse) GetSerialNumber() string

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalResponse) GetSerialNumberOk ¶

func (o *ModelsEnrollmentRenewalResponse) 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 (*ModelsEnrollmentRenewalResponse) GetThumbprint ¶

func (o *ModelsEnrollmentRenewalResponse) GetThumbprint() string

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsEnrollmentRenewalResponse) GetThumbprintOk ¶

func (o *ModelsEnrollmentRenewalResponse) GetThumbprintOk() (*string, bool)

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsEnrollmentRenewalResponse) HasDispositionMessage ¶

func (o *ModelsEnrollmentRenewalResponse) HasDispositionMessage() bool

HasDispositionMessage returns a boolean if a field has been set.

func (*ModelsEnrollmentRenewalResponse) HasIssuerDN ¶

func (o *ModelsEnrollmentRenewalResponse) HasIssuerDN() bool

HasIssuerDN returns a boolean if a field has been set.

func (*ModelsEnrollmentRenewalResponse) HasKeyfactorId ¶

func (o *ModelsEnrollmentRenewalResponse) HasKeyfactorId() bool

HasKeyfactorId returns a boolean if a field has been set.

func (*ModelsEnrollmentRenewalResponse) HasKeyfactorRequestId ¶

func (o *ModelsEnrollmentRenewalResponse) HasKeyfactorRequestId() bool

HasKeyfactorRequestId returns a boolean if a field has been set.

func (*ModelsEnrollmentRenewalResponse) HasPassword ¶

func (o *ModelsEnrollmentRenewalResponse) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ModelsEnrollmentRenewalResponse) HasRequestDisposition ¶

func (o *ModelsEnrollmentRenewalResponse) HasRequestDisposition() bool

HasRequestDisposition returns a boolean if a field has been set.

func (*ModelsEnrollmentRenewalResponse) HasSerialNumber ¶

func (o *ModelsEnrollmentRenewalResponse) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (*ModelsEnrollmentRenewalResponse) HasThumbprint ¶

func (o *ModelsEnrollmentRenewalResponse) HasThumbprint() bool

HasThumbprint returns a boolean if a field has been set.

func (ModelsEnrollmentRenewalResponse) MarshalJSON ¶

func (o ModelsEnrollmentRenewalResponse) MarshalJSON() ([]byte, error)

func (*ModelsEnrollmentRenewalResponse) SetDispositionMessage ¶

func (o *ModelsEnrollmentRenewalResponse) SetDispositionMessage(v string)

SetDispositionMessage gets a reference to the given string and assigns it to the DispositionMessage field.

func (*ModelsEnrollmentRenewalResponse) SetIssuerDN ¶

func (o *ModelsEnrollmentRenewalResponse) SetIssuerDN(v string)

SetIssuerDN gets a reference to the given NullableString and assigns it to the IssuerDN field.

func (*ModelsEnrollmentRenewalResponse) SetIssuerDNNil ¶

func (o *ModelsEnrollmentRenewalResponse) SetIssuerDNNil()

SetIssuerDNNil sets the value for IssuerDN to be an explicit nil

func (*ModelsEnrollmentRenewalResponse) SetKeyfactorId ¶

func (o *ModelsEnrollmentRenewalResponse) SetKeyfactorId(v int32)

SetKeyfactorId gets a reference to the given int32 and assigns it to the KeyfactorId field.

func (*ModelsEnrollmentRenewalResponse) SetKeyfactorRequestId ¶

func (o *ModelsEnrollmentRenewalResponse) SetKeyfactorRequestId(v int32)

SetKeyfactorRequestId gets a reference to the given int32 and assigns it to the KeyfactorRequestId field.

func (*ModelsEnrollmentRenewalResponse) SetPassword ¶

func (o *ModelsEnrollmentRenewalResponse) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ModelsEnrollmentRenewalResponse) SetRequestDisposition ¶

func (o *ModelsEnrollmentRenewalResponse) SetRequestDisposition(v string)

SetRequestDisposition gets a reference to the given string and assigns it to the RequestDisposition field.

func (*ModelsEnrollmentRenewalResponse) SetSerialNumber ¶

func (o *ModelsEnrollmentRenewalResponse) SetSerialNumber(v string)

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (*ModelsEnrollmentRenewalResponse) SetThumbprint ¶

func (o *ModelsEnrollmentRenewalResponse) SetThumbprint(v string)

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (ModelsEnrollmentRenewalResponse) ToMap ¶

func (o ModelsEnrollmentRenewalResponse) ToMap() (map[string]interface{}, error)

func (*ModelsEnrollmentRenewalResponse) UnmarshalJSON ¶

func (o *ModelsEnrollmentRenewalResponse) UnmarshalJSON(bytes []byte) (err error)

func (*ModelsEnrollmentRenewalResponse) UnsetIssuerDN ¶

func (o *ModelsEnrollmentRenewalResponse) UnsetIssuerDN()

UnsetIssuerDN ensures that no value is present for IssuerDN, not even an explicit nil

type ModelsExtendedKeyUsage ¶

type ModelsExtendedKeyUsage struct {
	Id                   *int32  `json:"Id,omitempty"`
	Oid                  *string `json:"Oid,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsExtendedKeyUsage struct for ModelsExtendedKeyUsage

func NewModelsExtendedKeyUsage ¶

func NewModelsExtendedKeyUsage() *ModelsExtendedKeyUsage

NewModelsExtendedKeyUsage instantiates a new ModelsExtendedKeyUsage 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 NewModelsExtendedKeyUsageWithDefaults ¶

func NewModelsExtendedKeyUsageWithDefaults() *ModelsExtendedKeyUsage

NewModelsExtendedKeyUsageWithDefaults instantiates a new ModelsExtendedKeyUsage 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 (*ModelsExtendedKeyUsage) GetDisplayName ¶

func (o *ModelsExtendedKeyUsage) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsExtendedKeyUsage) GetDisplayNameOk ¶

func (o *ModelsExtendedKeyUsage) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsExtendedKeyUsage) GetId ¶

func (o *ModelsExtendedKeyUsage) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsExtendedKeyUsage) GetIdOk ¶

func (o *ModelsExtendedKeyUsage) 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 (*ModelsExtendedKeyUsage) GetOid ¶

func (o *ModelsExtendedKeyUsage) GetOid() string

GetOid returns the Oid field value if set, zero value otherwise.

func (*ModelsExtendedKeyUsage) GetOidOk ¶

func (o *ModelsExtendedKeyUsage) GetOidOk() (*string, bool)

GetOidOk returns a tuple with the Oid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsExtendedKeyUsage) HasDisplayName ¶

func (o *ModelsExtendedKeyUsage) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ModelsExtendedKeyUsage) HasId ¶

func (o *ModelsExtendedKeyUsage) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsExtendedKeyUsage) HasOid ¶

func (o *ModelsExtendedKeyUsage) HasOid() bool

HasOid returns a boolean if a field has been set.

func (ModelsExtendedKeyUsage) MarshalJSON ¶

func (o ModelsExtendedKeyUsage) MarshalJSON() ([]byte, error)

func (*ModelsExtendedKeyUsage) SetDisplayName ¶

func (o *ModelsExtendedKeyUsage) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsExtendedKeyUsage) SetId ¶

func (o *ModelsExtendedKeyUsage) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsExtendedKeyUsage) SetOid ¶

func (o *ModelsExtendedKeyUsage) SetOid(v string)

SetOid gets a reference to the given string and assigns it to the Oid field.

func (ModelsExtendedKeyUsage) ToMap ¶

func (o ModelsExtendedKeyUsage) ToMap() (map[string]interface{}, error)

func (*ModelsExtendedKeyUsage) UnmarshalJSON ¶

func (o *ModelsExtendedKeyUsage) UnmarshalJSON(bytes []byte) (err error)

type ModelsInvalidKeystore ¶

type ModelsInvalidKeystore struct {
	KeystoreId           *string `json:"KeystoreId,omitempty"`
	ClientMachine        *string `json:"ClientMachine,omitempty"`
	StorePath            *string `json:"StorePath,omitempty"`
	Alias                *string `json:"Alias,omitempty"`
	Reason               *int32  `json:"Reason,omitempty"`
	Explanation          *string `json:"Explanation,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsInvalidKeystore struct for ModelsInvalidKeystore

func NewModelsInvalidKeystore ¶

func NewModelsInvalidKeystore() *ModelsInvalidKeystore

NewModelsInvalidKeystore instantiates a new ModelsInvalidKeystore 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 NewModelsInvalidKeystoreWithDefaults ¶

func NewModelsInvalidKeystoreWithDefaults() *ModelsInvalidKeystore

NewModelsInvalidKeystoreWithDefaults instantiates a new ModelsInvalidKeystore 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 (*ModelsInvalidKeystore) GetAlias ¶

func (o *ModelsInvalidKeystore) GetAlias() string

GetAlias returns the Alias field value if set, zero value otherwise.

func (*ModelsInvalidKeystore) GetAliasOk ¶

func (o *ModelsInvalidKeystore) GetAliasOk() (*string, bool)

GetAliasOk returns a tuple with the Alias field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsInvalidKeystore) GetClientMachine ¶

func (o *ModelsInvalidKeystore) GetClientMachine() string

GetClientMachine returns the ClientMachine field value if set, zero value otherwise.

func (*ModelsInvalidKeystore) GetClientMachineOk ¶

func (o *ModelsInvalidKeystore) GetClientMachineOk() (*string, bool)

GetClientMachineOk returns a tuple with the ClientMachine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsInvalidKeystore) GetExplanation ¶

func (o *ModelsInvalidKeystore) GetExplanation() string

GetExplanation returns the Explanation field value if set, zero value otherwise.

func (*ModelsInvalidKeystore) GetExplanationOk ¶

func (o *ModelsInvalidKeystore) GetExplanationOk() (*string, bool)

GetExplanationOk returns a tuple with the Explanation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsInvalidKeystore) GetKeystoreId ¶

func (o *ModelsInvalidKeystore) GetKeystoreId() string

GetKeystoreId returns the KeystoreId field value if set, zero value otherwise.

func (*ModelsInvalidKeystore) GetKeystoreIdOk ¶

func (o *ModelsInvalidKeystore) GetKeystoreIdOk() (*string, bool)

GetKeystoreIdOk returns a tuple with the KeystoreId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsInvalidKeystore) GetReason ¶

func (o *ModelsInvalidKeystore) GetReason() int32

GetReason returns the Reason field value if set, zero value otherwise.

func (*ModelsInvalidKeystore) GetReasonOk ¶

func (o *ModelsInvalidKeystore) GetReasonOk() (*int32, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsInvalidKeystore) GetStorePath ¶

func (o *ModelsInvalidKeystore) GetStorePath() string

GetStorePath returns the StorePath field value if set, zero value otherwise.

func (*ModelsInvalidKeystore) GetStorePathOk ¶

func (o *ModelsInvalidKeystore) GetStorePathOk() (*string, bool)

GetStorePathOk returns a tuple with the StorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsInvalidKeystore) HasAlias ¶

func (o *ModelsInvalidKeystore) HasAlias() bool

HasAlias returns a boolean if a field has been set.

func (*ModelsInvalidKeystore) HasClientMachine ¶

func (o *ModelsInvalidKeystore) HasClientMachine() bool

HasClientMachine returns a boolean if a field has been set.

func (*ModelsInvalidKeystore) HasExplanation ¶

func (o *ModelsInvalidKeystore) HasExplanation() bool

HasExplanation returns a boolean if a field has been set.

func (*ModelsInvalidKeystore) HasKeystoreId ¶

func (o *ModelsInvalidKeystore) HasKeystoreId() bool

HasKeystoreId returns a boolean if a field has been set.

func (*ModelsInvalidKeystore) HasReason ¶

func (o *ModelsInvalidKeystore) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*ModelsInvalidKeystore) HasStorePath ¶

func (o *ModelsInvalidKeystore) HasStorePath() bool

HasStorePath returns a boolean if a field has been set.

func (ModelsInvalidKeystore) MarshalJSON ¶

func (o ModelsInvalidKeystore) MarshalJSON() ([]byte, error)

func (*ModelsInvalidKeystore) SetAlias ¶

func (o *ModelsInvalidKeystore) SetAlias(v string)

SetAlias gets a reference to the given string and assigns it to the Alias field.

func (*ModelsInvalidKeystore) SetClientMachine ¶

func (o *ModelsInvalidKeystore) SetClientMachine(v string)

SetClientMachine gets a reference to the given string and assigns it to the ClientMachine field.

func (*ModelsInvalidKeystore) SetExplanation ¶

func (o *ModelsInvalidKeystore) SetExplanation(v string)

SetExplanation gets a reference to the given string and assigns it to the Explanation field.

func (*ModelsInvalidKeystore) SetKeystoreId ¶

func (o *ModelsInvalidKeystore) SetKeystoreId(v string)

SetKeystoreId gets a reference to the given string and assigns it to the KeystoreId field.

func (*ModelsInvalidKeystore) SetReason ¶

func (o *ModelsInvalidKeystore) SetReason(v int32)

SetReason gets a reference to the given int32 and assigns it to the Reason field.

func (*ModelsInvalidKeystore) SetStorePath ¶

func (o *ModelsInvalidKeystore) SetStorePath(v string)

SetStorePath gets a reference to the given string and assigns it to the StorePath field.

func (ModelsInvalidKeystore) ToMap ¶

func (o ModelsInvalidKeystore) ToMap() (map[string]interface{}, error)

func (*ModelsInvalidKeystore) UnmarshalJSON ¶

func (o *ModelsInvalidKeystore) UnmarshalJSON(bytes []byte) (err error)

type ModelsKeyfactorAPISecret ¶

type ModelsKeyfactorAPISecret struct {
	SecretValue          *string            `json:"SecretValue,omitempty"`
	Parameters           *map[string]string `json:"Parameters,omitempty"`
	Provider             *int32             `json:"Provider,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsKeyfactorAPISecret struct for ModelsKeyfactorAPISecret

func NewModelsKeyfactorAPISecret ¶

func NewModelsKeyfactorAPISecret() *ModelsKeyfactorAPISecret

NewModelsKeyfactorAPISecret instantiates a new ModelsKeyfactorAPISecret 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 NewModelsKeyfactorAPISecretWithDefaults ¶

func NewModelsKeyfactorAPISecretWithDefaults() *ModelsKeyfactorAPISecret

NewModelsKeyfactorAPISecretWithDefaults instantiates a new ModelsKeyfactorAPISecret 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 (*ModelsKeyfactorAPISecret) GetParameters ¶

func (o *ModelsKeyfactorAPISecret) GetParameters() map[string]string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*ModelsKeyfactorAPISecret) GetParametersOk ¶

func (o *ModelsKeyfactorAPISecret) GetParametersOk() (*map[string]string, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsKeyfactorAPISecret) GetProvider ¶

func (o *ModelsKeyfactorAPISecret) GetProvider() int32

GetProvider returns the Provider field value if set, zero value otherwise.

func (*ModelsKeyfactorAPISecret) GetProviderOk ¶

func (o *ModelsKeyfactorAPISecret) GetProviderOk() (*int32, bool)

GetProviderOk returns a tuple with the Provider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsKeyfactorAPISecret) GetSecretValue ¶

func (o *ModelsKeyfactorAPISecret) GetSecretValue() string

GetSecretValue returns the SecretValue field value if set, zero value otherwise.

func (*ModelsKeyfactorAPISecret) GetSecretValueOk ¶

func (o *ModelsKeyfactorAPISecret) GetSecretValueOk() (*string, bool)

GetSecretValueOk returns a tuple with the SecretValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsKeyfactorAPISecret) HasParameters ¶

func (o *ModelsKeyfactorAPISecret) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*ModelsKeyfactorAPISecret) HasProvider ¶

func (o *ModelsKeyfactorAPISecret) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*ModelsKeyfactorAPISecret) HasSecretValue ¶

func (o *ModelsKeyfactorAPISecret) HasSecretValue() bool

HasSecretValue returns a boolean if a field has been set.

func (ModelsKeyfactorAPISecret) MarshalJSON ¶

func (o ModelsKeyfactorAPISecret) MarshalJSON() ([]byte, error)

func (*ModelsKeyfactorAPISecret) SetParameters ¶

func (o *ModelsKeyfactorAPISecret) SetParameters(v map[string]string)

SetParameters gets a reference to the given map[string]string and assigns it to the Parameters field.

func (*ModelsKeyfactorAPISecret) SetProvider ¶

func (o *ModelsKeyfactorAPISecret) SetProvider(v int32)

SetProvider gets a reference to the given int32 and assigns it to the Provider field.

func (*ModelsKeyfactorAPISecret) SetSecretValue ¶

func (o *ModelsKeyfactorAPISecret) SetSecretValue(v string)

SetSecretValue gets a reference to the given string and assigns it to the SecretValue field.

func (ModelsKeyfactorAPISecret) ToMap ¶

func (o ModelsKeyfactorAPISecret) ToMap() (map[string]interface{}, error)

func (*ModelsKeyfactorAPISecret) UnmarshalJSON ¶

func (o *ModelsKeyfactorAPISecret) UnmarshalJSON(bytes []byte) (err error)

type ModelsMetadataAllUpdateRequest ¶

type ModelsMetadataAllUpdateRequest struct {
	Query                *string                             `json:"Query,omitempty"`
	CertificateIds       []int32                             `json:"CertificateIds,omitempty"`
	Metadata             []ModelsMetadataSingleUpdateRequest `json:"Metadata"`
	AdditionalProperties map[string]interface{}
}

ModelsMetadataAllUpdateRequest struct for ModelsMetadataAllUpdateRequest

func NewModelsMetadataAllUpdateRequest ¶

func NewModelsMetadataAllUpdateRequest(metadata []ModelsMetadataSingleUpdateRequest) *ModelsMetadataAllUpdateRequest

NewModelsMetadataAllUpdateRequest instantiates a new ModelsMetadataAllUpdateRequest 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 NewModelsMetadataAllUpdateRequestWithDefaults ¶

func NewModelsMetadataAllUpdateRequestWithDefaults() *ModelsMetadataAllUpdateRequest

NewModelsMetadataAllUpdateRequestWithDefaults instantiates a new ModelsMetadataAllUpdateRequest 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 (*ModelsMetadataAllUpdateRequest) GetCertificateIds ¶

func (o *ModelsMetadataAllUpdateRequest) GetCertificateIds() []int32

GetCertificateIds returns the CertificateIds field value if set, zero value otherwise.

func (*ModelsMetadataAllUpdateRequest) GetCertificateIdsOk ¶

func (o *ModelsMetadataAllUpdateRequest) GetCertificateIdsOk() ([]int32, bool)

GetCertificateIdsOk returns a tuple with the CertificateIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMetadataAllUpdateRequest) GetMetadata ¶

GetMetadata returns the Metadata field value

func (*ModelsMetadataAllUpdateRequest) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*ModelsMetadataAllUpdateRequest) GetQuery ¶

func (o *ModelsMetadataAllUpdateRequest) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise.

func (*ModelsMetadataAllUpdateRequest) GetQueryOk ¶

func (o *ModelsMetadataAllUpdateRequest) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMetadataAllUpdateRequest) HasCertificateIds ¶

func (o *ModelsMetadataAllUpdateRequest) HasCertificateIds() bool

HasCertificateIds returns a boolean if a field has been set.

func (*ModelsMetadataAllUpdateRequest) HasQuery ¶

func (o *ModelsMetadataAllUpdateRequest) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (ModelsMetadataAllUpdateRequest) MarshalJSON ¶

func (o ModelsMetadataAllUpdateRequest) MarshalJSON() ([]byte, error)

func (*ModelsMetadataAllUpdateRequest) SetCertificateIds ¶

func (o *ModelsMetadataAllUpdateRequest) SetCertificateIds(v []int32)

SetCertificateIds gets a reference to the given []int32 and assigns it to the CertificateIds field.

func (*ModelsMetadataAllUpdateRequest) SetMetadata ¶

SetMetadata sets field value

func (*ModelsMetadataAllUpdateRequest) SetQuery ¶

func (o *ModelsMetadataAllUpdateRequest) SetQuery(v string)

SetQuery gets a reference to the given string and assigns it to the Query field.

func (ModelsMetadataAllUpdateRequest) ToMap ¶

func (o ModelsMetadataAllUpdateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsMetadataAllUpdateRequest) UnmarshalJSON ¶

func (o *ModelsMetadataAllUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsMetadataFieldTypeModel ¶

type ModelsMetadataFieldTypeModel struct {
	Id                   *int32  `json:"Id,omitempty"`
	Name                 *string `json:"Name,omitempty"`
	Description          *string `json:"Description,omitempty"`
	DataType             *int32  `json:"DataType,omitempty"`
	Hint                 *string `json:"Hint,omitempty"`
	Validation           *string `json:"Validation,omitempty"`
	Enrollment           *int32  `json:"Enrollment,omitempty"`
	Message              *string `json:"Message,omitempty"`
	Options              *string `json:"Options,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	DisplayOrder         *int32  `json:"DisplayOrder,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsMetadataFieldTypeModel struct for ModelsMetadataFieldTypeModel

func NewModelsMetadataFieldTypeModel ¶

func NewModelsMetadataFieldTypeModel() *ModelsMetadataFieldTypeModel

NewModelsMetadataFieldTypeModel instantiates a new ModelsMetadataFieldTypeModel 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 NewModelsMetadataFieldTypeModelWithDefaults ¶

func NewModelsMetadataFieldTypeModelWithDefaults() *ModelsMetadataFieldTypeModel

NewModelsMetadataFieldTypeModelWithDefaults instantiates a new ModelsMetadataFieldTypeModel 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 (*ModelsMetadataFieldTypeModel) GetDataType ¶

func (o *ModelsMetadataFieldTypeModel) GetDataType() int32

GetDataType returns the DataType field value if set, zero value otherwise.

func (*ModelsMetadataFieldTypeModel) GetDataTypeOk ¶

func (o *ModelsMetadataFieldTypeModel) GetDataTypeOk() (*int32, bool)

GetDataTypeOk returns a tuple with the DataType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMetadataFieldTypeModel) GetDefaultValue ¶

func (o *ModelsMetadataFieldTypeModel) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*ModelsMetadataFieldTypeModel) GetDefaultValueOk ¶

func (o *ModelsMetadataFieldTypeModel) GetDefaultValueOk() (*string, bool)

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMetadataFieldTypeModel) GetDescription ¶

func (o *ModelsMetadataFieldTypeModel) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelsMetadataFieldTypeModel) GetDescriptionOk ¶

func (o *ModelsMetadataFieldTypeModel) 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 (*ModelsMetadataFieldTypeModel) GetDisplayOrder ¶

func (o *ModelsMetadataFieldTypeModel) GetDisplayOrder() int32

GetDisplayOrder returns the DisplayOrder field value if set, zero value otherwise.

func (*ModelsMetadataFieldTypeModel) GetDisplayOrderOk ¶

func (o *ModelsMetadataFieldTypeModel) GetDisplayOrderOk() (*int32, bool)

GetDisplayOrderOk returns a tuple with the DisplayOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMetadataFieldTypeModel) GetEnrollment ¶

func (o *ModelsMetadataFieldTypeModel) GetEnrollment() int32

GetEnrollment returns the Enrollment field value if set, zero value otherwise.

func (*ModelsMetadataFieldTypeModel) GetEnrollmentOk ¶

func (o *ModelsMetadataFieldTypeModel) GetEnrollmentOk() (*int32, bool)

GetEnrollmentOk returns a tuple with the Enrollment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMetadataFieldTypeModel) GetHint ¶

func (o *ModelsMetadataFieldTypeModel) GetHint() string

GetHint returns the Hint field value if set, zero value otherwise.

func (*ModelsMetadataFieldTypeModel) GetHintOk ¶

func (o *ModelsMetadataFieldTypeModel) GetHintOk() (*string, bool)

GetHintOk returns a tuple with the Hint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMetadataFieldTypeModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsMetadataFieldTypeModel) GetIdOk ¶

func (o *ModelsMetadataFieldTypeModel) 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 (*ModelsMetadataFieldTypeModel) GetMessage ¶

func (o *ModelsMetadataFieldTypeModel) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ModelsMetadataFieldTypeModel) GetMessageOk ¶

func (o *ModelsMetadataFieldTypeModel) 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 (*ModelsMetadataFieldTypeModel) GetName ¶

func (o *ModelsMetadataFieldTypeModel) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsMetadataFieldTypeModel) GetNameOk ¶

func (o *ModelsMetadataFieldTypeModel) 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 (*ModelsMetadataFieldTypeModel) GetOptions ¶

func (o *ModelsMetadataFieldTypeModel) GetOptions() string

GetOptions returns the Options field value if set, zero value otherwise.

func (*ModelsMetadataFieldTypeModel) GetOptionsOk ¶

func (o *ModelsMetadataFieldTypeModel) GetOptionsOk() (*string, bool)

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMetadataFieldTypeModel) GetValidation ¶

func (o *ModelsMetadataFieldTypeModel) GetValidation() string

GetValidation returns the Validation field value if set, zero value otherwise.

func (*ModelsMetadataFieldTypeModel) GetValidationOk ¶

func (o *ModelsMetadataFieldTypeModel) GetValidationOk() (*string, bool)

GetValidationOk returns a tuple with the Validation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMetadataFieldTypeModel) HasDataType ¶

func (o *ModelsMetadataFieldTypeModel) HasDataType() bool

HasDataType returns a boolean if a field has been set.

func (*ModelsMetadataFieldTypeModel) HasDefaultValue ¶

func (o *ModelsMetadataFieldTypeModel) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*ModelsMetadataFieldTypeModel) HasDescription ¶

func (o *ModelsMetadataFieldTypeModel) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelsMetadataFieldTypeModel) HasDisplayOrder ¶

func (o *ModelsMetadataFieldTypeModel) HasDisplayOrder() bool

HasDisplayOrder returns a boolean if a field has been set.

func (*ModelsMetadataFieldTypeModel) HasEnrollment ¶

func (o *ModelsMetadataFieldTypeModel) HasEnrollment() bool

HasEnrollment returns a boolean if a field has been set.

func (*ModelsMetadataFieldTypeModel) HasHint ¶

func (o *ModelsMetadataFieldTypeModel) HasHint() bool

HasHint returns a boolean if a field has been set.

func (*ModelsMetadataFieldTypeModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsMetadataFieldTypeModel) HasMessage ¶

func (o *ModelsMetadataFieldTypeModel) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ModelsMetadataFieldTypeModel) HasName ¶

func (o *ModelsMetadataFieldTypeModel) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModelsMetadataFieldTypeModel) HasOptions ¶

func (o *ModelsMetadataFieldTypeModel) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (*ModelsMetadataFieldTypeModel) HasValidation ¶

func (o *ModelsMetadataFieldTypeModel) HasValidation() bool

HasValidation returns a boolean if a field has been set.

func (ModelsMetadataFieldTypeModel) MarshalJSON ¶

func (o ModelsMetadataFieldTypeModel) MarshalJSON() ([]byte, error)

func (*ModelsMetadataFieldTypeModel) SetDataType ¶

func (o *ModelsMetadataFieldTypeModel) SetDataType(v int32)

SetDataType gets a reference to the given int32 and assigns it to the DataType field.

func (*ModelsMetadataFieldTypeModel) SetDefaultValue ¶

func (o *ModelsMetadataFieldTypeModel) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*ModelsMetadataFieldTypeModel) SetDescription ¶

func (o *ModelsMetadataFieldTypeModel) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelsMetadataFieldTypeModel) SetDisplayOrder ¶

func (o *ModelsMetadataFieldTypeModel) SetDisplayOrder(v int32)

SetDisplayOrder gets a reference to the given int32 and assigns it to the DisplayOrder field.

func (*ModelsMetadataFieldTypeModel) SetEnrollment ¶

func (o *ModelsMetadataFieldTypeModel) SetEnrollment(v int32)

SetEnrollment gets a reference to the given int32 and assigns it to the Enrollment field.

func (*ModelsMetadataFieldTypeModel) SetHint ¶

func (o *ModelsMetadataFieldTypeModel) SetHint(v string)

SetHint gets a reference to the given string and assigns it to the Hint field.

func (*ModelsMetadataFieldTypeModel) SetId ¶

func (o *ModelsMetadataFieldTypeModel) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsMetadataFieldTypeModel) SetMessage ¶

func (o *ModelsMetadataFieldTypeModel) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ModelsMetadataFieldTypeModel) SetName ¶

func (o *ModelsMetadataFieldTypeModel) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsMetadataFieldTypeModel) SetOptions ¶

func (o *ModelsMetadataFieldTypeModel) SetOptions(v string)

SetOptions gets a reference to the given string and assigns it to the Options field.

func (*ModelsMetadataFieldTypeModel) SetValidation ¶

func (o *ModelsMetadataFieldTypeModel) SetValidation(v string)

SetValidation gets a reference to the given string and assigns it to the Validation field.

func (ModelsMetadataFieldTypeModel) ToMap ¶

func (o ModelsMetadataFieldTypeModel) ToMap() (map[string]interface{}, error)

func (*ModelsMetadataFieldTypeModel) UnmarshalJSON ¶

func (o *ModelsMetadataFieldTypeModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsMetadataSingleUpdateRequest ¶

type ModelsMetadataSingleUpdateRequest struct {
	MetadataName         *string `json:"MetadataName,omitempty"`
	Value                *string `json:"Value,omitempty"`
	OverwriteExisting    *bool   `json:"OverwriteExisting,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsMetadataSingleUpdateRequest struct for ModelsMetadataSingleUpdateRequest

func NewModelsMetadataSingleUpdateRequest ¶

func NewModelsMetadataSingleUpdateRequest() *ModelsMetadataSingleUpdateRequest

NewModelsMetadataSingleUpdateRequest instantiates a new ModelsMetadataSingleUpdateRequest 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 NewModelsMetadataSingleUpdateRequestWithDefaults ¶

func NewModelsMetadataSingleUpdateRequestWithDefaults() *ModelsMetadataSingleUpdateRequest

NewModelsMetadataSingleUpdateRequestWithDefaults instantiates a new ModelsMetadataSingleUpdateRequest 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 (*ModelsMetadataSingleUpdateRequest) GetMetadataName ¶

func (o *ModelsMetadataSingleUpdateRequest) GetMetadataName() string

GetMetadataName returns the MetadataName field value if set, zero value otherwise.

func (*ModelsMetadataSingleUpdateRequest) GetMetadataNameOk ¶

func (o *ModelsMetadataSingleUpdateRequest) GetMetadataNameOk() (*string, bool)

GetMetadataNameOk returns a tuple with the MetadataName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMetadataSingleUpdateRequest) GetOverwriteExisting ¶

func (o *ModelsMetadataSingleUpdateRequest) GetOverwriteExisting() bool

GetOverwriteExisting returns the OverwriteExisting field value if set, zero value otherwise.

func (*ModelsMetadataSingleUpdateRequest) GetOverwriteExistingOk ¶

func (o *ModelsMetadataSingleUpdateRequest) GetOverwriteExistingOk() (*bool, bool)

GetOverwriteExistingOk returns a tuple with the OverwriteExisting field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMetadataSingleUpdateRequest) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*ModelsMetadataSingleUpdateRequest) GetValueOk ¶

func (o *ModelsMetadataSingleUpdateRequest) 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 (*ModelsMetadataSingleUpdateRequest) HasMetadataName ¶

func (o *ModelsMetadataSingleUpdateRequest) HasMetadataName() bool

HasMetadataName returns a boolean if a field has been set.

func (*ModelsMetadataSingleUpdateRequest) HasOverwriteExisting ¶

func (o *ModelsMetadataSingleUpdateRequest) HasOverwriteExisting() bool

HasOverwriteExisting returns a boolean if a field has been set.

func (*ModelsMetadataSingleUpdateRequest) HasValue ¶

HasValue returns a boolean if a field has been set.

func (ModelsMetadataSingleUpdateRequest) MarshalJSON ¶

func (o ModelsMetadataSingleUpdateRequest) MarshalJSON() ([]byte, error)

func (*ModelsMetadataSingleUpdateRequest) SetMetadataName ¶

func (o *ModelsMetadataSingleUpdateRequest) SetMetadataName(v string)

SetMetadataName gets a reference to the given string and assigns it to the MetadataName field.

func (*ModelsMetadataSingleUpdateRequest) SetOverwriteExisting ¶

func (o *ModelsMetadataSingleUpdateRequest) SetOverwriteExisting(v bool)

SetOverwriteExisting gets a reference to the given bool and assigns it to the OverwriteExisting field.

func (*ModelsMetadataSingleUpdateRequest) SetValue ¶

SetValue gets a reference to the given string and assigns it to the Value field.

func (ModelsMetadataSingleUpdateRequest) ToMap ¶

func (o ModelsMetadataSingleUpdateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsMetadataSingleUpdateRequest) UnmarshalJSON ¶

func (o *ModelsMetadataSingleUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsMetadataUpdateRequest ¶

type ModelsMetadataUpdateRequest struct {
	Id                   *int32            `json:"Id,omitempty"`
	Metadata             map[string]string `json:"Metadata"`
	AdditionalProperties map[string]interface{}
}

ModelsMetadataUpdateRequest struct for ModelsMetadataUpdateRequest

func NewModelsMetadataUpdateRequest ¶

func NewModelsMetadataUpdateRequest(metadata map[string]string) *ModelsMetadataUpdateRequest

NewModelsMetadataUpdateRequest instantiates a new ModelsMetadataUpdateRequest 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 NewModelsMetadataUpdateRequestWithDefaults ¶

func NewModelsMetadataUpdateRequestWithDefaults() *ModelsMetadataUpdateRequest

NewModelsMetadataUpdateRequestWithDefaults instantiates a new ModelsMetadataUpdateRequest 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 (*ModelsMetadataUpdateRequest) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsMetadataUpdateRequest) GetIdOk ¶

func (o *ModelsMetadataUpdateRequest) 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 (*ModelsMetadataUpdateRequest) GetMetadata ¶

func (o *ModelsMetadataUpdateRequest) GetMetadata() map[string]string

GetMetadata returns the Metadata field value

func (*ModelsMetadataUpdateRequest) GetMetadataOk ¶

func (o *ModelsMetadataUpdateRequest) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value and a boolean to check if the value has been set.

func (*ModelsMetadataUpdateRequest) HasId ¶

func (o *ModelsMetadataUpdateRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (ModelsMetadataUpdateRequest) MarshalJSON ¶

func (o ModelsMetadataUpdateRequest) MarshalJSON() ([]byte, error)

func (*ModelsMetadataUpdateRequest) SetId ¶

func (o *ModelsMetadataUpdateRequest) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsMetadataUpdateRequest) SetMetadata ¶

func (o *ModelsMetadataUpdateRequest) SetMetadata(v map[string]string)

SetMetadata sets field value

func (ModelsMetadataUpdateRequest) ToMap ¶

func (o ModelsMetadataUpdateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsMetadataUpdateRequest) UnmarshalJSON ¶

func (o *ModelsMetadataUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsMonitoringRevocationMonitoringAlertResponse ¶

type ModelsMonitoringRevocationMonitoringAlertResponse struct {
	Subject              *string  `json:"Subject,omitempty"`
	Message              *string  `json:"Message,omitempty"`
	Recipients           []string `json:"Recipients,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsMonitoringRevocationMonitoringAlertResponse struct for ModelsMonitoringRevocationMonitoringAlertResponse

func NewModelsMonitoringRevocationMonitoringAlertResponse ¶

func NewModelsMonitoringRevocationMonitoringAlertResponse() *ModelsMonitoringRevocationMonitoringAlertResponse

NewModelsMonitoringRevocationMonitoringAlertResponse instantiates a new ModelsMonitoringRevocationMonitoringAlertResponse 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 NewModelsMonitoringRevocationMonitoringAlertResponseWithDefaults ¶

func NewModelsMonitoringRevocationMonitoringAlertResponseWithDefaults() *ModelsMonitoringRevocationMonitoringAlertResponse

NewModelsMonitoringRevocationMonitoringAlertResponseWithDefaults instantiates a new ModelsMonitoringRevocationMonitoringAlertResponse 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 (*ModelsMonitoringRevocationMonitoringAlertResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*ModelsMonitoringRevocationMonitoringAlertResponse) GetMessageOk ¶

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 (*ModelsMonitoringRevocationMonitoringAlertResponse) GetRecipients ¶

GetRecipients returns the Recipients field value if set, zero value otherwise.

func (*ModelsMonitoringRevocationMonitoringAlertResponse) GetRecipientsOk ¶

GetRecipientsOk returns a tuple with the Recipients field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMonitoringRevocationMonitoringAlertResponse) GetSubject ¶

GetSubject returns the Subject field value if set, zero value otherwise.

func (*ModelsMonitoringRevocationMonitoringAlertResponse) GetSubjectOk ¶

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsMonitoringRevocationMonitoringAlertResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*ModelsMonitoringRevocationMonitoringAlertResponse) HasRecipients ¶

HasRecipients returns a boolean if a field has been set.

func (*ModelsMonitoringRevocationMonitoringAlertResponse) HasSubject ¶

HasSubject returns a boolean if a field has been set.

func (ModelsMonitoringRevocationMonitoringAlertResponse) MarshalJSON ¶

func (*ModelsMonitoringRevocationMonitoringAlertResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ModelsMonitoringRevocationMonitoringAlertResponse) SetRecipients ¶

SetRecipients gets a reference to the given []string and assigns it to the Recipients field.

func (*ModelsMonitoringRevocationMonitoringAlertResponse) SetSubject ¶

SetSubject gets a reference to the given string and assigns it to the Subject field.

func (ModelsMonitoringRevocationMonitoringAlertResponse) ToMap ¶

func (o ModelsMonitoringRevocationMonitoringAlertResponse) ToMap() (map[string]interface{}, error)

func (*ModelsMonitoringRevocationMonitoringAlertResponse) UnmarshalJSON ¶

func (o *ModelsMonitoringRevocationMonitoringAlertResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsOrchestratorJobsBulkOrchestratorJobPair ¶

type ModelsOrchestratorJobsBulkOrchestratorJobPair struct {
	JobId                *string `json:"JobId,omitempty"`
	OrchestratorId       *string `json:"OrchestratorId,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsOrchestratorJobsBulkOrchestratorJobPair struct for ModelsOrchestratorJobsBulkOrchestratorJobPair

func NewModelsOrchestratorJobsBulkOrchestratorJobPair ¶

func NewModelsOrchestratorJobsBulkOrchestratorJobPair() *ModelsOrchestratorJobsBulkOrchestratorJobPair

NewModelsOrchestratorJobsBulkOrchestratorJobPair instantiates a new ModelsOrchestratorJobsBulkOrchestratorJobPair 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 NewModelsOrchestratorJobsBulkOrchestratorJobPairWithDefaults ¶

func NewModelsOrchestratorJobsBulkOrchestratorJobPairWithDefaults() *ModelsOrchestratorJobsBulkOrchestratorJobPair

NewModelsOrchestratorJobsBulkOrchestratorJobPairWithDefaults instantiates a new ModelsOrchestratorJobsBulkOrchestratorJobPair 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 (*ModelsOrchestratorJobsBulkOrchestratorJobPair) GetJobId ¶

GetJobId returns the JobId field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsBulkOrchestratorJobPair) GetJobIdOk ¶

GetJobIdOk returns a tuple with the JobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsBulkOrchestratorJobPair) GetOrchestratorId ¶

GetOrchestratorId returns the OrchestratorId field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsBulkOrchestratorJobPair) GetOrchestratorIdOk ¶

func (o *ModelsOrchestratorJobsBulkOrchestratorJobPair) GetOrchestratorIdOk() (*string, bool)

GetOrchestratorIdOk returns a tuple with the OrchestratorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsBulkOrchestratorJobPair) HasJobId ¶

HasJobId returns a boolean if a field has been set.

func (*ModelsOrchestratorJobsBulkOrchestratorJobPair) HasOrchestratorId ¶

func (o *ModelsOrchestratorJobsBulkOrchestratorJobPair) HasOrchestratorId() bool

HasOrchestratorId returns a boolean if a field has been set.

func (ModelsOrchestratorJobsBulkOrchestratorJobPair) MarshalJSON ¶

func (*ModelsOrchestratorJobsBulkOrchestratorJobPair) SetJobId ¶

SetJobId gets a reference to the given string and assigns it to the JobId field.

func (*ModelsOrchestratorJobsBulkOrchestratorJobPair) SetOrchestratorId ¶

func (o *ModelsOrchestratorJobsBulkOrchestratorJobPair) SetOrchestratorId(v string)

SetOrchestratorId gets a reference to the given string and assigns it to the OrchestratorId field.

func (ModelsOrchestratorJobsBulkOrchestratorJobPair) ToMap ¶

func (o ModelsOrchestratorJobsBulkOrchestratorJobPair) ToMap() (map[string]interface{}, error)

func (*ModelsOrchestratorJobsBulkOrchestratorJobPair) UnmarshalJSON ¶

func (o *ModelsOrchestratorJobsBulkOrchestratorJobPair) UnmarshalJSON(bytes []byte) (err error)

type ModelsOrchestratorJobsJob ¶

type ModelsOrchestratorJobsJob struct {
	Id                   *string                                     `json:"Id,omitempty"`
	ClientMachine        *string                                     `json:"ClientMachine,omitempty"`
	Target               *string                                     `json:"Target,omitempty"`
	Schedule             *KeyfactorCommonSchedulingKeyfactorSchedule `json:"Schedule,omitempty"`
	Requested            *string                                     `json:"Requested,omitempty"`
	JobType              *string                                     `json:"JobType,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsOrchestratorJobsJob struct for ModelsOrchestratorJobsJob

func NewModelsOrchestratorJobsJob ¶

func NewModelsOrchestratorJobsJob() *ModelsOrchestratorJobsJob

NewModelsOrchestratorJobsJob instantiates a new ModelsOrchestratorJobsJob 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 NewModelsOrchestratorJobsJobWithDefaults ¶

func NewModelsOrchestratorJobsJobWithDefaults() *ModelsOrchestratorJobsJob

NewModelsOrchestratorJobsJobWithDefaults instantiates a new ModelsOrchestratorJobsJob 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 (*ModelsOrchestratorJobsJob) GetClientMachine ¶

func (o *ModelsOrchestratorJobsJob) GetClientMachine() string

GetClientMachine returns the ClientMachine field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJob) GetClientMachineOk ¶

func (o *ModelsOrchestratorJobsJob) GetClientMachineOk() (*string, bool)

GetClientMachineOk returns a tuple with the ClientMachine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJob) GetId ¶

func (o *ModelsOrchestratorJobsJob) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJob) GetIdOk ¶

func (o *ModelsOrchestratorJobsJob) GetIdOk() (*string, 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 (*ModelsOrchestratorJobsJob) GetJobType ¶

func (o *ModelsOrchestratorJobsJob) GetJobType() string

GetJobType returns the JobType field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJob) GetJobTypeOk ¶

func (o *ModelsOrchestratorJobsJob) GetJobTypeOk() (*string, bool)

GetJobTypeOk returns a tuple with the JobType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJob) GetRequested ¶

func (o *ModelsOrchestratorJobsJob) GetRequested() string

GetRequested returns the Requested field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJob) GetRequestedOk ¶

func (o *ModelsOrchestratorJobsJob) GetRequestedOk() (*string, bool)

GetRequestedOk returns a tuple with the Requested field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJob) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJob) GetScheduleOk ¶

GetScheduleOk returns a tuple with the Schedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJob) GetTarget ¶

func (o *ModelsOrchestratorJobsJob) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJob) GetTargetOk ¶

func (o *ModelsOrchestratorJobsJob) GetTargetOk() (*string, bool)

GetTargetOk returns a tuple with the Target field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJob) HasClientMachine ¶

func (o *ModelsOrchestratorJobsJob) HasClientMachine() bool

HasClientMachine returns a boolean if a field has been set.

func (*ModelsOrchestratorJobsJob) HasId ¶

func (o *ModelsOrchestratorJobsJob) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsOrchestratorJobsJob) HasJobType ¶

func (o *ModelsOrchestratorJobsJob) HasJobType() bool

HasJobType returns a boolean if a field has been set.

func (*ModelsOrchestratorJobsJob) HasRequested ¶

func (o *ModelsOrchestratorJobsJob) HasRequested() bool

HasRequested returns a boolean if a field has been set.

func (*ModelsOrchestratorJobsJob) HasSchedule ¶

func (o *ModelsOrchestratorJobsJob) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*ModelsOrchestratorJobsJob) HasTarget ¶

func (o *ModelsOrchestratorJobsJob) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (ModelsOrchestratorJobsJob) MarshalJSON ¶

func (o ModelsOrchestratorJobsJob) MarshalJSON() ([]byte, error)

func (*ModelsOrchestratorJobsJob) SetClientMachine ¶

func (o *ModelsOrchestratorJobsJob) SetClientMachine(v string)

SetClientMachine gets a reference to the given string and assigns it to the ClientMachine field.

func (*ModelsOrchestratorJobsJob) SetId ¶

func (o *ModelsOrchestratorJobsJob) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ModelsOrchestratorJobsJob) SetJobType ¶

func (o *ModelsOrchestratorJobsJob) SetJobType(v string)

SetJobType gets a reference to the given string and assigns it to the JobType field.

func (*ModelsOrchestratorJobsJob) SetRequested ¶

func (o *ModelsOrchestratorJobsJob) SetRequested(v string)

SetRequested gets a reference to the given string and assigns it to the Requested field.

func (*ModelsOrchestratorJobsJob) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (*ModelsOrchestratorJobsJob) SetTarget ¶

func (o *ModelsOrchestratorJobsJob) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

func (ModelsOrchestratorJobsJob) ToMap ¶

func (o ModelsOrchestratorJobsJob) ToMap() (map[string]interface{}, error)

func (*ModelsOrchestratorJobsJob) UnmarshalJSON ¶

func (o *ModelsOrchestratorJobsJob) UnmarshalJSON(bytes []byte) (err error)

type ModelsOrchestratorJobsJobTypeCreateRequest ¶

type ModelsOrchestratorJobsJobTypeCreateRequest struct {
	JobTypeName          string                                      `json:"JobTypeName"`
	Description          *string                                     `json:"Description,omitempty"`
	JobTypeFields        []ModelsOrchestratorJobsJobTypeFieldRequest `json:"JobTypeFields,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsOrchestratorJobsJobTypeCreateRequest struct for ModelsOrchestratorJobsJobTypeCreateRequest

func NewModelsOrchestratorJobsJobTypeCreateRequest ¶

func NewModelsOrchestratorJobsJobTypeCreateRequest(jobTypeName string) *ModelsOrchestratorJobsJobTypeCreateRequest

NewModelsOrchestratorJobsJobTypeCreateRequest instantiates a new ModelsOrchestratorJobsJobTypeCreateRequest 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 NewModelsOrchestratorJobsJobTypeCreateRequestWithDefaults ¶

func NewModelsOrchestratorJobsJobTypeCreateRequestWithDefaults() *ModelsOrchestratorJobsJobTypeCreateRequest

NewModelsOrchestratorJobsJobTypeCreateRequestWithDefaults instantiates a new ModelsOrchestratorJobsJobTypeCreateRequest 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 (*ModelsOrchestratorJobsJobTypeCreateRequest) GetDescription ¶

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJobTypeCreateRequest) GetDescriptionOk ¶

func (o *ModelsOrchestratorJobsJobTypeCreateRequest) 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 (*ModelsOrchestratorJobsJobTypeCreateRequest) GetJobTypeFields ¶

GetJobTypeFields returns the JobTypeFields field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJobTypeCreateRequest) GetJobTypeFieldsOk ¶

GetJobTypeFieldsOk returns a tuple with the JobTypeFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJobTypeCreateRequest) GetJobTypeName ¶

GetJobTypeName returns the JobTypeName field value

func (*ModelsOrchestratorJobsJobTypeCreateRequest) GetJobTypeNameOk ¶

func (o *ModelsOrchestratorJobsJobTypeCreateRequest) GetJobTypeNameOk() (*string, bool)

GetJobTypeNameOk returns a tuple with the JobTypeName field value and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJobTypeCreateRequest) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*ModelsOrchestratorJobsJobTypeCreateRequest) HasJobTypeFields ¶

func (o *ModelsOrchestratorJobsJobTypeCreateRequest) HasJobTypeFields() bool

HasJobTypeFields returns a boolean if a field has been set.

func (ModelsOrchestratorJobsJobTypeCreateRequest) MarshalJSON ¶

func (*ModelsOrchestratorJobsJobTypeCreateRequest) SetDescription ¶

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelsOrchestratorJobsJobTypeCreateRequest) SetJobTypeFields ¶

SetJobTypeFields gets a reference to the given []ModelsOrchestratorJobsJobTypeFieldRequest and assigns it to the JobTypeFields field.

func (*ModelsOrchestratorJobsJobTypeCreateRequest) SetJobTypeName ¶

SetJobTypeName sets field value

func (ModelsOrchestratorJobsJobTypeCreateRequest) ToMap ¶

func (o ModelsOrchestratorJobsJobTypeCreateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsOrchestratorJobsJobTypeCreateRequest) UnmarshalJSON ¶

func (o *ModelsOrchestratorJobsJobTypeCreateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsOrchestratorJobsJobTypeFieldRequest ¶

type ModelsOrchestratorJobsJobTypeFieldRequest struct {
	Name                 string  `json:"Name"`
	Type                 int32   `json:"Type"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	Required             *bool   `json:"Required,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsOrchestratorJobsJobTypeFieldRequest struct for ModelsOrchestratorJobsJobTypeFieldRequest

func NewModelsOrchestratorJobsJobTypeFieldRequest ¶

func NewModelsOrchestratorJobsJobTypeFieldRequest(name string, type_ int32) *ModelsOrchestratorJobsJobTypeFieldRequest

NewModelsOrchestratorJobsJobTypeFieldRequest instantiates a new ModelsOrchestratorJobsJobTypeFieldRequest 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 NewModelsOrchestratorJobsJobTypeFieldRequestWithDefaults ¶

func NewModelsOrchestratorJobsJobTypeFieldRequestWithDefaults() *ModelsOrchestratorJobsJobTypeFieldRequest

NewModelsOrchestratorJobsJobTypeFieldRequestWithDefaults instantiates a new ModelsOrchestratorJobsJobTypeFieldRequest 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 (*ModelsOrchestratorJobsJobTypeFieldRequest) GetDefaultValue ¶

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJobTypeFieldRequest) GetDefaultValueOk ¶

func (o *ModelsOrchestratorJobsJobTypeFieldRequest) GetDefaultValueOk() (*string, bool)

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJobTypeFieldRequest) GetName ¶

GetName returns the Name field value

func (*ModelsOrchestratorJobsJobTypeFieldRequest) GetNameOk ¶

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJobTypeFieldRequest) GetRequired ¶

GetRequired returns the Required field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJobTypeFieldRequest) GetRequiredOk ¶

func (o *ModelsOrchestratorJobsJobTypeFieldRequest) GetRequiredOk() (*bool, bool)

GetRequiredOk returns a tuple with the Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJobTypeFieldRequest) GetType ¶

GetType returns the Type field value

func (*ModelsOrchestratorJobsJobTypeFieldRequest) GetTypeOk ¶

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJobTypeFieldRequest) HasDefaultValue ¶

func (o *ModelsOrchestratorJobsJobTypeFieldRequest) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*ModelsOrchestratorJobsJobTypeFieldRequest) HasRequired ¶

HasRequired returns a boolean if a field has been set.

func (ModelsOrchestratorJobsJobTypeFieldRequest) MarshalJSON ¶

func (*ModelsOrchestratorJobsJobTypeFieldRequest) SetDefaultValue ¶

func (o *ModelsOrchestratorJobsJobTypeFieldRequest) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*ModelsOrchestratorJobsJobTypeFieldRequest) SetName ¶

SetName sets field value

func (*ModelsOrchestratorJobsJobTypeFieldRequest) SetRequired ¶

SetRequired gets a reference to the given bool and assigns it to the Required field.

func (*ModelsOrchestratorJobsJobTypeFieldRequest) SetType ¶

SetType sets field value

func (ModelsOrchestratorJobsJobTypeFieldRequest) ToMap ¶

func (o ModelsOrchestratorJobsJobTypeFieldRequest) ToMap() (map[string]interface{}, error)

func (*ModelsOrchestratorJobsJobTypeFieldRequest) UnmarshalJSON ¶

func (o *ModelsOrchestratorJobsJobTypeFieldRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsOrchestratorJobsJobTypeUpdateRequest ¶

type ModelsOrchestratorJobsJobTypeUpdateRequest struct {
	Id                   string                                      `json:"Id"`
	JobTypeName          string                                      `json:"JobTypeName"`
	Description          *string                                     `json:"Description,omitempty"`
	JobTypeFields        []ModelsOrchestratorJobsJobTypeFieldRequest `json:"JobTypeFields,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsOrchestratorJobsJobTypeUpdateRequest struct for ModelsOrchestratorJobsJobTypeUpdateRequest

func NewModelsOrchestratorJobsJobTypeUpdateRequest ¶

func NewModelsOrchestratorJobsJobTypeUpdateRequest(id string, jobTypeName string) *ModelsOrchestratorJobsJobTypeUpdateRequest

NewModelsOrchestratorJobsJobTypeUpdateRequest instantiates a new ModelsOrchestratorJobsJobTypeUpdateRequest 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 NewModelsOrchestratorJobsJobTypeUpdateRequestWithDefaults ¶

func NewModelsOrchestratorJobsJobTypeUpdateRequestWithDefaults() *ModelsOrchestratorJobsJobTypeUpdateRequest

NewModelsOrchestratorJobsJobTypeUpdateRequestWithDefaults instantiates a new ModelsOrchestratorJobsJobTypeUpdateRequest 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 (*ModelsOrchestratorJobsJobTypeUpdateRequest) GetDescription ¶

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) GetDescriptionOk ¶

func (o *ModelsOrchestratorJobsJobTypeUpdateRequest) 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 (*ModelsOrchestratorJobsJobTypeUpdateRequest) GetId ¶

GetId returns the Id field value

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) GetIdOk ¶

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) GetJobTypeFields ¶

GetJobTypeFields returns the JobTypeFields field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) GetJobTypeFieldsOk ¶

GetJobTypeFieldsOk returns a tuple with the JobTypeFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) GetJobTypeName ¶

GetJobTypeName returns the JobTypeName field value

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) GetJobTypeNameOk ¶

func (o *ModelsOrchestratorJobsJobTypeUpdateRequest) GetJobTypeNameOk() (*string, bool)

GetJobTypeNameOk returns a tuple with the JobTypeName field value and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) HasDescription ¶

HasDescription returns a boolean if a field has been set.

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) HasJobTypeFields ¶

func (o *ModelsOrchestratorJobsJobTypeUpdateRequest) HasJobTypeFields() bool

HasJobTypeFields returns a boolean if a field has been set.

func (ModelsOrchestratorJobsJobTypeUpdateRequest) MarshalJSON ¶

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) SetDescription ¶

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) SetId ¶

SetId sets field value

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) SetJobTypeFields ¶

SetJobTypeFields gets a reference to the given []ModelsOrchestratorJobsJobTypeFieldRequest and assigns it to the JobTypeFields field.

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) SetJobTypeName ¶

SetJobTypeName sets field value

func (ModelsOrchestratorJobsJobTypeUpdateRequest) ToMap ¶

func (o ModelsOrchestratorJobsJobTypeUpdateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsOrchestratorJobsJobTypeUpdateRequest) UnmarshalJSON ¶

func (o *ModelsOrchestratorJobsJobTypeUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsOrchestratorJobsScheduleBulkJobRequest ¶

type ModelsOrchestratorJobsScheduleBulkJobRequest struct {
	OrchestratorIds      []string                                    `json:"OrchestratorIds"`
	JobTypeName          string                                      `json:"JobTypeName"`
	Schedule             *KeyfactorCommonSchedulingKeyfactorSchedule `json:"Schedule,omitempty"`
	JobFields            *map[string]string                          `json:"JobFields,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsOrchestratorJobsScheduleBulkJobRequest struct for ModelsOrchestratorJobsScheduleBulkJobRequest

func NewModelsOrchestratorJobsScheduleBulkJobRequest ¶

func NewModelsOrchestratorJobsScheduleBulkJobRequest(orchestratorIds []string, jobTypeName string) *ModelsOrchestratorJobsScheduleBulkJobRequest

NewModelsOrchestratorJobsScheduleBulkJobRequest instantiates a new ModelsOrchestratorJobsScheduleBulkJobRequest 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 NewModelsOrchestratorJobsScheduleBulkJobRequestWithDefaults ¶

func NewModelsOrchestratorJobsScheduleBulkJobRequestWithDefaults() *ModelsOrchestratorJobsScheduleBulkJobRequest

NewModelsOrchestratorJobsScheduleBulkJobRequestWithDefaults instantiates a new ModelsOrchestratorJobsScheduleBulkJobRequest 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 (*ModelsOrchestratorJobsScheduleBulkJobRequest) GetJobFields ¶

GetJobFields returns the JobFields field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) GetJobFieldsOk ¶

func (o *ModelsOrchestratorJobsScheduleBulkJobRequest) GetJobFieldsOk() (*map[string]string, bool)

GetJobFieldsOk returns a tuple with the JobFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) GetJobTypeName ¶

GetJobTypeName returns the JobTypeName field value

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) GetJobTypeNameOk ¶

func (o *ModelsOrchestratorJobsScheduleBulkJobRequest) GetJobTypeNameOk() (*string, bool)

GetJobTypeNameOk returns a tuple with the JobTypeName field value and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) GetOrchestratorIds ¶

func (o *ModelsOrchestratorJobsScheduleBulkJobRequest) GetOrchestratorIds() []string

GetOrchestratorIds returns the OrchestratorIds field value

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) GetOrchestratorIdsOk ¶

func (o *ModelsOrchestratorJobsScheduleBulkJobRequest) GetOrchestratorIdsOk() ([]string, bool)

GetOrchestratorIdsOk returns a tuple with the OrchestratorIds field value and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) GetScheduleOk ¶

GetScheduleOk returns a tuple with the Schedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) HasJobFields ¶

HasJobFields returns a boolean if a field has been set.

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) HasSchedule ¶

HasSchedule returns a boolean if a field has been set.

func (ModelsOrchestratorJobsScheduleBulkJobRequest) MarshalJSON ¶

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) SetJobFields ¶

SetJobFields gets a reference to the given map[string]string and assigns it to the JobFields field.

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) SetJobTypeName ¶

SetJobTypeName sets field value

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) SetOrchestratorIds ¶

func (o *ModelsOrchestratorJobsScheduleBulkJobRequest) SetOrchestratorIds(v []string)

SetOrchestratorIds sets field value

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (ModelsOrchestratorJobsScheduleBulkJobRequest) ToMap ¶

func (o ModelsOrchestratorJobsScheduleBulkJobRequest) ToMap() (map[string]interface{}, error)

func (*ModelsOrchestratorJobsScheduleBulkJobRequest) UnmarshalJSON ¶

func (o *ModelsOrchestratorJobsScheduleBulkJobRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsOrchestratorJobsScheduleJobRequest ¶

type ModelsOrchestratorJobsScheduleJobRequest struct {
	AgentId              string                                      `json:"AgentId"`
	JobTypeName          string                                      `json:"JobTypeName"`
	Schedule             *KeyfactorCommonSchedulingKeyfactorSchedule `json:"Schedule,omitempty"`
	JobFields            *map[string]string                          `json:"JobFields,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsOrchestratorJobsScheduleJobRequest struct for ModelsOrchestratorJobsScheduleJobRequest

func NewModelsOrchestratorJobsScheduleJobRequest ¶

func NewModelsOrchestratorJobsScheduleJobRequest(agentId string, jobTypeName string) *ModelsOrchestratorJobsScheduleJobRequest

NewModelsOrchestratorJobsScheduleJobRequest instantiates a new ModelsOrchestratorJobsScheduleJobRequest 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 NewModelsOrchestratorJobsScheduleJobRequestWithDefaults ¶

func NewModelsOrchestratorJobsScheduleJobRequestWithDefaults() *ModelsOrchestratorJobsScheduleJobRequest

NewModelsOrchestratorJobsScheduleJobRequestWithDefaults instantiates a new ModelsOrchestratorJobsScheduleJobRequest 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 (*ModelsOrchestratorJobsScheduleJobRequest) GetAgentId ¶

GetAgentId returns the AgentId field value

func (*ModelsOrchestratorJobsScheduleJobRequest) GetAgentIdOk ¶

GetAgentIdOk returns a tuple with the AgentId field value and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsScheduleJobRequest) GetJobFields ¶

GetJobFields returns the JobFields field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsScheduleJobRequest) GetJobFieldsOk ¶

func (o *ModelsOrchestratorJobsScheduleJobRequest) GetJobFieldsOk() (*map[string]string, bool)

GetJobFieldsOk returns a tuple with the JobFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsScheduleJobRequest) GetJobTypeName ¶

GetJobTypeName returns the JobTypeName field value

func (*ModelsOrchestratorJobsScheduleJobRequest) GetJobTypeNameOk ¶

func (o *ModelsOrchestratorJobsScheduleJobRequest) GetJobTypeNameOk() (*string, bool)

GetJobTypeNameOk returns a tuple with the JobTypeName field value and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsScheduleJobRequest) GetSchedule ¶

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*ModelsOrchestratorJobsScheduleJobRequest) GetScheduleOk ¶

GetScheduleOk returns a tuple with the Schedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsOrchestratorJobsScheduleJobRequest) HasJobFields ¶

HasJobFields returns a boolean if a field has been set.

func (*ModelsOrchestratorJobsScheduleJobRequest) HasSchedule ¶

HasSchedule returns a boolean if a field has been set.

func (ModelsOrchestratorJobsScheduleJobRequest) MarshalJSON ¶

func (*ModelsOrchestratorJobsScheduleJobRequest) SetAgentId ¶

SetAgentId sets field value

func (*ModelsOrchestratorJobsScheduleJobRequest) SetJobFields ¶

SetJobFields gets a reference to the given map[string]string and assigns it to the JobFields field.

func (*ModelsOrchestratorJobsScheduleJobRequest) SetJobTypeName ¶

func (o *ModelsOrchestratorJobsScheduleJobRequest) SetJobTypeName(v string)

SetJobTypeName sets field value

func (*ModelsOrchestratorJobsScheduleJobRequest) SetSchedule ¶

SetSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the Schedule field.

func (ModelsOrchestratorJobsScheduleJobRequest) ToMap ¶

func (o ModelsOrchestratorJobsScheduleJobRequest) ToMap() (map[string]interface{}, error)

func (*ModelsOrchestratorJobsScheduleJobRequest) UnmarshalJSON ¶

func (o *ModelsOrchestratorJobsScheduleJobRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsPKICertificateOperation ¶

type ModelsPKICertificateOperation struct {
	Id                   *int64     `json:"Id,omitempty"`
	OperationStart       *time.Time `json:"OperationStart,omitempty"`
	OperationEnd         *time.Time `json:"OperationEnd,omitempty"`
	Username             *string    `json:"Username,omitempty"`
	Comment              *string    `json:"Comment,omitempty"`
	Action               *string    `json:"Action,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsPKICertificateOperation Details of an operation done on a certificate.

func NewModelsPKICertificateOperation ¶

func NewModelsPKICertificateOperation() *ModelsPKICertificateOperation

NewModelsPKICertificateOperation instantiates a new ModelsPKICertificateOperation 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 NewModelsPKICertificateOperationWithDefaults ¶

func NewModelsPKICertificateOperationWithDefaults() *ModelsPKICertificateOperation

NewModelsPKICertificateOperationWithDefaults instantiates a new ModelsPKICertificateOperation 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 (*ModelsPKICertificateOperation) GetAction ¶

func (o *ModelsPKICertificateOperation) GetAction() string

GetAction returns the Action field value if set, zero value otherwise.

func (*ModelsPKICertificateOperation) GetActionOk ¶

func (o *ModelsPKICertificateOperation) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPKICertificateOperation) GetComment ¶

func (o *ModelsPKICertificateOperation) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise.

func (*ModelsPKICertificateOperation) GetCommentOk ¶

func (o *ModelsPKICertificateOperation) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPKICertificateOperation) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsPKICertificateOperation) GetIdOk ¶

func (o *ModelsPKICertificateOperation) 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 (*ModelsPKICertificateOperation) GetOperationEnd ¶

func (o *ModelsPKICertificateOperation) GetOperationEnd() time.Time

GetOperationEnd returns the OperationEnd field value if set, zero value otherwise.

func (*ModelsPKICertificateOperation) GetOperationEndOk ¶

func (o *ModelsPKICertificateOperation) GetOperationEndOk() (*time.Time, bool)

GetOperationEndOk returns a tuple with the OperationEnd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPKICertificateOperation) GetOperationStart ¶

func (o *ModelsPKICertificateOperation) GetOperationStart() time.Time

GetOperationStart returns the OperationStart field value if set, zero value otherwise.

func (*ModelsPKICertificateOperation) GetOperationStartOk ¶

func (o *ModelsPKICertificateOperation) GetOperationStartOk() (*time.Time, bool)

GetOperationStartOk returns a tuple with the OperationStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPKICertificateOperation) GetUsername ¶

func (o *ModelsPKICertificateOperation) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ModelsPKICertificateOperation) GetUsernameOk ¶

func (o *ModelsPKICertificateOperation) 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 (*ModelsPKICertificateOperation) HasAction ¶

func (o *ModelsPKICertificateOperation) HasAction() bool

HasAction returns a boolean if a field has been set.

func (*ModelsPKICertificateOperation) HasComment ¶

func (o *ModelsPKICertificateOperation) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*ModelsPKICertificateOperation) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsPKICertificateOperation) HasOperationEnd ¶

func (o *ModelsPKICertificateOperation) HasOperationEnd() bool

HasOperationEnd returns a boolean if a field has been set.

func (*ModelsPKICertificateOperation) HasOperationStart ¶

func (o *ModelsPKICertificateOperation) HasOperationStart() bool

HasOperationStart returns a boolean if a field has been set.

func (*ModelsPKICertificateOperation) HasUsername ¶

func (o *ModelsPKICertificateOperation) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ModelsPKICertificateOperation) MarshalJSON ¶

func (o ModelsPKICertificateOperation) MarshalJSON() ([]byte, error)

func (*ModelsPKICertificateOperation) SetAction ¶

func (o *ModelsPKICertificateOperation) SetAction(v string)

SetAction gets a reference to the given string and assigns it to the Action field.

func (*ModelsPKICertificateOperation) SetComment ¶

func (o *ModelsPKICertificateOperation) SetComment(v string)

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*ModelsPKICertificateOperation) SetId ¶

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*ModelsPKICertificateOperation) SetOperationEnd ¶

func (o *ModelsPKICertificateOperation) SetOperationEnd(v time.Time)

SetOperationEnd gets a reference to the given time.Time and assigns it to the OperationEnd field.

func (*ModelsPKICertificateOperation) SetOperationStart ¶

func (o *ModelsPKICertificateOperation) SetOperationStart(v time.Time)

SetOperationStart gets a reference to the given time.Time and assigns it to the OperationStart field.

func (*ModelsPKICertificateOperation) SetUsername ¶

func (o *ModelsPKICertificateOperation) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ModelsPKICertificateOperation) ToMap ¶

func (o ModelsPKICertificateOperation) ToMap() (map[string]interface{}, error)

func (*ModelsPKICertificateOperation) UnmarshalJSON ¶

func (o *ModelsPKICertificateOperation) UnmarshalJSON(bytes []byte) (err error)

type ModelsPagedQuery ¶

type ModelsPagedQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsPagedQuery A query result set with parameters to define the format of records

func NewModelsPagedQuery ¶

func NewModelsPagedQuery() *ModelsPagedQuery

NewModelsPagedQuery instantiates a new ModelsPagedQuery 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 NewModelsPagedQueryWithDefaults ¶

func NewModelsPagedQueryWithDefaults() *ModelsPagedQuery

NewModelsPagedQueryWithDefaults instantiates a new ModelsPagedQuery 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 (*ModelsPagedQuery) GetPageReturned ¶

func (o *ModelsPagedQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsPagedQuery) GetPageReturnedOk ¶

func (o *ModelsPagedQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPagedQuery) GetQueryString ¶

func (o *ModelsPagedQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsPagedQuery) GetQueryStringOk ¶

func (o *ModelsPagedQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPagedQuery) GetReturnLimit ¶

func (o *ModelsPagedQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsPagedQuery) GetReturnLimitOk ¶

func (o *ModelsPagedQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPagedQuery) GetSortAscending ¶

func (o *ModelsPagedQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsPagedQuery) GetSortAscendingOk ¶

func (o *ModelsPagedQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPagedQuery) GetSortField ¶

func (o *ModelsPagedQuery) GetSortField() string

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsPagedQuery) GetSortFieldOk ¶

func (o *ModelsPagedQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPagedQuery) HasPageReturned ¶

func (o *ModelsPagedQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsPagedQuery) HasQueryString ¶

func (o *ModelsPagedQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsPagedQuery) HasReturnLimit ¶

func (o *ModelsPagedQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsPagedQuery) HasSortAscending ¶

func (o *ModelsPagedQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsPagedQuery) HasSortField ¶

func (o *ModelsPagedQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsPagedQuery) MarshalJSON ¶

func (o ModelsPagedQuery) MarshalJSON() ([]byte, error)

func (*ModelsPagedQuery) SetPageReturned ¶

func (o *ModelsPagedQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsPagedQuery) SetQueryString ¶

func (o *ModelsPagedQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsPagedQuery) SetReturnLimit ¶

func (o *ModelsPagedQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsPagedQuery) SetSortAscending ¶

func (o *ModelsPagedQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsPagedQuery) SetSortField ¶

func (o *ModelsPagedQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsPagedQuery) ToMap ¶

func (o ModelsPagedQuery) ToMap() (map[string]interface{}, error)

func (*ModelsPagedQuery) UnmarshalJSON ¶

func (o *ModelsPagedQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsPendingCSRResponse ¶

type ModelsPendingCSRResponse struct {
	Id                   *int32     `json:"Id,omitempty"`
	CSR                  *string    `json:"CSR,omitempty"`
	RequestTime          *time.Time `json:"RequestTime,omitempty"`
	Subject              []string   `json:"Subject,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsPendingCSRResponse struct for ModelsPendingCSRResponse

func NewModelsPendingCSRResponse ¶

func NewModelsPendingCSRResponse() *ModelsPendingCSRResponse

NewModelsPendingCSRResponse instantiates a new ModelsPendingCSRResponse 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 NewModelsPendingCSRResponseWithDefaults ¶

func NewModelsPendingCSRResponseWithDefaults() *ModelsPendingCSRResponse

NewModelsPendingCSRResponseWithDefaults instantiates a new ModelsPendingCSRResponse 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 (*ModelsPendingCSRResponse) GetCSR ¶

func (o *ModelsPendingCSRResponse) GetCSR() string

GetCSR returns the CSR field value if set, zero value otherwise.

func (*ModelsPendingCSRResponse) GetCSROk ¶

func (o *ModelsPendingCSRResponse) GetCSROk() (*string, bool)

GetCSROk returns a tuple with the CSR field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPendingCSRResponse) GetId ¶

func (o *ModelsPendingCSRResponse) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsPendingCSRResponse) GetIdOk ¶

func (o *ModelsPendingCSRResponse) 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 (*ModelsPendingCSRResponse) GetRequestTime ¶

func (o *ModelsPendingCSRResponse) GetRequestTime() time.Time

GetRequestTime returns the RequestTime field value if set, zero value otherwise.

func (*ModelsPendingCSRResponse) GetRequestTimeOk ¶

func (o *ModelsPendingCSRResponse) GetRequestTimeOk() (*time.Time, bool)

GetRequestTimeOk returns a tuple with the RequestTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPendingCSRResponse) GetSubject ¶

func (o *ModelsPendingCSRResponse) GetSubject() []string

GetSubject returns the Subject field value if set, zero value otherwise.

func (*ModelsPendingCSRResponse) GetSubjectOk ¶

func (o *ModelsPendingCSRResponse) GetSubjectOk() ([]string, bool)

GetSubjectOk returns a tuple with the Subject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPendingCSRResponse) HasCSR ¶

func (o *ModelsPendingCSRResponse) HasCSR() bool

HasCSR returns a boolean if a field has been set.

func (*ModelsPendingCSRResponse) HasId ¶

func (o *ModelsPendingCSRResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsPendingCSRResponse) HasRequestTime ¶

func (o *ModelsPendingCSRResponse) HasRequestTime() bool

HasRequestTime returns a boolean if a field has been set.

func (*ModelsPendingCSRResponse) HasSubject ¶

func (o *ModelsPendingCSRResponse) HasSubject() bool

HasSubject returns a boolean if a field has been set.

func (ModelsPendingCSRResponse) MarshalJSON ¶

func (o ModelsPendingCSRResponse) MarshalJSON() ([]byte, error)

func (*ModelsPendingCSRResponse) SetCSR ¶

func (o *ModelsPendingCSRResponse) SetCSR(v string)

SetCSR gets a reference to the given string and assigns it to the CSR field.

func (*ModelsPendingCSRResponse) SetId ¶

func (o *ModelsPendingCSRResponse) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsPendingCSRResponse) SetRequestTime ¶

func (o *ModelsPendingCSRResponse) SetRequestTime(v time.Time)

SetRequestTime gets a reference to the given time.Time and assigns it to the RequestTime field.

func (*ModelsPendingCSRResponse) SetSubject ¶

func (o *ModelsPendingCSRResponse) SetSubject(v []string)

SetSubject gets a reference to the given []string and assigns it to the Subject field.

func (ModelsPendingCSRResponse) ToMap ¶

func (o ModelsPendingCSRResponse) ToMap() (map[string]interface{}, error)

func (*ModelsPendingCSRResponse) UnmarshalJSON ¶

func (o *ModelsPendingCSRResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsPkcs10CertificateResponse ¶

type ModelsPkcs10CertificateResponse struct {
	SerialNumber *string        `json:"SerialNumber,omitempty"`
	IssuerDN     NullableString `json:"IssuerDN,omitempty"`
	Thumbprint   *string        `json:"Thumbprint,omitempty"`
	// The integer ID of the certificate in the keyfactor database, if Issued
	KeyfactorID  *int32   `json:"KeyfactorID,omitempty"`
	Certificates []string `json:"Certificates,omitempty"`
	// The integer id of the certificate request in the Keyfactor database, if one exists.
	KeyfactorRequestId   *int32            `json:"KeyfactorRequestId,omitempty"`
	RequestDisposition   *string           `json:"RequestDisposition,omitempty"`
	DispositionMessage   *string           `json:"DispositionMessage,omitempty"`
	EnrollmentContext    map[string]string `json:"EnrollmentContext,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsPkcs10CertificateResponse struct for ModelsPkcs10CertificateResponse

func NewModelsPkcs10CertificateResponse ¶

func NewModelsPkcs10CertificateResponse() *ModelsPkcs10CertificateResponse

NewModelsPkcs10CertificateResponse instantiates a new ModelsPkcs10CertificateResponse 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 NewModelsPkcs10CertificateResponseWithDefaults ¶

func NewModelsPkcs10CertificateResponseWithDefaults() *ModelsPkcs10CertificateResponse

NewModelsPkcs10CertificateResponseWithDefaults instantiates a new ModelsPkcs10CertificateResponse 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 (*ModelsPkcs10CertificateResponse) GetCertificates ¶

func (o *ModelsPkcs10CertificateResponse) GetCertificates() []string

GetCertificates returns the Certificates field value if set, zero value otherwise.

func (*ModelsPkcs10CertificateResponse) GetCertificatesOk ¶

func (o *ModelsPkcs10CertificateResponse) GetCertificatesOk() ([]string, 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 (*ModelsPkcs10CertificateResponse) GetDispositionMessage ¶

func (o *ModelsPkcs10CertificateResponse) GetDispositionMessage() string

GetDispositionMessage returns the DispositionMessage field value if set, zero value otherwise.

func (*ModelsPkcs10CertificateResponse) GetDispositionMessageOk ¶

func (o *ModelsPkcs10CertificateResponse) GetDispositionMessageOk() (*string, bool)

GetDispositionMessageOk returns a tuple with the DispositionMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPkcs10CertificateResponse) GetEnrollmentContext ¶

func (o *ModelsPkcs10CertificateResponse) GetEnrollmentContext() map[string]string

GetEnrollmentContext returns the EnrollmentContext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsPkcs10CertificateResponse) GetEnrollmentContextOk ¶

func (o *ModelsPkcs10CertificateResponse) GetEnrollmentContextOk() (*map[string]string, bool)

GetEnrollmentContextOk returns a tuple with the EnrollmentContext field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsPkcs10CertificateResponse) GetIssuerDN ¶

func (o *ModelsPkcs10CertificateResponse) GetIssuerDN() string

GetIssuerDN returns the IssuerDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsPkcs10CertificateResponse) GetIssuerDNOk ¶

func (o *ModelsPkcs10CertificateResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsPkcs10CertificateResponse) GetKeyfactorID ¶

func (o *ModelsPkcs10CertificateResponse) GetKeyfactorID() int32

GetKeyfactorID returns the KeyfactorID field value if set, zero value otherwise.

func (*ModelsPkcs10CertificateResponse) GetKeyfactorIDOk ¶

func (o *ModelsPkcs10CertificateResponse) GetKeyfactorIDOk() (*int32, bool)

GetKeyfactorIDOk returns a tuple with the KeyfactorID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPkcs10CertificateResponse) GetKeyfactorRequestId ¶

func (o *ModelsPkcs10CertificateResponse) GetKeyfactorRequestId() int32

GetKeyfactorRequestId returns the KeyfactorRequestId field value if set, zero value otherwise.

func (*ModelsPkcs10CertificateResponse) GetKeyfactorRequestIdOk ¶

func (o *ModelsPkcs10CertificateResponse) GetKeyfactorRequestIdOk() (*int32, bool)

GetKeyfactorRequestIdOk returns a tuple with the KeyfactorRequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPkcs10CertificateResponse) GetRequestDisposition ¶

func (o *ModelsPkcs10CertificateResponse) GetRequestDisposition() string

GetRequestDisposition returns the RequestDisposition field value if set, zero value otherwise.

func (*ModelsPkcs10CertificateResponse) GetRequestDispositionOk ¶

func (o *ModelsPkcs10CertificateResponse) GetRequestDispositionOk() (*string, bool)

GetRequestDispositionOk returns a tuple with the RequestDisposition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPkcs10CertificateResponse) GetSerialNumber ¶

func (o *ModelsPkcs10CertificateResponse) GetSerialNumber() string

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*ModelsPkcs10CertificateResponse) GetSerialNumberOk ¶

func (o *ModelsPkcs10CertificateResponse) 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 (*ModelsPkcs10CertificateResponse) GetThumbprint ¶

func (o *ModelsPkcs10CertificateResponse) GetThumbprint() string

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsPkcs10CertificateResponse) GetThumbprintOk ¶

func (o *ModelsPkcs10CertificateResponse) GetThumbprintOk() (*string, bool)

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPkcs10CertificateResponse) HasCertificates ¶

func (o *ModelsPkcs10CertificateResponse) HasCertificates() bool

HasCertificates returns a boolean if a field has been set.

func (*ModelsPkcs10CertificateResponse) HasDispositionMessage ¶

func (o *ModelsPkcs10CertificateResponse) HasDispositionMessage() bool

HasDispositionMessage returns a boolean if a field has been set.

func (*ModelsPkcs10CertificateResponse) HasEnrollmentContext ¶

func (o *ModelsPkcs10CertificateResponse) HasEnrollmentContext() bool

HasEnrollmentContext returns a boolean if a field has been set.

func (*ModelsPkcs10CertificateResponse) HasIssuerDN ¶

func (o *ModelsPkcs10CertificateResponse) HasIssuerDN() bool

HasIssuerDN returns a boolean if a field has been set.

func (*ModelsPkcs10CertificateResponse) HasKeyfactorID ¶

func (o *ModelsPkcs10CertificateResponse) HasKeyfactorID() bool

HasKeyfactorID returns a boolean if a field has been set.

func (*ModelsPkcs10CertificateResponse) HasKeyfactorRequestId ¶

func (o *ModelsPkcs10CertificateResponse) HasKeyfactorRequestId() bool

HasKeyfactorRequestId returns a boolean if a field has been set.

func (*ModelsPkcs10CertificateResponse) HasRequestDisposition ¶

func (o *ModelsPkcs10CertificateResponse) HasRequestDisposition() bool

HasRequestDisposition returns a boolean if a field has been set.

func (*ModelsPkcs10CertificateResponse) HasSerialNumber ¶

func (o *ModelsPkcs10CertificateResponse) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (*ModelsPkcs10CertificateResponse) HasThumbprint ¶

func (o *ModelsPkcs10CertificateResponse) HasThumbprint() bool

HasThumbprint returns a boolean if a field has been set.

func (ModelsPkcs10CertificateResponse) MarshalJSON ¶

func (o ModelsPkcs10CertificateResponse) MarshalJSON() ([]byte, error)

func (*ModelsPkcs10CertificateResponse) SetCertificates ¶

func (o *ModelsPkcs10CertificateResponse) SetCertificates(v []string)

SetCertificates gets a reference to the given []string and assigns it to the Certificates field.

func (*ModelsPkcs10CertificateResponse) SetDispositionMessage ¶

func (o *ModelsPkcs10CertificateResponse) SetDispositionMessage(v string)

SetDispositionMessage gets a reference to the given string and assigns it to the DispositionMessage field.

func (*ModelsPkcs10CertificateResponse) SetEnrollmentContext ¶

func (o *ModelsPkcs10CertificateResponse) SetEnrollmentContext(v map[string]string)

SetEnrollmentContext gets a reference to the given map[string]string and assigns it to the EnrollmentContext field.

func (*ModelsPkcs10CertificateResponse) SetIssuerDN ¶

func (o *ModelsPkcs10CertificateResponse) SetIssuerDN(v string)

SetIssuerDN gets a reference to the given NullableString and assigns it to the IssuerDN field.

func (*ModelsPkcs10CertificateResponse) SetIssuerDNNil ¶

func (o *ModelsPkcs10CertificateResponse) SetIssuerDNNil()

SetIssuerDNNil sets the value for IssuerDN to be an explicit nil

func (*ModelsPkcs10CertificateResponse) SetKeyfactorID ¶

func (o *ModelsPkcs10CertificateResponse) SetKeyfactorID(v int32)

SetKeyfactorID gets a reference to the given int32 and assigns it to the KeyfactorID field.

func (*ModelsPkcs10CertificateResponse) SetKeyfactorRequestId ¶

func (o *ModelsPkcs10CertificateResponse) SetKeyfactorRequestId(v int32)

SetKeyfactorRequestId gets a reference to the given int32 and assigns it to the KeyfactorRequestId field.

func (*ModelsPkcs10CertificateResponse) SetRequestDisposition ¶

func (o *ModelsPkcs10CertificateResponse) SetRequestDisposition(v string)

SetRequestDisposition gets a reference to the given string and assigns it to the RequestDisposition field.

func (*ModelsPkcs10CertificateResponse) SetSerialNumber ¶

func (o *ModelsPkcs10CertificateResponse) SetSerialNumber(v string)

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (*ModelsPkcs10CertificateResponse) SetThumbprint ¶

func (o *ModelsPkcs10CertificateResponse) SetThumbprint(v string)

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (ModelsPkcs10CertificateResponse) ToMap ¶

func (o ModelsPkcs10CertificateResponse) ToMap() (map[string]interface{}, error)

func (*ModelsPkcs10CertificateResponse) UnmarshalJSON ¶

func (o *ModelsPkcs10CertificateResponse) UnmarshalJSON(bytes []byte) (err error)

func (*ModelsPkcs10CertificateResponse) UnsetIssuerDN ¶

func (o *ModelsPkcs10CertificateResponse) UnsetIssuerDN()

UnsetIssuerDN ensures that no value is present for IssuerDN, not even an explicit nil

type ModelsPkcs12CertificateResponse ¶

type ModelsPkcs12CertificateResponse struct {
	SerialNumber *string        `json:"SerialNumber,omitempty"`
	IssuerDN     NullableString `json:"IssuerDN,omitempty"`
	Thumbprint   *string        `json:"Thumbprint,omitempty"`
	KeyfactorId  *int32         `json:"KeyfactorId,omitempty"`
	Pkcs12Blob   *string        `json:"Pkcs12Blob,omitempty"`
	Password     *string        `json:"Password,omitempty"`
	// The integer id of the certificate request in the Keyfactor database, if one exists.
	KeyfactorRequestId   *int32            `json:"KeyfactorRequestId,omitempty"`
	RequestDisposition   *string           `json:"RequestDisposition,omitempty"`
	DispositionMessage   *string           `json:"DispositionMessage,omitempty"`
	EnrollmentContext    map[string]string `json:"EnrollmentContext,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsPkcs12CertificateResponse struct for ModelsPkcs12CertificateResponse

func NewModelsPkcs12CertificateResponse ¶

func NewModelsPkcs12CertificateResponse() *ModelsPkcs12CertificateResponse

NewModelsPkcs12CertificateResponse instantiates a new ModelsPkcs12CertificateResponse 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 NewModelsPkcs12CertificateResponseWithDefaults ¶

func NewModelsPkcs12CertificateResponseWithDefaults() *ModelsPkcs12CertificateResponse

NewModelsPkcs12CertificateResponseWithDefaults instantiates a new ModelsPkcs12CertificateResponse 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 (*ModelsPkcs12CertificateResponse) GetDispositionMessage ¶

func (o *ModelsPkcs12CertificateResponse) GetDispositionMessage() string

GetDispositionMessage returns the DispositionMessage field value if set, zero value otherwise.

func (*ModelsPkcs12CertificateResponse) GetDispositionMessageOk ¶

func (o *ModelsPkcs12CertificateResponse) GetDispositionMessageOk() (*string, bool)

GetDispositionMessageOk returns a tuple with the DispositionMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPkcs12CertificateResponse) GetEnrollmentContext ¶

func (o *ModelsPkcs12CertificateResponse) GetEnrollmentContext() map[string]string

GetEnrollmentContext returns the EnrollmentContext field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsPkcs12CertificateResponse) GetEnrollmentContextOk ¶

func (o *ModelsPkcs12CertificateResponse) GetEnrollmentContextOk() (*map[string]string, bool)

GetEnrollmentContextOk returns a tuple with the EnrollmentContext field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsPkcs12CertificateResponse) GetIssuerDN ¶

func (o *ModelsPkcs12CertificateResponse) GetIssuerDN() string

GetIssuerDN returns the IssuerDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsPkcs12CertificateResponse) GetIssuerDNOk ¶

func (o *ModelsPkcs12CertificateResponse) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsPkcs12CertificateResponse) GetKeyfactorId ¶

func (o *ModelsPkcs12CertificateResponse) GetKeyfactorId() int32

GetKeyfactorId returns the KeyfactorId field value if set, zero value otherwise.

func (*ModelsPkcs12CertificateResponse) GetKeyfactorIdOk ¶

func (o *ModelsPkcs12CertificateResponse) GetKeyfactorIdOk() (*int32, bool)

GetKeyfactorIdOk returns a tuple with the KeyfactorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPkcs12CertificateResponse) GetKeyfactorRequestId ¶

func (o *ModelsPkcs12CertificateResponse) GetKeyfactorRequestId() int32

GetKeyfactorRequestId returns the KeyfactorRequestId field value if set, zero value otherwise.

func (*ModelsPkcs12CertificateResponse) GetKeyfactorRequestIdOk ¶

func (o *ModelsPkcs12CertificateResponse) GetKeyfactorRequestIdOk() (*int32, bool)

GetKeyfactorRequestIdOk returns a tuple with the KeyfactorRequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPkcs12CertificateResponse) GetPassword ¶

func (o *ModelsPkcs12CertificateResponse) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*ModelsPkcs12CertificateResponse) GetPasswordOk ¶

func (o *ModelsPkcs12CertificateResponse) 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 (*ModelsPkcs12CertificateResponse) GetPkcs12Blob ¶

func (o *ModelsPkcs12CertificateResponse) GetPkcs12Blob() string

GetPkcs12Blob returns the Pkcs12Blob field value if set, zero value otherwise.

func (*ModelsPkcs12CertificateResponse) GetPkcs12BlobOk ¶

func (o *ModelsPkcs12CertificateResponse) GetPkcs12BlobOk() (*string, bool)

GetPkcs12BlobOk returns a tuple with the Pkcs12Blob field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPkcs12CertificateResponse) GetRequestDisposition ¶

func (o *ModelsPkcs12CertificateResponse) GetRequestDisposition() string

GetRequestDisposition returns the RequestDisposition field value if set, zero value otherwise.

func (*ModelsPkcs12CertificateResponse) GetRequestDispositionOk ¶

func (o *ModelsPkcs12CertificateResponse) GetRequestDispositionOk() (*string, bool)

GetRequestDispositionOk returns a tuple with the RequestDisposition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPkcs12CertificateResponse) GetSerialNumber ¶

func (o *ModelsPkcs12CertificateResponse) GetSerialNumber() string

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*ModelsPkcs12CertificateResponse) GetSerialNumberOk ¶

func (o *ModelsPkcs12CertificateResponse) 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 (*ModelsPkcs12CertificateResponse) GetThumbprint ¶

func (o *ModelsPkcs12CertificateResponse) GetThumbprint() string

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsPkcs12CertificateResponse) GetThumbprintOk ¶

func (o *ModelsPkcs12CertificateResponse) GetThumbprintOk() (*string, bool)

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsPkcs12CertificateResponse) HasDispositionMessage ¶

func (o *ModelsPkcs12CertificateResponse) HasDispositionMessage() bool

HasDispositionMessage returns a boolean if a field has been set.

func (*ModelsPkcs12CertificateResponse) HasEnrollmentContext ¶

func (o *ModelsPkcs12CertificateResponse) HasEnrollmentContext() bool

HasEnrollmentContext returns a boolean if a field has been set.

func (*ModelsPkcs12CertificateResponse) HasIssuerDN ¶

func (o *ModelsPkcs12CertificateResponse) HasIssuerDN() bool

HasIssuerDN returns a boolean if a field has been set.

func (*ModelsPkcs12CertificateResponse) HasKeyfactorId ¶

func (o *ModelsPkcs12CertificateResponse) HasKeyfactorId() bool

HasKeyfactorId returns a boolean if a field has been set.

func (*ModelsPkcs12CertificateResponse) HasKeyfactorRequestId ¶

func (o *ModelsPkcs12CertificateResponse) HasKeyfactorRequestId() bool

HasKeyfactorRequestId returns a boolean if a field has been set.

func (*ModelsPkcs12CertificateResponse) HasPassword ¶

func (o *ModelsPkcs12CertificateResponse) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*ModelsPkcs12CertificateResponse) HasPkcs12Blob ¶

func (o *ModelsPkcs12CertificateResponse) HasPkcs12Blob() bool

HasPkcs12Blob returns a boolean if a field has been set.

func (*ModelsPkcs12CertificateResponse) HasRequestDisposition ¶

func (o *ModelsPkcs12CertificateResponse) HasRequestDisposition() bool

HasRequestDisposition returns a boolean if a field has been set.

func (*ModelsPkcs12CertificateResponse) HasSerialNumber ¶

func (o *ModelsPkcs12CertificateResponse) HasSerialNumber() bool

HasSerialNumber returns a boolean if a field has been set.

func (*ModelsPkcs12CertificateResponse) HasThumbprint ¶

func (o *ModelsPkcs12CertificateResponse) HasThumbprint() bool

HasThumbprint returns a boolean if a field has been set.

func (ModelsPkcs12CertificateResponse) MarshalJSON ¶

func (o ModelsPkcs12CertificateResponse) MarshalJSON() ([]byte, error)

func (*ModelsPkcs12CertificateResponse) SetDispositionMessage ¶

func (o *ModelsPkcs12CertificateResponse) SetDispositionMessage(v string)

SetDispositionMessage gets a reference to the given string and assigns it to the DispositionMessage field.

func (*ModelsPkcs12CertificateResponse) SetEnrollmentContext ¶

func (o *ModelsPkcs12CertificateResponse) SetEnrollmentContext(v map[string]string)

SetEnrollmentContext gets a reference to the given map[string]string and assigns it to the EnrollmentContext field.

func (*ModelsPkcs12CertificateResponse) SetIssuerDN ¶

func (o *ModelsPkcs12CertificateResponse) SetIssuerDN(v string)

SetIssuerDN gets a reference to the given NullableString and assigns it to the IssuerDN field.

func (*ModelsPkcs12CertificateResponse) SetIssuerDNNil ¶

func (o *ModelsPkcs12CertificateResponse) SetIssuerDNNil()

SetIssuerDNNil sets the value for IssuerDN to be an explicit nil

func (*ModelsPkcs12CertificateResponse) SetKeyfactorId ¶

func (o *ModelsPkcs12CertificateResponse) SetKeyfactorId(v int32)

SetKeyfactorId gets a reference to the given int32 and assigns it to the KeyfactorId field.

func (*ModelsPkcs12CertificateResponse) SetKeyfactorRequestId ¶

func (o *ModelsPkcs12CertificateResponse) SetKeyfactorRequestId(v int32)

SetKeyfactorRequestId gets a reference to the given int32 and assigns it to the KeyfactorRequestId field.

func (*ModelsPkcs12CertificateResponse) SetPassword ¶

func (o *ModelsPkcs12CertificateResponse) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*ModelsPkcs12CertificateResponse) SetPkcs12Blob ¶

func (o *ModelsPkcs12CertificateResponse) SetPkcs12Blob(v string)

SetPkcs12Blob gets a reference to the given string and assigns it to the Pkcs12Blob field.

func (*ModelsPkcs12CertificateResponse) SetRequestDisposition ¶

func (o *ModelsPkcs12CertificateResponse) SetRequestDisposition(v string)

SetRequestDisposition gets a reference to the given string and assigns it to the RequestDisposition field.

func (*ModelsPkcs12CertificateResponse) SetSerialNumber ¶

func (o *ModelsPkcs12CertificateResponse) SetSerialNumber(v string)

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (*ModelsPkcs12CertificateResponse) SetThumbprint ¶

func (o *ModelsPkcs12CertificateResponse) SetThumbprint(v string)

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (ModelsPkcs12CertificateResponse) ToMap ¶

func (o ModelsPkcs12CertificateResponse) ToMap() (map[string]interface{}, error)

func (*ModelsPkcs12CertificateResponse) UnmarshalJSON ¶

func (o *ModelsPkcs12CertificateResponse) UnmarshalJSON(bytes []byte) (err error)

func (*ModelsPkcs12CertificateResponse) UnsetIssuerDN ¶

func (o *ModelsPkcs12CertificateResponse) UnsetIssuerDN()

UnsetIssuerDN ensures that no value is present for IssuerDN, not even an explicit nil

type ModelsQueryModelsPagedAgentBlueprintJobsQuery ¶

type ModelsQueryModelsPagedAgentBlueprintJobsQuery struct {
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Number of records to be skipped before inclusion in the result set
	SkipCount *int32 `json:"SkipCount,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (OperationStart, OperationEnd, UserName)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedAgentBlueprintJobsQuery struct for ModelsQueryModelsPagedAgentBlueprintJobsQuery

func NewModelsQueryModelsPagedAgentBlueprintJobsQuery ¶

func NewModelsQueryModelsPagedAgentBlueprintJobsQuery() *ModelsQueryModelsPagedAgentBlueprintJobsQuery

NewModelsQueryModelsPagedAgentBlueprintJobsQuery instantiates a new ModelsQueryModelsPagedAgentBlueprintJobsQuery 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 NewModelsQueryModelsPagedAgentBlueprintJobsQueryWithDefaults ¶

func NewModelsQueryModelsPagedAgentBlueprintJobsQueryWithDefaults() *ModelsQueryModelsPagedAgentBlueprintJobsQuery

NewModelsQueryModelsPagedAgentBlueprintJobsQueryWithDefaults instantiates a new ModelsQueryModelsPagedAgentBlueprintJobsQuery 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 (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetSkipCount ¶

GetSkipCount returns the SkipCount field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetSkipCountOk ¶

GetSkipCountOk returns a tuple with the SkipCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) HasSkipCount ¶

HasSkipCount returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedAgentBlueprintJobsQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) SetSkipCount ¶

SetSkipCount gets a reference to the given int32 and assigns it to the SkipCount field.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedAgentBlueprintJobsQuery) ToMap ¶

func (o ModelsQueryModelsPagedAgentBlueprintJobsQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedAgentBlueprintJobsQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedAgentBlueprintJobsQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedAgentBlueprintQuery ¶

type ModelsQueryModelsPagedAgentBlueprintQuery struct {
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Number of records to be skipped before inclusion in the result set
	SkipCount *int32 `json:"SkipCount,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (OperationStart, OperationEnd, UserName)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedAgentBlueprintQuery struct for ModelsQueryModelsPagedAgentBlueprintQuery

func NewModelsQueryModelsPagedAgentBlueprintQuery ¶

func NewModelsQueryModelsPagedAgentBlueprintQuery() *ModelsQueryModelsPagedAgentBlueprintQuery

NewModelsQueryModelsPagedAgentBlueprintQuery instantiates a new ModelsQueryModelsPagedAgentBlueprintQuery 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 NewModelsQueryModelsPagedAgentBlueprintQueryWithDefaults ¶

func NewModelsQueryModelsPagedAgentBlueprintQueryWithDefaults() *ModelsQueryModelsPagedAgentBlueprintQuery

NewModelsQueryModelsPagedAgentBlueprintQueryWithDefaults instantiates a new ModelsQueryModelsPagedAgentBlueprintQuery 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 (*ModelsQueryModelsPagedAgentBlueprintQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) GetSkipCount ¶

GetSkipCount returns the SkipCount field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) GetSkipCountOk ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) GetSkipCountOk() (*int32, bool)

GetSkipCountOk returns a tuple with the SkipCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) HasSkipCount ¶

HasSkipCount returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedAgentBlueprintQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedAgentBlueprintQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) SetSkipCount ¶

SetSkipCount gets a reference to the given int32 and assigns it to the SkipCount field.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedAgentBlueprintQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedAgentBlueprintQuery) ToMap ¶

func (o ModelsQueryModelsPagedAgentBlueprintQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedAgentBlueprintQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedAgentBlueprintQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedAgentBlueprintStoresQuery ¶

type ModelsQueryModelsPagedAgentBlueprintStoresQuery struct {
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Number of records to be skipped before inclusion in the result set
	SkipCount *int32 `json:"SkipCount,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (OperationStart, OperationEnd, UserName)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedAgentBlueprintStoresQuery struct for ModelsQueryModelsPagedAgentBlueprintStoresQuery

func NewModelsQueryModelsPagedAgentBlueprintStoresQuery ¶

func NewModelsQueryModelsPagedAgentBlueprintStoresQuery() *ModelsQueryModelsPagedAgentBlueprintStoresQuery

NewModelsQueryModelsPagedAgentBlueprintStoresQuery instantiates a new ModelsQueryModelsPagedAgentBlueprintStoresQuery 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 NewModelsQueryModelsPagedAgentBlueprintStoresQueryWithDefaults ¶

func NewModelsQueryModelsPagedAgentBlueprintStoresQueryWithDefaults() *ModelsQueryModelsPagedAgentBlueprintStoresQuery

NewModelsQueryModelsPagedAgentBlueprintStoresQueryWithDefaults instantiates a new ModelsQueryModelsPagedAgentBlueprintStoresQuery 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 (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetReturnLimitOk ¶

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetSkipCount ¶

GetSkipCount returns the SkipCount field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetSkipCountOk ¶

GetSkipCountOk returns a tuple with the SkipCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) HasSkipCount ¶

HasSkipCount returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedAgentBlueprintStoresQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) SetSkipCount ¶

SetSkipCount gets a reference to the given int32 and assigns it to the SkipCount field.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedAgentBlueprintStoresQuery) ToMap ¶

func (o ModelsQueryModelsPagedAgentBlueprintStoresQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedAgentBlueprintStoresQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedAgentBlueprintStoresQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedAgentJobHistoryQuery ¶

type ModelsQueryModelsPagedAgentJobHistoryQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedAgentJobHistoryQuery struct for ModelsQueryModelsPagedAgentJobHistoryQuery

func NewModelsQueryModelsPagedAgentJobHistoryQuery ¶

func NewModelsQueryModelsPagedAgentJobHistoryQuery() *ModelsQueryModelsPagedAgentJobHistoryQuery

NewModelsQueryModelsPagedAgentJobHistoryQuery instantiates a new ModelsQueryModelsPagedAgentJobHistoryQuery 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 NewModelsQueryModelsPagedAgentJobHistoryQueryWithDefaults ¶

func NewModelsQueryModelsPagedAgentJobHistoryQueryWithDefaults() *ModelsQueryModelsPagedAgentJobHistoryQuery

NewModelsQueryModelsPagedAgentJobHistoryQueryWithDefaults instantiates a new ModelsQueryModelsPagedAgentJobHistoryQuery 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 (*ModelsQueryModelsPagedAgentJobHistoryQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedAgentJobHistoryQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedAgentJobHistoryQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedAgentJobHistoryQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentJobHistoryQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedAgentJobHistoryQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedAgentJobHistoryQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedAgentJobHistoryQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedAgentJobHistoryQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedAgentJobHistoryQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedAgentJobHistoryQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentJobHistoryQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedAgentJobHistoryQuery) ToMap ¶

func (o ModelsQueryModelsPagedAgentJobHistoryQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedAgentJobHistoryQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedAgentJobHistoryQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedAgentJobQuery ¶

type ModelsQueryModelsPagedAgentJobQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedAgentJobQuery struct for ModelsQueryModelsPagedAgentJobQuery

func NewModelsQueryModelsPagedAgentJobQuery ¶

func NewModelsQueryModelsPagedAgentJobQuery() *ModelsQueryModelsPagedAgentJobQuery

NewModelsQueryModelsPagedAgentJobQuery instantiates a new ModelsQueryModelsPagedAgentJobQuery 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 NewModelsQueryModelsPagedAgentJobQueryWithDefaults ¶

func NewModelsQueryModelsPagedAgentJobQueryWithDefaults() *ModelsQueryModelsPagedAgentJobQuery

NewModelsQueryModelsPagedAgentJobQueryWithDefaults instantiates a new ModelsQueryModelsPagedAgentJobQuery 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 (*ModelsQueryModelsPagedAgentJobQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentJobQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentJobQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentJobQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentJobQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentJobQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentJobQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentJobQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentJobQuery) GetSortField ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) GetSortField() string

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentJobQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentJobQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentJobQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentJobQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentJobQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentJobQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedAgentJobQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedAgentJobQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedAgentJobQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedAgentJobQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedAgentJobQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedAgentJobQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedAgentJobQuery) SetSortField ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedAgentJobQuery) ToMap ¶

func (o ModelsQueryModelsPagedAgentJobQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedAgentJobQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedAgentJobQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedAgentPoolAgentsQuery ¶

type ModelsQueryModelsPagedAgentPoolAgentsQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedAgentPoolAgentsQuery struct for ModelsQueryModelsPagedAgentPoolAgentsQuery

func NewModelsQueryModelsPagedAgentPoolAgentsQuery ¶

func NewModelsQueryModelsPagedAgentPoolAgentsQuery() *ModelsQueryModelsPagedAgentPoolAgentsQuery

NewModelsQueryModelsPagedAgentPoolAgentsQuery instantiates a new ModelsQueryModelsPagedAgentPoolAgentsQuery 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 NewModelsQueryModelsPagedAgentPoolAgentsQueryWithDefaults ¶

func NewModelsQueryModelsPagedAgentPoolAgentsQueryWithDefaults() *ModelsQueryModelsPagedAgentPoolAgentsQuery

NewModelsQueryModelsPagedAgentPoolAgentsQueryWithDefaults instantiates a new ModelsQueryModelsPagedAgentPoolAgentsQuery 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 (*ModelsQueryModelsPagedAgentPoolAgentsQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedAgentPoolAgentsQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedAgentPoolAgentsQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedAgentPoolAgentsQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentPoolAgentsQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedAgentPoolAgentsQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedAgentPoolAgentsQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedAgentPoolAgentsQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedAgentPoolAgentsQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedAgentPoolAgentsQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedAgentPoolAgentsQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentPoolAgentsQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedAgentPoolAgentsQuery) ToMap ¶

func (o ModelsQueryModelsPagedAgentPoolAgentsQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedAgentPoolAgentsQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedAgentPoolAgentsQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedAgentPoolQuery ¶

type ModelsQueryModelsPagedAgentPoolQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedAgentPoolQuery struct for ModelsQueryModelsPagedAgentPoolQuery

func NewModelsQueryModelsPagedAgentPoolQuery ¶

func NewModelsQueryModelsPagedAgentPoolQuery() *ModelsQueryModelsPagedAgentPoolQuery

NewModelsQueryModelsPagedAgentPoolQuery instantiates a new ModelsQueryModelsPagedAgentPoolQuery 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 NewModelsQueryModelsPagedAgentPoolQueryWithDefaults ¶

func NewModelsQueryModelsPagedAgentPoolQueryWithDefaults() *ModelsQueryModelsPagedAgentPoolQuery

NewModelsQueryModelsPagedAgentPoolQueryWithDefaults instantiates a new ModelsQueryModelsPagedAgentPoolQuery 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 (*ModelsQueryModelsPagedAgentPoolQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentPoolQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentPoolQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentPoolQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentPoolQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentPoolQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentPoolQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentPoolQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentPoolQuery) GetSortField ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) GetSortField() string

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentPoolQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentPoolQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentPoolQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentPoolQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentPoolQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentPoolQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedAgentPoolQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedAgentPoolQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedAgentPoolQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedAgentPoolQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedAgentPoolQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedAgentPoolQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedAgentPoolQuery) SetSortField ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedAgentPoolQuery) ToMap ¶

func (o ModelsQueryModelsPagedAgentPoolQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedAgentPoolQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedAgentPoolQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedAgentQuery ¶

type ModelsQueryModelsPagedAgentQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedAgentQuery A query result set with parameters to define the format of Agent records

func NewModelsQueryModelsPagedAgentQuery ¶

func NewModelsQueryModelsPagedAgentQuery() *ModelsQueryModelsPagedAgentQuery

NewModelsQueryModelsPagedAgentQuery instantiates a new ModelsQueryModelsPagedAgentQuery 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 NewModelsQueryModelsPagedAgentQueryWithDefaults ¶

func NewModelsQueryModelsPagedAgentQueryWithDefaults() *ModelsQueryModelsPagedAgentQuery

NewModelsQueryModelsPagedAgentQueryWithDefaults instantiates a new ModelsQueryModelsPagedAgentQuery 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 (*ModelsQueryModelsPagedAgentQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedAgentQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedAgentQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedAgentQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedAgentQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedAgentQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedAgentQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedAgentQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentQuery) GetSortField ¶

func (o *ModelsQueryModelsPagedAgentQuery) GetSortField() string

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAgentQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedAgentQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAgentQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedAgentQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedAgentQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedAgentQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedAgentQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAgentQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedAgentQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedAgentQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedAgentQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedAgentQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedAgentQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedAgentQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedAgentQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedAgentQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedAgentQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedAgentQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedAgentQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedAgentQuery) SetSortField ¶

func (o *ModelsQueryModelsPagedAgentQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedAgentQuery) ToMap ¶

func (o ModelsQueryModelsPagedAgentQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedAgentQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedAgentQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedAuditLogQuery ¶

type ModelsQueryModelsPagedAuditLogQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedAuditLogQuery struct for ModelsQueryModelsPagedAuditLogQuery

func NewModelsQueryModelsPagedAuditLogQuery ¶

func NewModelsQueryModelsPagedAuditLogQuery() *ModelsQueryModelsPagedAuditLogQuery

NewModelsQueryModelsPagedAuditLogQuery instantiates a new ModelsQueryModelsPagedAuditLogQuery 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 NewModelsQueryModelsPagedAuditLogQueryWithDefaults ¶

func NewModelsQueryModelsPagedAuditLogQueryWithDefaults() *ModelsQueryModelsPagedAuditLogQuery

NewModelsQueryModelsPagedAuditLogQueryWithDefaults instantiates a new ModelsQueryModelsPagedAuditLogQuery 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 (*ModelsQueryModelsPagedAuditLogQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAuditLogQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAuditLogQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAuditLogQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAuditLogQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAuditLogQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAuditLogQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAuditLogQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAuditLogQuery) GetSortField ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) GetSortField() string

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedAuditLogQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedAuditLogQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAuditLogQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAuditLogQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAuditLogQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedAuditLogQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedAuditLogQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedAuditLogQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedAuditLogQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedAuditLogQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedAuditLogQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedAuditLogQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedAuditLogQuery) SetSortField ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedAuditLogQuery) ToMap ¶

func (o ModelsQueryModelsPagedAuditLogQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedAuditLogQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedAuditLogQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedCertificateAuthorityQuery ¶

type ModelsQueryModelsPagedCertificateAuthorityQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedCertificateAuthorityQuery struct for ModelsQueryModelsPagedCertificateAuthorityQuery

func NewModelsQueryModelsPagedCertificateAuthorityQuery ¶

func NewModelsQueryModelsPagedCertificateAuthorityQuery() *ModelsQueryModelsPagedCertificateAuthorityQuery

NewModelsQueryModelsPagedCertificateAuthorityQuery instantiates a new ModelsQueryModelsPagedCertificateAuthorityQuery 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 NewModelsQueryModelsPagedCertificateAuthorityQueryWithDefaults ¶

func NewModelsQueryModelsPagedCertificateAuthorityQueryWithDefaults() *ModelsQueryModelsPagedCertificateAuthorityQuery

NewModelsQueryModelsPagedCertificateAuthorityQueryWithDefaults instantiates a new ModelsQueryModelsPagedCertificateAuthorityQuery 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 (*ModelsQueryModelsPagedCertificateAuthorityQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedCertificateAuthorityQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) GetQueryStringOk ¶

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) GetReturnLimitOk ¶

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedCertificateAuthorityQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedCertificateAuthorityQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedCertificateAuthorityQuery) ToMap ¶

func (o ModelsQueryModelsPagedCertificateAuthorityQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedCertificateAuthorityQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedCertificateAuthorityQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedCertificateHistoryQuery ¶

type ModelsQueryModelsPagedCertificateHistoryQuery struct {
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (OperationStart, OperationEnd, UserName)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedCertificateHistoryQuery struct for ModelsQueryModelsPagedCertificateHistoryQuery

func NewModelsQueryModelsPagedCertificateHistoryQuery ¶

func NewModelsQueryModelsPagedCertificateHistoryQuery() *ModelsQueryModelsPagedCertificateHistoryQuery

NewModelsQueryModelsPagedCertificateHistoryQuery instantiates a new ModelsQueryModelsPagedCertificateHistoryQuery 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 NewModelsQueryModelsPagedCertificateHistoryQueryWithDefaults ¶

func NewModelsQueryModelsPagedCertificateHistoryQueryWithDefaults() *ModelsQueryModelsPagedCertificateHistoryQuery

NewModelsQueryModelsPagedCertificateHistoryQueryWithDefaults instantiates a new ModelsQueryModelsPagedCertificateHistoryQuery 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 (*ModelsQueryModelsPagedCertificateHistoryQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedCertificateHistoryQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedCertificateHistoryQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedCertificateHistoryQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedCertificateHistoryQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedCertificateHistoryQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedCertificateHistoryQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedCertificateHistoryQuery) ToMap ¶

func (o ModelsQueryModelsPagedCertificateHistoryQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedCertificateHistoryQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedCertificateHistoryQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedCertificateRequestQuery ¶

type ModelsQueryModelsPagedCertificateRequestQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedCertificateRequestQuery struct for ModelsQueryModelsPagedCertificateRequestQuery

func NewModelsQueryModelsPagedCertificateRequestQuery ¶

func NewModelsQueryModelsPagedCertificateRequestQuery() *ModelsQueryModelsPagedCertificateRequestQuery

NewModelsQueryModelsPagedCertificateRequestQuery instantiates a new ModelsQueryModelsPagedCertificateRequestQuery 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 NewModelsQueryModelsPagedCertificateRequestQueryWithDefaults ¶

func NewModelsQueryModelsPagedCertificateRequestQueryWithDefaults() *ModelsQueryModelsPagedCertificateRequestQuery

NewModelsQueryModelsPagedCertificateRequestQueryWithDefaults instantiates a new ModelsQueryModelsPagedCertificateRequestQuery 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 (*ModelsQueryModelsPagedCertificateRequestQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateRequestQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedCertificateRequestQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateRequestQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateRequestQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedCertificateRequestQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateRequestQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateRequestQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedCertificateRequestQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateRequestQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateRequestQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedCertificateRequestQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateRequestQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateRequestQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateRequestQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateRequestQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateRequestQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateRequestQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateRequestQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedCertificateRequestQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedCertificateRequestQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedCertificateRequestQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedCertificateRequestQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedCertificateRequestQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedCertificateRequestQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedCertificateRequestQuery) ToMap ¶

func (o ModelsQueryModelsPagedCertificateRequestQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedCertificateRequestQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedCertificateRequestQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedCertificateStoreContainerQuery ¶

type ModelsQueryModelsPagedCertificateStoreContainerQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedCertificateStoreContainerQuery struct for ModelsQueryModelsPagedCertificateStoreContainerQuery

func NewModelsQueryModelsPagedCertificateStoreContainerQuery ¶

func NewModelsQueryModelsPagedCertificateStoreContainerQuery() *ModelsQueryModelsPagedCertificateStoreContainerQuery

NewModelsQueryModelsPagedCertificateStoreContainerQuery instantiates a new ModelsQueryModelsPagedCertificateStoreContainerQuery 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 NewModelsQueryModelsPagedCertificateStoreContainerQueryWithDefaults ¶

func NewModelsQueryModelsPagedCertificateStoreContainerQueryWithDefaults() *ModelsQueryModelsPagedCertificateStoreContainerQuery

NewModelsQueryModelsPagedCertificateStoreContainerQueryWithDefaults instantiates a new ModelsQueryModelsPagedCertificateStoreContainerQuery 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 (*ModelsQueryModelsPagedCertificateStoreContainerQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) GetPageReturnedOk ¶

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) GetQueryStringOk ¶

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) GetReturnLimitOk ¶

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) GetSortAscendingOk ¶

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedCertificateStoreContainerQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedCertificateStoreContainerQuery) ToMap ¶

func (*ModelsQueryModelsPagedCertificateStoreContainerQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedCertificateStoreContainerQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedCertificateStoreInventoryQuery ¶

type ModelsQueryModelsPagedCertificateStoreInventoryQuery struct {
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (OperationStart, OperationEnd, UserName)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedCertificateStoreInventoryQuery struct for ModelsQueryModelsPagedCertificateStoreInventoryQuery

func NewModelsQueryModelsPagedCertificateStoreInventoryQuery ¶

func NewModelsQueryModelsPagedCertificateStoreInventoryQuery() *ModelsQueryModelsPagedCertificateStoreInventoryQuery

NewModelsQueryModelsPagedCertificateStoreInventoryQuery instantiates a new ModelsQueryModelsPagedCertificateStoreInventoryQuery 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 NewModelsQueryModelsPagedCertificateStoreInventoryQueryWithDefaults ¶

func NewModelsQueryModelsPagedCertificateStoreInventoryQueryWithDefaults() *ModelsQueryModelsPagedCertificateStoreInventoryQuery

NewModelsQueryModelsPagedCertificateStoreInventoryQueryWithDefaults instantiates a new ModelsQueryModelsPagedCertificateStoreInventoryQuery 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 (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) GetPageReturnedOk ¶

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) GetReturnLimitOk ¶

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) GetSortAscendingOk ¶

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedCertificateStoreInventoryQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedCertificateStoreInventoryQuery) ToMap ¶

func (*ModelsQueryModelsPagedCertificateStoreInventoryQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedCertificateStoreInventoryQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedCertificateStoreQuery ¶

type ModelsQueryModelsPagedCertificateStoreQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedCertificateStoreQuery struct for ModelsQueryModelsPagedCertificateStoreQuery

func NewModelsQueryModelsPagedCertificateStoreQuery ¶

func NewModelsQueryModelsPagedCertificateStoreQuery() *ModelsQueryModelsPagedCertificateStoreQuery

NewModelsQueryModelsPagedCertificateStoreQuery instantiates a new ModelsQueryModelsPagedCertificateStoreQuery 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 NewModelsQueryModelsPagedCertificateStoreQueryWithDefaults ¶

func NewModelsQueryModelsPagedCertificateStoreQueryWithDefaults() *ModelsQueryModelsPagedCertificateStoreQuery

NewModelsQueryModelsPagedCertificateStoreQueryWithDefaults instantiates a new ModelsQueryModelsPagedCertificateStoreQuery 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 (*ModelsQueryModelsPagedCertificateStoreQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedCertificateStoreQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedCertificateStoreQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedCertificateStoreQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedCertificateStoreQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedCertificateStoreQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedCertificateStoreQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedCertificateStoreQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedCertificateStoreQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedCertificateStoreQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedCertificateStoreQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedCertificateStoreQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedCertificateStoreQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedCertificateStoreQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedCertificateStoreQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedCertificateStoreQuery) ToMap ¶

func (o ModelsQueryModelsPagedCertificateStoreQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedCertificateStoreQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedCertificateStoreQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedCertificateStoreServerQuery ¶

type ModelsQueryModelsPagedCertificateStoreServerQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedCertificateStoreServerQuery struct for ModelsQueryModelsPagedCertificateStoreServerQuery

func NewModelsQueryModelsPagedCertificateStoreServerQuery ¶

func NewModelsQueryModelsPagedCertificateStoreServerQuery() *ModelsQueryModelsPagedCertificateStoreServerQuery

NewModelsQueryModelsPagedCertificateStoreServerQuery instantiates a new ModelsQueryModelsPagedCertificateStoreServerQuery 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 NewModelsQueryModelsPagedCertificateStoreServerQueryWithDefaults ¶

func NewModelsQueryModelsPagedCertificateStoreServerQueryWithDefaults() *ModelsQueryModelsPagedCertificateStoreServerQuery

NewModelsQueryModelsPagedCertificateStoreServerQueryWithDefaults instantiates a new ModelsQueryModelsPagedCertificateStoreServerQuery 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 (*ModelsQueryModelsPagedCertificateStoreServerQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) GetPageReturnedOk ¶

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) GetQueryStringOk ¶

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) GetReturnLimitOk ¶

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedCertificateStoreServerQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedCertificateStoreServerQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedCertificateStoreServerQuery) ToMap ¶

func (o ModelsQueryModelsPagedCertificateStoreServerQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedCertificateStoreServerQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedCertificateStoreServerQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedCustomReportQuery ¶

type ModelsQueryModelsPagedCustomReportQuery struct {
	AmmendedQuery *string `json:"AmmendedQuery,omitempty"`
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedCustomReportQuery struct for ModelsQueryModelsPagedCustomReportQuery

func NewModelsQueryModelsPagedCustomReportQuery ¶

func NewModelsQueryModelsPagedCustomReportQuery() *ModelsQueryModelsPagedCustomReportQuery

NewModelsQueryModelsPagedCustomReportQuery instantiates a new ModelsQueryModelsPagedCustomReportQuery 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 NewModelsQueryModelsPagedCustomReportQueryWithDefaults ¶

func NewModelsQueryModelsPagedCustomReportQueryWithDefaults() *ModelsQueryModelsPagedCustomReportQuery

NewModelsQueryModelsPagedCustomReportQueryWithDefaults instantiates a new ModelsQueryModelsPagedCustomReportQuery 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 (*ModelsQueryModelsPagedCustomReportQuery) GetAmmendedQuery ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) GetAmmendedQuery() string

GetAmmendedQuery returns the AmmendedQuery field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCustomReportQuery) GetAmmendedQueryOk ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) GetAmmendedQueryOk() (*string, bool)

GetAmmendedQueryOk returns a tuple with the AmmendedQuery field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCustomReportQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCustomReportQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCustomReportQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCustomReportQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCustomReportQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCustomReportQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCustomReportQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCustomReportQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCustomReportQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedCustomReportQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedCustomReportQuery) HasAmmendedQuery ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) HasAmmendedQuery() bool

HasAmmendedQuery returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCustomReportQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCustomReportQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCustomReportQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCustomReportQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedCustomReportQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedCustomReportQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedCustomReportQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedCustomReportQuery) SetAmmendedQuery ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) SetAmmendedQuery(v string)

SetAmmendedQuery gets a reference to the given string and assigns it to the AmmendedQuery field.

func (*ModelsQueryModelsPagedCustomReportQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedCustomReportQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedCustomReportQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedCustomReportQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedCustomReportQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedCustomReportQuery) ToMap ¶

func (o ModelsQueryModelsPagedCustomReportQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedCustomReportQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedCustomReportQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedDeniedAlertQuery ¶

type ModelsQueryModelsPagedDeniedAlertQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedDeniedAlertQuery struct for ModelsQueryModelsPagedDeniedAlertQuery

func NewModelsQueryModelsPagedDeniedAlertQuery ¶

func NewModelsQueryModelsPagedDeniedAlertQuery() *ModelsQueryModelsPagedDeniedAlertQuery

NewModelsQueryModelsPagedDeniedAlertQuery instantiates a new ModelsQueryModelsPagedDeniedAlertQuery 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 NewModelsQueryModelsPagedDeniedAlertQueryWithDefaults ¶

func NewModelsQueryModelsPagedDeniedAlertQueryWithDefaults() *ModelsQueryModelsPagedDeniedAlertQuery

NewModelsQueryModelsPagedDeniedAlertQueryWithDefaults instantiates a new ModelsQueryModelsPagedDeniedAlertQuery 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 (*ModelsQueryModelsPagedDeniedAlertQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedDeniedAlertQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedDeniedAlertQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedDeniedAlertQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedDeniedAlertQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedDeniedAlertQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedDeniedAlertQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedDeniedAlertQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedDeniedAlertQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedDeniedAlertQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedDeniedAlertQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedDeniedAlertQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedDeniedAlertQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedDeniedAlertQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedDeniedAlertQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedDeniedAlertQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedDeniedAlertQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedDeniedAlertQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedDeniedAlertQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedDeniedAlertQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedDeniedAlertQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedDeniedAlertQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedDeniedAlertQuery) ToMap ¶

func (o ModelsQueryModelsPagedDeniedAlertQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedDeniedAlertQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedDeniedAlertQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedExpirationAlertQuery ¶

type ModelsQueryModelsPagedExpirationAlertQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedExpirationAlertQuery struct for ModelsQueryModelsPagedExpirationAlertQuery

func NewModelsQueryModelsPagedExpirationAlertQuery ¶

func NewModelsQueryModelsPagedExpirationAlertQuery() *ModelsQueryModelsPagedExpirationAlertQuery

NewModelsQueryModelsPagedExpirationAlertQuery instantiates a new ModelsQueryModelsPagedExpirationAlertQuery 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 NewModelsQueryModelsPagedExpirationAlertQueryWithDefaults ¶

func NewModelsQueryModelsPagedExpirationAlertQueryWithDefaults() *ModelsQueryModelsPagedExpirationAlertQuery

NewModelsQueryModelsPagedExpirationAlertQueryWithDefaults instantiates a new ModelsQueryModelsPagedExpirationAlertQuery 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 (*ModelsQueryModelsPagedExpirationAlertQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedExpirationAlertQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedExpirationAlertQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedExpirationAlertQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedExpirationAlertQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedExpirationAlertQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedExpirationAlertQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedExpirationAlertQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedExpirationAlertQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedExpirationAlertQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedExpirationAlertQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedExpirationAlertQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedExpirationAlertQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedExpirationAlertQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedExpirationAlertQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedExpirationAlertQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedExpirationAlertQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedExpirationAlertQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedExpirationAlertQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedExpirationAlertQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedExpirationAlertQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedExpirationAlertQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedExpirationAlertQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedExpirationAlertQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedExpirationAlertQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedExpirationAlertQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedExpirationAlertQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedExpirationAlertQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedExpirationAlertQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedExpirationAlertQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedExpirationAlertQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedExpirationAlertQuery) ToMap ¶

func (o ModelsQueryModelsPagedExpirationAlertQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedExpirationAlertQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedExpirationAlertQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedIssuedAlertQuery ¶

type ModelsQueryModelsPagedIssuedAlertQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedIssuedAlertQuery struct for ModelsQueryModelsPagedIssuedAlertQuery

func NewModelsQueryModelsPagedIssuedAlertQuery ¶

func NewModelsQueryModelsPagedIssuedAlertQuery() *ModelsQueryModelsPagedIssuedAlertQuery

NewModelsQueryModelsPagedIssuedAlertQuery instantiates a new ModelsQueryModelsPagedIssuedAlertQuery 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 NewModelsQueryModelsPagedIssuedAlertQueryWithDefaults ¶

func NewModelsQueryModelsPagedIssuedAlertQueryWithDefaults() *ModelsQueryModelsPagedIssuedAlertQuery

NewModelsQueryModelsPagedIssuedAlertQueryWithDefaults instantiates a new ModelsQueryModelsPagedIssuedAlertQuery 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 (*ModelsQueryModelsPagedIssuedAlertQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedIssuedAlertQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedIssuedAlertQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedIssuedAlertQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedIssuedAlertQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedIssuedAlertQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedIssuedAlertQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedIssuedAlertQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedIssuedAlertQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedIssuedAlertQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedIssuedAlertQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedIssuedAlertQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedIssuedAlertQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedIssuedAlertQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedIssuedAlertQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedIssuedAlertQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedIssuedAlertQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedIssuedAlertQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedIssuedAlertQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedIssuedAlertQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedIssuedAlertQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedIssuedAlertQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedIssuedAlertQuery) ToMap ¶

func (o ModelsQueryModelsPagedIssuedAlertQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedIssuedAlertQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedIssuedAlertQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedKeyRotationAlertQuery ¶

type ModelsQueryModelsPagedKeyRotationAlertQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedKeyRotationAlertQuery struct for ModelsQueryModelsPagedKeyRotationAlertQuery

func NewModelsQueryModelsPagedKeyRotationAlertQuery ¶

func NewModelsQueryModelsPagedKeyRotationAlertQuery() *ModelsQueryModelsPagedKeyRotationAlertQuery

NewModelsQueryModelsPagedKeyRotationAlertQuery instantiates a new ModelsQueryModelsPagedKeyRotationAlertQuery 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 NewModelsQueryModelsPagedKeyRotationAlertQueryWithDefaults ¶

func NewModelsQueryModelsPagedKeyRotationAlertQueryWithDefaults() *ModelsQueryModelsPagedKeyRotationAlertQuery

NewModelsQueryModelsPagedKeyRotationAlertQueryWithDefaults instantiates a new ModelsQueryModelsPagedKeyRotationAlertQuery 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 (*ModelsQueryModelsPagedKeyRotationAlertQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedKeyRotationAlertQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedKeyRotationAlertQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedKeyRotationAlertQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedKeyRotationAlertQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedKeyRotationAlertQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedKeyRotationAlertQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedKeyRotationAlertQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedKeyRotationAlertQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedKeyRotationAlertQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedKeyRotationAlertQuery) ToMap ¶

func (o ModelsQueryModelsPagedKeyRotationAlertQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedKeyRotationAlertQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedKeyRotationAlertQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedLegacyDeniedRequestQuery ¶

type ModelsQueryModelsPagedLegacyDeniedRequestQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedLegacyDeniedRequestQuery struct for ModelsQueryModelsPagedLegacyDeniedRequestQuery

func NewModelsQueryModelsPagedLegacyDeniedRequestQuery ¶

func NewModelsQueryModelsPagedLegacyDeniedRequestQuery() *ModelsQueryModelsPagedLegacyDeniedRequestQuery

NewModelsQueryModelsPagedLegacyDeniedRequestQuery instantiates a new ModelsQueryModelsPagedLegacyDeniedRequestQuery 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 NewModelsQueryModelsPagedLegacyDeniedRequestQueryWithDefaults ¶

func NewModelsQueryModelsPagedLegacyDeniedRequestQueryWithDefaults() *ModelsQueryModelsPagedLegacyDeniedRequestQuery

NewModelsQueryModelsPagedLegacyDeniedRequestQueryWithDefaults instantiates a new ModelsQueryModelsPagedLegacyDeniedRequestQuery 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 (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetQueryStringOk ¶

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedLegacyDeniedRequestQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedLegacyDeniedRequestQuery) ToMap ¶

func (o ModelsQueryModelsPagedLegacyDeniedRequestQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedLegacyDeniedRequestQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedLegacyDeniedRequestQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedMetadataFieldQuery ¶

type ModelsQueryModelsPagedMetadataFieldQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedMetadataFieldQuery struct for ModelsQueryModelsPagedMetadataFieldQuery

func NewModelsQueryModelsPagedMetadataFieldQuery ¶

func NewModelsQueryModelsPagedMetadataFieldQuery() *ModelsQueryModelsPagedMetadataFieldQuery

NewModelsQueryModelsPagedMetadataFieldQuery instantiates a new ModelsQueryModelsPagedMetadataFieldQuery 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 NewModelsQueryModelsPagedMetadataFieldQueryWithDefaults ¶

func NewModelsQueryModelsPagedMetadataFieldQueryWithDefaults() *ModelsQueryModelsPagedMetadataFieldQuery

NewModelsQueryModelsPagedMetadataFieldQueryWithDefaults instantiates a new ModelsQueryModelsPagedMetadataFieldQuery 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 (*ModelsQueryModelsPagedMetadataFieldQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedMetadataFieldQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedMetadataFieldQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedMetadataFieldQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedMetadataFieldQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedMetadataFieldQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedMetadataFieldQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedMetadataFieldQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedMetadataFieldQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedMetadataFieldQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedMetadataFieldQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedMetadataFieldQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedMetadataFieldQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedMetadataFieldQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedMetadataFieldQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedMetadataFieldQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedMetadataFieldQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedMetadataFieldQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedMetadataFieldQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedMetadataFieldQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedMetadataFieldQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedMetadataFieldQuery) ToMap ¶

func (o ModelsQueryModelsPagedMetadataFieldQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedMetadataFieldQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedMetadataFieldQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedPendingAlertQuery ¶

type ModelsQueryModelsPagedPendingAlertQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedPendingAlertQuery struct for ModelsQueryModelsPagedPendingAlertQuery

func NewModelsQueryModelsPagedPendingAlertQuery ¶

func NewModelsQueryModelsPagedPendingAlertQuery() *ModelsQueryModelsPagedPendingAlertQuery

NewModelsQueryModelsPagedPendingAlertQuery instantiates a new ModelsQueryModelsPagedPendingAlertQuery 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 NewModelsQueryModelsPagedPendingAlertQueryWithDefaults ¶

func NewModelsQueryModelsPagedPendingAlertQueryWithDefaults() *ModelsQueryModelsPagedPendingAlertQuery

NewModelsQueryModelsPagedPendingAlertQueryWithDefaults instantiates a new ModelsQueryModelsPagedPendingAlertQuery 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 (*ModelsQueryModelsPagedPendingAlertQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedPendingAlertQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedPendingAlertQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedPendingAlertQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedPendingAlertQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedPendingAlertQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedPendingAlertQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedPendingAlertQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedPendingAlertQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedPendingAlertQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedPendingAlertQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedPendingAlertQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedPendingAlertQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedPendingAlertQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedPendingAlertQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedPendingAlertQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedPendingAlertQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedPendingAlertQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedPendingAlertQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedPendingAlertQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedPendingAlertQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedPendingAlertQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedPendingAlertQuery) ToMap ¶

func (o ModelsQueryModelsPagedPendingAlertQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedPendingAlertQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedPendingAlertQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedPendingCSRQuery ¶

type ModelsQueryModelsPagedPendingCSRQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedPendingCSRQuery struct for ModelsQueryModelsPagedPendingCSRQuery

func NewModelsQueryModelsPagedPendingCSRQuery ¶

func NewModelsQueryModelsPagedPendingCSRQuery() *ModelsQueryModelsPagedPendingCSRQuery

NewModelsQueryModelsPagedPendingCSRQuery instantiates a new ModelsQueryModelsPagedPendingCSRQuery 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 NewModelsQueryModelsPagedPendingCSRQueryWithDefaults ¶

func NewModelsQueryModelsPagedPendingCSRQueryWithDefaults() *ModelsQueryModelsPagedPendingCSRQuery

NewModelsQueryModelsPagedPendingCSRQueryWithDefaults instantiates a new ModelsQueryModelsPagedPendingCSRQuery 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 (*ModelsQueryModelsPagedPendingCSRQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedPendingCSRQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedPendingCSRQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedPendingCSRQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedPendingCSRQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedPendingCSRQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedPendingCSRQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedPendingCSRQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedPendingCSRQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedPendingCSRQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedPendingCSRQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedPendingCSRQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedPendingCSRQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedPendingCSRQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedPendingCSRQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedPendingCSRQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedPendingCSRQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedPendingCSRQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedPendingCSRQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedPendingCSRQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedPendingCSRQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedPendingCSRQuery) SetSortField ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedPendingCSRQuery) ToMap ¶

func (o ModelsQueryModelsPagedPendingCSRQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedPendingCSRQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedPendingCSRQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedReportQuery ¶

type ModelsQueryModelsPagedReportQuery struct {
	AmmendedQuery *string `json:"AmmendedQuery,omitempty"`
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedReportQuery struct for ModelsQueryModelsPagedReportQuery

func NewModelsQueryModelsPagedReportQuery ¶

func NewModelsQueryModelsPagedReportQuery() *ModelsQueryModelsPagedReportQuery

NewModelsQueryModelsPagedReportQuery instantiates a new ModelsQueryModelsPagedReportQuery 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 NewModelsQueryModelsPagedReportQueryWithDefaults ¶

func NewModelsQueryModelsPagedReportQueryWithDefaults() *ModelsQueryModelsPagedReportQuery

NewModelsQueryModelsPagedReportQueryWithDefaults instantiates a new ModelsQueryModelsPagedReportQuery 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 (*ModelsQueryModelsPagedReportQuery) GetAmmendedQuery ¶

func (o *ModelsQueryModelsPagedReportQuery) GetAmmendedQuery() string

GetAmmendedQuery returns the AmmendedQuery field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedReportQuery) GetAmmendedQueryOk ¶

func (o *ModelsQueryModelsPagedReportQuery) GetAmmendedQueryOk() (*string, bool)

GetAmmendedQueryOk returns a tuple with the AmmendedQuery field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedReportQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedReportQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedReportQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedReportQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedReportQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedReportQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedReportQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedReportQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedReportQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedReportQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedReportQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedReportQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedReportQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedReportQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedReportQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedReportQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedReportQuery) GetSortField ¶

func (o *ModelsQueryModelsPagedReportQuery) GetSortField() string

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedReportQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedReportQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedReportQuery) HasAmmendedQuery ¶

func (o *ModelsQueryModelsPagedReportQuery) HasAmmendedQuery() bool

HasAmmendedQuery returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedReportQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedReportQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedReportQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedReportQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedReportQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedReportQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedReportQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedReportQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedReportQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedReportQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedReportQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedReportQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedReportQuery) SetAmmendedQuery ¶

func (o *ModelsQueryModelsPagedReportQuery) SetAmmendedQuery(v string)

SetAmmendedQuery gets a reference to the given string and assigns it to the AmmendedQuery field.

func (*ModelsQueryModelsPagedReportQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedReportQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedReportQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedReportQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedReportQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedReportQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedReportQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedReportQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedReportQuery) SetSortField ¶

func (o *ModelsQueryModelsPagedReportQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedReportQuery) ToMap ¶

func (o ModelsQueryModelsPagedReportQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedReportQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedReportQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedReportScheduleQuery ¶

type ModelsQueryModelsPagedReportScheduleQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedReportScheduleQuery struct for ModelsQueryModelsPagedReportScheduleQuery

func NewModelsQueryModelsPagedReportScheduleQuery ¶

func NewModelsQueryModelsPagedReportScheduleQuery() *ModelsQueryModelsPagedReportScheduleQuery

NewModelsQueryModelsPagedReportScheduleQuery instantiates a new ModelsQueryModelsPagedReportScheduleQuery 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 NewModelsQueryModelsPagedReportScheduleQueryWithDefaults ¶

func NewModelsQueryModelsPagedReportScheduleQueryWithDefaults() *ModelsQueryModelsPagedReportScheduleQuery

NewModelsQueryModelsPagedReportScheduleQueryWithDefaults instantiates a new ModelsQueryModelsPagedReportScheduleQuery 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 (*ModelsQueryModelsPagedReportScheduleQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedReportScheduleQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedReportScheduleQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedReportScheduleQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedReportScheduleQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedReportScheduleQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedReportScheduleQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedReportScheduleQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedReportScheduleQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedReportScheduleQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedReportScheduleQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedReportScheduleQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedReportScheduleQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedReportScheduleQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedReportScheduleQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedReportScheduleQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedReportScheduleQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedReportScheduleQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedReportScheduleQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedReportScheduleQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedReportScheduleQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedReportScheduleQuery) ToMap ¶

func (o ModelsQueryModelsPagedReportScheduleQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedReportScheduleQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedReportScheduleQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedRevocationMonitoringQuery ¶

type ModelsQueryModelsPagedRevocationMonitoringQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedRevocationMonitoringQuery struct for ModelsQueryModelsPagedRevocationMonitoringQuery

func NewModelsQueryModelsPagedRevocationMonitoringQuery ¶

func NewModelsQueryModelsPagedRevocationMonitoringQuery() *ModelsQueryModelsPagedRevocationMonitoringQuery

NewModelsQueryModelsPagedRevocationMonitoringQuery instantiates a new ModelsQueryModelsPagedRevocationMonitoringQuery 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 NewModelsQueryModelsPagedRevocationMonitoringQueryWithDefaults ¶

func NewModelsQueryModelsPagedRevocationMonitoringQueryWithDefaults() *ModelsQueryModelsPagedRevocationMonitoringQuery

NewModelsQueryModelsPagedRevocationMonitoringQueryWithDefaults instantiates a new ModelsQueryModelsPagedRevocationMonitoringQuery 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 (*ModelsQueryModelsPagedRevocationMonitoringQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedRevocationMonitoringQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) GetQueryStringOk ¶

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) GetReturnLimitOk ¶

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedRevocationMonitoringQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedRevocationMonitoringQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedRevocationMonitoringQuery) ToMap ¶

func (o ModelsQueryModelsPagedRevocationMonitoringQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedRevocationMonitoringQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedRevocationMonitoringQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedSSHLogonQuery ¶

type ModelsQueryModelsPagedSSHLogonQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedSSHLogonQuery struct for ModelsQueryModelsPagedSSHLogonQuery

func NewModelsQueryModelsPagedSSHLogonQuery ¶

func NewModelsQueryModelsPagedSSHLogonQuery() *ModelsQueryModelsPagedSSHLogonQuery

NewModelsQueryModelsPagedSSHLogonQuery instantiates a new ModelsQueryModelsPagedSSHLogonQuery 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 NewModelsQueryModelsPagedSSHLogonQueryWithDefaults ¶

func NewModelsQueryModelsPagedSSHLogonQueryWithDefaults() *ModelsQueryModelsPagedSSHLogonQuery

NewModelsQueryModelsPagedSSHLogonQueryWithDefaults instantiates a new ModelsQueryModelsPagedSSHLogonQuery 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 (*ModelsQueryModelsPagedSSHLogonQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHLogonQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHLogonQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHLogonQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHLogonQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHLogonQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHLogonQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHLogonQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHLogonQuery) GetSortField ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) GetSortField() string

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHLogonQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHLogonQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHLogonQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHLogonQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHLogonQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHLogonQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedSSHLogonQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedSSHLogonQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedSSHLogonQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedSSHLogonQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedSSHLogonQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedSSHLogonQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedSSHLogonQuery) SetSortField ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedSSHLogonQuery) ToMap ¶

func (o ModelsQueryModelsPagedSSHLogonQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedSSHLogonQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedSSHLogonQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedSSHServerGroupQuery ¶

type ModelsQueryModelsPagedSSHServerGroupQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedSSHServerGroupQuery struct for ModelsQueryModelsPagedSSHServerGroupQuery

func NewModelsQueryModelsPagedSSHServerGroupQuery ¶

func NewModelsQueryModelsPagedSSHServerGroupQuery() *ModelsQueryModelsPagedSSHServerGroupQuery

NewModelsQueryModelsPagedSSHServerGroupQuery instantiates a new ModelsQueryModelsPagedSSHServerGroupQuery 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 NewModelsQueryModelsPagedSSHServerGroupQueryWithDefaults ¶

func NewModelsQueryModelsPagedSSHServerGroupQueryWithDefaults() *ModelsQueryModelsPagedSSHServerGroupQuery

NewModelsQueryModelsPagedSSHServerGroupQueryWithDefaults instantiates a new ModelsQueryModelsPagedSSHServerGroupQuery 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 (*ModelsQueryModelsPagedSSHServerGroupQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedSSHServerGroupQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedSSHServerGroupQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedSSHServerGroupQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedSSHServerGroupQuery) ToMap ¶

func (o ModelsQueryModelsPagedSSHServerGroupQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedSSHServerGroupQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedSSHServerGroupQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedSSHServerQuery ¶

type ModelsQueryModelsPagedSSHServerQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedSSHServerQuery struct for ModelsQueryModelsPagedSSHServerQuery

func NewModelsQueryModelsPagedSSHServerQuery ¶

func NewModelsQueryModelsPagedSSHServerQuery() *ModelsQueryModelsPagedSSHServerQuery

NewModelsQueryModelsPagedSSHServerQuery instantiates a new ModelsQueryModelsPagedSSHServerQuery 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 NewModelsQueryModelsPagedSSHServerQueryWithDefaults ¶

func NewModelsQueryModelsPagedSSHServerQueryWithDefaults() *ModelsQueryModelsPagedSSHServerQuery

NewModelsQueryModelsPagedSSHServerQueryWithDefaults instantiates a new ModelsQueryModelsPagedSSHServerQuery 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 (*ModelsQueryModelsPagedSSHServerQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServerQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServerQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServerQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServerQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServerQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServerQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServerQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServerQuery) GetSortField ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) GetSortField() string

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServerQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServerQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServerQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServerQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServerQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServerQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedSSHServerQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedSSHServerQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedSSHServerQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedSSHServerQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedSSHServerQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedSSHServerQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedSSHServerQuery) SetSortField ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedSSHServerQuery) ToMap ¶

func (o ModelsQueryModelsPagedSSHServerQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedSSHServerQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedSSHServerQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedSSHServiceAccountQuery ¶

type ModelsQueryModelsPagedSSHServiceAccountQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedSSHServiceAccountQuery struct for ModelsQueryModelsPagedSSHServiceAccountQuery

func NewModelsQueryModelsPagedSSHServiceAccountQuery ¶

func NewModelsQueryModelsPagedSSHServiceAccountQuery() *ModelsQueryModelsPagedSSHServiceAccountQuery

NewModelsQueryModelsPagedSSHServiceAccountQuery instantiates a new ModelsQueryModelsPagedSSHServiceAccountQuery 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 NewModelsQueryModelsPagedSSHServiceAccountQueryWithDefaults ¶

func NewModelsQueryModelsPagedSSHServiceAccountQueryWithDefaults() *ModelsQueryModelsPagedSSHServiceAccountQuery

NewModelsQueryModelsPagedSSHServiceAccountQueryWithDefaults instantiates a new ModelsQueryModelsPagedSSHServiceAccountQuery 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 (*ModelsQueryModelsPagedSSHServiceAccountQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedSSHServiceAccountQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedSSHServiceAccountQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedSSHServiceAccountQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedSSHServiceAccountQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedSSHServiceAccountQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedSSHServiceAccountQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedSSHServiceAccountQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedSSHServiceAccountQuery) ToMap ¶

func (o ModelsQueryModelsPagedSSHServiceAccountQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedSSHServiceAccountQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedSSHServiceAccountQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedSSHUnmanagedKeyQuery ¶

type ModelsQueryModelsPagedSSHUnmanagedKeyQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedSSHUnmanagedKeyQuery struct for ModelsQueryModelsPagedSSHUnmanagedKeyQuery

func NewModelsQueryModelsPagedSSHUnmanagedKeyQuery ¶

func NewModelsQueryModelsPagedSSHUnmanagedKeyQuery() *ModelsQueryModelsPagedSSHUnmanagedKeyQuery

NewModelsQueryModelsPagedSSHUnmanagedKeyQuery instantiates a new ModelsQueryModelsPagedSSHUnmanagedKeyQuery 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 NewModelsQueryModelsPagedSSHUnmanagedKeyQueryWithDefaults ¶

func NewModelsQueryModelsPagedSSHUnmanagedKeyQueryWithDefaults() *ModelsQueryModelsPagedSSHUnmanagedKeyQuery

NewModelsQueryModelsPagedSSHUnmanagedKeyQueryWithDefaults instantiates a new ModelsQueryModelsPagedSSHUnmanagedKeyQuery 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 (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedSSHUnmanagedKeyQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedSSHUnmanagedKeyQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedSSHUnmanagedKeyQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedSSHUnmanagedKeyQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedSSHUnmanagedKeyQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedSSHUnmanagedKeyQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedSSHUnmanagedKeyQuery) ToMap ¶

func (o ModelsQueryModelsPagedSSHUnmanagedKeyQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedSSHUnmanagedKeyQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedSSHUnmanagedKeyQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedSSHUserQuery ¶

type ModelsQueryModelsPagedSSHUserQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedSSHUserQuery struct for ModelsQueryModelsPagedSSHUserQuery

func NewModelsQueryModelsPagedSSHUserQuery ¶

func NewModelsQueryModelsPagedSSHUserQuery() *ModelsQueryModelsPagedSSHUserQuery

NewModelsQueryModelsPagedSSHUserQuery instantiates a new ModelsQueryModelsPagedSSHUserQuery 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 NewModelsQueryModelsPagedSSHUserQueryWithDefaults ¶

func NewModelsQueryModelsPagedSSHUserQueryWithDefaults() *ModelsQueryModelsPagedSSHUserQuery

NewModelsQueryModelsPagedSSHUserQueryWithDefaults instantiates a new ModelsQueryModelsPagedSSHUserQuery 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 (*ModelsQueryModelsPagedSSHUserQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHUserQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHUserQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHUserQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHUserQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHUserQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHUserQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHUserQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHUserQuery) GetSortField ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) GetSortField() string

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSSHUserQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSSHUserQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHUserQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHUserQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHUserQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSSHUserQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedSSHUserQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedSSHUserQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedSSHUserQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedSSHUserQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedSSHUserQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedSSHUserQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedSSHUserQuery) SetSortField ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedSSHUserQuery) ToMap ¶

func (o ModelsQueryModelsPagedSSHUserQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedSSHUserQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedSSHUserQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedScanJobPartsQuery ¶

type ModelsQueryModelsPagedScanJobPartsQuery struct {
	JobType *int32 `json:"JobType,omitempty"`
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedScanJobPartsQuery struct for ModelsQueryModelsPagedScanJobPartsQuery

func NewModelsQueryModelsPagedScanJobPartsQuery ¶

func NewModelsQueryModelsPagedScanJobPartsQuery() *ModelsQueryModelsPagedScanJobPartsQuery

NewModelsQueryModelsPagedScanJobPartsQuery instantiates a new ModelsQueryModelsPagedScanJobPartsQuery 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 NewModelsQueryModelsPagedScanJobPartsQueryWithDefaults ¶

func NewModelsQueryModelsPagedScanJobPartsQueryWithDefaults() *ModelsQueryModelsPagedScanJobPartsQuery

NewModelsQueryModelsPagedScanJobPartsQueryWithDefaults instantiates a new ModelsQueryModelsPagedScanJobPartsQuery 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 (*ModelsQueryModelsPagedScanJobPartsQuery) GetJobType ¶

GetJobType returns the JobType field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedScanJobPartsQuery) GetJobTypeOk ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) GetJobTypeOk() (*int32, bool)

GetJobTypeOk returns a tuple with the JobType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedScanJobPartsQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedScanJobPartsQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedScanJobPartsQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedScanJobPartsQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedScanJobPartsQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedScanJobPartsQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedScanJobPartsQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedScanJobPartsQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedScanJobPartsQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedScanJobPartsQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedScanJobPartsQuery) HasJobType ¶

HasJobType returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedScanJobPartsQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedScanJobPartsQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedScanJobPartsQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedScanJobPartsQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedScanJobPartsQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedScanJobPartsQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedScanJobPartsQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedScanJobPartsQuery) SetJobType ¶

SetJobType gets a reference to the given int32 and assigns it to the JobType field.

func (*ModelsQueryModelsPagedScanJobPartsQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedScanJobPartsQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedScanJobPartsQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedScanJobPartsQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedScanJobPartsQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedScanJobPartsQuery) ToMap ¶

func (o ModelsQueryModelsPagedScanJobPartsQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedScanJobPartsQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedScanJobPartsQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedSecurityIdentityQuery ¶

type ModelsQueryModelsPagedSecurityIdentityQuery struct {
	// Whether to audit the signed xml for every identity requested by the query
	Validate *bool `json:"Validate,omitempty"`
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedSecurityIdentityQuery Paged query for security identities.

func NewModelsQueryModelsPagedSecurityIdentityQuery ¶

func NewModelsQueryModelsPagedSecurityIdentityQuery() *ModelsQueryModelsPagedSecurityIdentityQuery

NewModelsQueryModelsPagedSecurityIdentityQuery instantiates a new ModelsQueryModelsPagedSecurityIdentityQuery 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 NewModelsQueryModelsPagedSecurityIdentityQueryWithDefaults ¶

func NewModelsQueryModelsPagedSecurityIdentityQueryWithDefaults() *ModelsQueryModelsPagedSecurityIdentityQuery

NewModelsQueryModelsPagedSecurityIdentityQueryWithDefaults instantiates a new ModelsQueryModelsPagedSecurityIdentityQuery 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 (*ModelsQueryModelsPagedSecurityIdentityQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedSecurityIdentityQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedSecurityIdentityQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedSecurityIdentityQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedSecurityIdentityQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedSecurityIdentityQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) GetValidate ¶

GetValidate returns the Validate field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) GetValidateOk ¶

func (o *ModelsQueryModelsPagedSecurityIdentityQuery) GetValidateOk() (*bool, bool)

GetValidateOk returns a tuple with the Validate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedSecurityIdentityQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) HasValidate ¶

HasValidate returns a boolean if a field has been set.

func (ModelsQueryModelsPagedSecurityIdentityQuery) MarshalJSON ¶

func (*ModelsQueryModelsPagedSecurityIdentityQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedSecurityIdentityQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedSecurityIdentityQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (*ModelsQueryModelsPagedSecurityIdentityQuery) SetValidate ¶

SetValidate gets a reference to the given bool and assigns it to the Validate field.

func (ModelsQueryModelsPagedSecurityIdentityQuery) ToMap ¶

func (o ModelsQueryModelsPagedSecurityIdentityQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedSecurityIdentityQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedSecurityIdentityQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedSecurityRoleQuery ¶

type ModelsQueryModelsPagedSecurityRoleQuery struct {
	// Whether to audit the signed xml for every role requested by the query
	Validate *bool `json:"Validate,omitempty"`
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedSecurityRoleQuery Paged query for security identities.

func NewModelsQueryModelsPagedSecurityRoleQuery ¶

func NewModelsQueryModelsPagedSecurityRoleQuery() *ModelsQueryModelsPagedSecurityRoleQuery

NewModelsQueryModelsPagedSecurityRoleQuery instantiates a new ModelsQueryModelsPagedSecurityRoleQuery 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 NewModelsQueryModelsPagedSecurityRoleQueryWithDefaults ¶

func NewModelsQueryModelsPagedSecurityRoleQueryWithDefaults() *ModelsQueryModelsPagedSecurityRoleQuery

NewModelsQueryModelsPagedSecurityRoleQueryWithDefaults instantiates a new ModelsQueryModelsPagedSecurityRoleQuery 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 (*ModelsQueryModelsPagedSecurityRoleQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityRoleQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityRoleQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityRoleQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityRoleQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityRoleQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityRoleQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityRoleQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityRoleQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityRoleQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityRoleQuery) GetValidate ¶

GetValidate returns the Validate field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSecurityRoleQuery) GetValidateOk ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) GetValidateOk() (*bool, bool)

GetValidateOk returns a tuple with the Validate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSecurityRoleQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSecurityRoleQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSecurityRoleQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSecurityRoleQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSecurityRoleQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSecurityRoleQuery) HasValidate ¶

HasValidate returns a boolean if a field has been set.

func (ModelsQueryModelsPagedSecurityRoleQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedSecurityRoleQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedSecurityRoleQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedSecurityRoleQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedSecurityRoleQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedSecurityRoleQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedSecurityRoleQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (*ModelsQueryModelsPagedSecurityRoleQuery) SetValidate ¶

SetValidate gets a reference to the given bool and assigns it to the Validate field.

func (ModelsQueryModelsPagedSecurityRoleQuery) ToMap ¶

func (o ModelsQueryModelsPagedSecurityRoleQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedSecurityRoleQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedSecurityRoleQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedSslResultQuery ¶

type ModelsQueryModelsPagedSslResultQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedSslResultQuery struct for ModelsQueryModelsPagedSslResultQuery

func NewModelsQueryModelsPagedSslResultQuery ¶

func NewModelsQueryModelsPagedSslResultQuery() *ModelsQueryModelsPagedSslResultQuery

NewModelsQueryModelsPagedSslResultQuery instantiates a new ModelsQueryModelsPagedSslResultQuery 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 NewModelsQueryModelsPagedSslResultQueryWithDefaults ¶

func NewModelsQueryModelsPagedSslResultQueryWithDefaults() *ModelsQueryModelsPagedSslResultQuery

NewModelsQueryModelsPagedSslResultQueryWithDefaults instantiates a new ModelsQueryModelsPagedSslResultQuery 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 (*ModelsQueryModelsPagedSslResultQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedSslResultQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSslResultQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedSslResultQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSslResultQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedSslResultQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSslResultQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedSslResultQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSslResultQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedSslResultQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSslResultQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedSslResultQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSslResultQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedSslResultQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSslResultQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedSslResultQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSslResultQuery) GetSortField ¶

func (o *ModelsQueryModelsPagedSslResultQuery) GetSortField() string

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedSslResultQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedSslResultQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedSslResultQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedSslResultQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSslResultQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedSslResultQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSslResultQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedSslResultQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSslResultQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedSslResultQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedSslResultQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedSslResultQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedSslResultQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedSslResultQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedSslResultQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedSslResultQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedSslResultQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedSslResultQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedSslResultQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedSslResultQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedSslResultQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedSslResultQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedSslResultQuery) SetSortField ¶

func (o *ModelsQueryModelsPagedSslResultQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedSslResultQuery) ToMap ¶

func (o ModelsQueryModelsPagedSslResultQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedSslResultQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedSslResultQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsPagedTemplateQuery ¶

type ModelsQueryModelsPagedTemplateQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsPagedTemplateQuery struct for ModelsQueryModelsPagedTemplateQuery

func NewModelsQueryModelsPagedTemplateQuery ¶

func NewModelsQueryModelsPagedTemplateQuery() *ModelsQueryModelsPagedTemplateQuery

NewModelsQueryModelsPagedTemplateQuery instantiates a new ModelsQueryModelsPagedTemplateQuery 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 NewModelsQueryModelsPagedTemplateQueryWithDefaults ¶

func NewModelsQueryModelsPagedTemplateQueryWithDefaults() *ModelsQueryModelsPagedTemplateQuery

NewModelsQueryModelsPagedTemplateQueryWithDefaults instantiates a new ModelsQueryModelsPagedTemplateQuery 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 (*ModelsQueryModelsPagedTemplateQuery) GetPageReturned ¶

func (o *ModelsQueryModelsPagedTemplateQuery) GetPageReturned() int32

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedTemplateQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsPagedTemplateQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedTemplateQuery) GetQueryString ¶

func (o *ModelsQueryModelsPagedTemplateQuery) GetQueryString() string

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedTemplateQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsPagedTemplateQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedTemplateQuery) GetReturnLimit ¶

func (o *ModelsQueryModelsPagedTemplateQuery) GetReturnLimit() int32

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedTemplateQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsPagedTemplateQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedTemplateQuery) GetSortAscending ¶

func (o *ModelsQueryModelsPagedTemplateQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedTemplateQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsPagedTemplateQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedTemplateQuery) GetSortField ¶

func (o *ModelsQueryModelsPagedTemplateQuery) GetSortField() string

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsPagedTemplateQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsPagedTemplateQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsPagedTemplateQuery) HasPageReturned ¶

func (o *ModelsQueryModelsPagedTemplateQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedTemplateQuery) HasQueryString ¶

func (o *ModelsQueryModelsPagedTemplateQuery) HasQueryString() bool

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedTemplateQuery) HasReturnLimit ¶

func (o *ModelsQueryModelsPagedTemplateQuery) HasReturnLimit() bool

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedTemplateQuery) HasSortAscending ¶

func (o *ModelsQueryModelsPagedTemplateQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsPagedTemplateQuery) HasSortField ¶

func (o *ModelsQueryModelsPagedTemplateQuery) HasSortField() bool

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsPagedTemplateQuery) MarshalJSON ¶

func (o ModelsQueryModelsPagedTemplateQuery) MarshalJSON() ([]byte, error)

func (*ModelsQueryModelsPagedTemplateQuery) SetPageReturned ¶

func (o *ModelsQueryModelsPagedTemplateQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsPagedTemplateQuery) SetQueryString ¶

func (o *ModelsQueryModelsPagedTemplateQuery) SetQueryString(v string)

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsPagedTemplateQuery) SetReturnLimit ¶

func (o *ModelsQueryModelsPagedTemplateQuery) SetReturnLimit(v int32)

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsPagedTemplateQuery) SetSortAscending ¶

func (o *ModelsQueryModelsPagedTemplateQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsPagedTemplateQuery) SetSortField ¶

func (o *ModelsQueryModelsPagedTemplateQuery) SetSortField(v string)

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsPagedTemplateQuery) ToMap ¶

func (o ModelsQueryModelsPagedTemplateQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsPagedTemplateQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsPagedTemplateQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsWorkflowWorkflowDefinitionQuery ¶

type ModelsQueryModelsWorkflowWorkflowDefinitionQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsWorkflowWorkflowDefinitionQuery struct for ModelsQueryModelsWorkflowWorkflowDefinitionQuery

func NewModelsQueryModelsWorkflowWorkflowDefinitionQuery ¶

func NewModelsQueryModelsWorkflowWorkflowDefinitionQuery() *ModelsQueryModelsWorkflowWorkflowDefinitionQuery

NewModelsQueryModelsWorkflowWorkflowDefinitionQuery instantiates a new ModelsQueryModelsWorkflowWorkflowDefinitionQuery 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 NewModelsQueryModelsWorkflowWorkflowDefinitionQueryWithDefaults ¶

func NewModelsQueryModelsWorkflowWorkflowDefinitionQueryWithDefaults() *ModelsQueryModelsWorkflowWorkflowDefinitionQuery

NewModelsQueryModelsWorkflowWorkflowDefinitionQueryWithDefaults instantiates a new ModelsQueryModelsWorkflowWorkflowDefinitionQuery 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 (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetQueryStringOk ¶

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetReturnLimitOk ¶

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsWorkflowWorkflowDefinitionQuery) MarshalJSON ¶

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsWorkflowWorkflowDefinitionQuery) ToMap ¶

func (o ModelsQueryModelsWorkflowWorkflowDefinitionQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsWorkflowWorkflowDefinitionQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsWorkflowWorkflowDefinitionQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsWorkflowWorkflowInstanceQuery ¶

type ModelsQueryModelsWorkflowWorkflowInstanceQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsWorkflowWorkflowInstanceQuery struct for ModelsQueryModelsWorkflowWorkflowInstanceQuery

func NewModelsQueryModelsWorkflowWorkflowInstanceQuery ¶

func NewModelsQueryModelsWorkflowWorkflowInstanceQuery() *ModelsQueryModelsWorkflowWorkflowInstanceQuery

NewModelsQueryModelsWorkflowWorkflowInstanceQuery instantiates a new ModelsQueryModelsWorkflowWorkflowInstanceQuery 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 NewModelsQueryModelsWorkflowWorkflowInstanceQueryWithDefaults ¶

func NewModelsQueryModelsWorkflowWorkflowInstanceQueryWithDefaults() *ModelsQueryModelsWorkflowWorkflowInstanceQuery

NewModelsQueryModelsWorkflowWorkflowInstanceQueryWithDefaults instantiates a new ModelsQueryModelsWorkflowWorkflowInstanceQuery 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 (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetQueryStringOk ¶

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsWorkflowWorkflowInstanceQuery) MarshalJSON ¶

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsWorkflowWorkflowInstanceQuery) ToMap ¶

func (o ModelsQueryModelsWorkflowWorkflowInstanceQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsWorkflowWorkflowInstanceQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsWorkflowWorkflowInstanceQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsWorkflowWorkflowStepSchemaQuery ¶

type ModelsQueryModelsWorkflowWorkflowStepSchemaQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsWorkflowWorkflowStepSchemaQuery struct for ModelsQueryModelsWorkflowWorkflowStepSchemaQuery

func NewModelsQueryModelsWorkflowWorkflowStepSchemaQuery ¶

func NewModelsQueryModelsWorkflowWorkflowStepSchemaQuery() *ModelsQueryModelsWorkflowWorkflowStepSchemaQuery

NewModelsQueryModelsWorkflowWorkflowStepSchemaQuery instantiates a new ModelsQueryModelsWorkflowWorkflowStepSchemaQuery 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 NewModelsQueryModelsWorkflowWorkflowStepSchemaQueryWithDefaults ¶

func NewModelsQueryModelsWorkflowWorkflowStepSchemaQueryWithDefaults() *ModelsQueryModelsWorkflowWorkflowStepSchemaQuery

NewModelsQueryModelsWorkflowWorkflowStepSchemaQueryWithDefaults instantiates a new ModelsQueryModelsWorkflowWorkflowStepSchemaQuery 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 (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetQueryStringOk ¶

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetReturnLimitOk ¶

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetSortAscending ¶

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) GetSortFieldOk ¶

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) HasPageReturned ¶

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) HasSortAscending ¶

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) MarshalJSON ¶

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) SetPageReturned ¶

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) SetSortAscending ¶

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) ToMap ¶

func (o ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsWorkflowWorkflowStepSchemaQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsQueryModelsWorkflowWorkflowTypeQuery ¶

type ModelsQueryModelsWorkflowWorkflowTypeQuery struct {
	// Contents of the query (ex: field1 -eq value1 AND field2 -gt value2)
	QueryString *string `json:"QueryString,omitempty"`
	// The current page within the result set to be returned
	PageReturned *int32 `json:"PageReturned,omitempty"`
	// Maximum number of records to be returned in a single call
	ReturnLimit *int32 `json:"ReturnLimit,omitempty"`
	// Field by which the results should be sorted (view results via Management Portal for sortable columns)
	SortField *string `json:"SortField,omitempty"`
	// Field sort direction [0=ascending, 1=descending]
	SortAscending        *int32 `json:"SortAscending,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsQueryModelsWorkflowWorkflowTypeQuery struct for ModelsQueryModelsWorkflowWorkflowTypeQuery

func NewModelsQueryModelsWorkflowWorkflowTypeQuery ¶

func NewModelsQueryModelsWorkflowWorkflowTypeQuery() *ModelsQueryModelsWorkflowWorkflowTypeQuery

NewModelsQueryModelsWorkflowWorkflowTypeQuery instantiates a new ModelsQueryModelsWorkflowWorkflowTypeQuery 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 NewModelsQueryModelsWorkflowWorkflowTypeQueryWithDefaults ¶

func NewModelsQueryModelsWorkflowWorkflowTypeQueryWithDefaults() *ModelsQueryModelsWorkflowWorkflowTypeQuery

NewModelsQueryModelsWorkflowWorkflowTypeQueryWithDefaults instantiates a new ModelsQueryModelsWorkflowWorkflowTypeQuery 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 (*ModelsQueryModelsWorkflowWorkflowTypeQuery) GetPageReturned ¶

GetPageReturned returns the PageReturned field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) GetPageReturnedOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowTypeQuery) GetPageReturnedOk() (*int32, bool)

GetPageReturnedOk returns a tuple with the PageReturned field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) GetQueryString ¶

GetQueryString returns the QueryString field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) GetQueryStringOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowTypeQuery) GetQueryStringOk() (*string, bool)

GetQueryStringOk returns a tuple with the QueryString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) GetReturnLimit ¶

GetReturnLimit returns the ReturnLimit field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) GetReturnLimitOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowTypeQuery) GetReturnLimitOk() (*int32, bool)

GetReturnLimitOk returns a tuple with the ReturnLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) GetSortAscending ¶

func (o *ModelsQueryModelsWorkflowWorkflowTypeQuery) GetSortAscending() int32

GetSortAscending returns the SortAscending field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) GetSortAscendingOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowTypeQuery) GetSortAscendingOk() (*int32, bool)

GetSortAscendingOk returns a tuple with the SortAscending field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) GetSortField ¶

GetSortField returns the SortField field value if set, zero value otherwise.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) GetSortFieldOk ¶

func (o *ModelsQueryModelsWorkflowWorkflowTypeQuery) GetSortFieldOk() (*string, bool)

GetSortFieldOk returns a tuple with the SortField field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) HasPageReturned ¶

func (o *ModelsQueryModelsWorkflowWorkflowTypeQuery) HasPageReturned() bool

HasPageReturned returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) HasQueryString ¶

HasQueryString returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) HasReturnLimit ¶

HasReturnLimit returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) HasSortAscending ¶

func (o *ModelsQueryModelsWorkflowWorkflowTypeQuery) HasSortAscending() bool

HasSortAscending returns a boolean if a field has been set.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) HasSortField ¶

HasSortField returns a boolean if a field has been set.

func (ModelsQueryModelsWorkflowWorkflowTypeQuery) MarshalJSON ¶

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) SetPageReturned ¶

func (o *ModelsQueryModelsWorkflowWorkflowTypeQuery) SetPageReturned(v int32)

SetPageReturned gets a reference to the given int32 and assigns it to the PageReturned field.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) SetQueryString ¶

SetQueryString gets a reference to the given string and assigns it to the QueryString field.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) SetReturnLimit ¶

SetReturnLimit gets a reference to the given int32 and assigns it to the ReturnLimit field.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) SetSortAscending ¶

func (o *ModelsQueryModelsWorkflowWorkflowTypeQuery) SetSortAscending(v int32)

SetSortAscending gets a reference to the given int32 and assigns it to the SortAscending field.

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) SetSortField ¶

SetSortField gets a reference to the given string and assigns it to the SortField field.

func (ModelsQueryModelsWorkflowWorkflowTypeQuery) ToMap ¶

func (o ModelsQueryModelsWorkflowWorkflowTypeQuery) ToMap() (map[string]interface{}, error)

func (*ModelsQueryModelsWorkflowWorkflowTypeQuery) UnmarshalJSON ¶

func (o *ModelsQueryModelsWorkflowWorkflowTypeQuery) UnmarshalJSON(bytes []byte) (err error)

type ModelsRecoveryResponse ¶

type ModelsRecoveryResponse struct {
	PFX                  *string `json:"PFX,omitempty"`
	FileName             *string `json:"FileName,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsRecoveryResponse struct for ModelsRecoveryResponse

func NewModelsRecoveryResponse ¶

func NewModelsRecoveryResponse() *ModelsRecoveryResponse

NewModelsRecoveryResponse instantiates a new ModelsRecoveryResponse 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 NewModelsRecoveryResponseWithDefaults ¶

func NewModelsRecoveryResponseWithDefaults() *ModelsRecoveryResponse

NewModelsRecoveryResponseWithDefaults instantiates a new ModelsRecoveryResponse 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 (*ModelsRecoveryResponse) GetFileName ¶

func (o *ModelsRecoveryResponse) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise.

func (*ModelsRecoveryResponse) GetFileNameOk ¶

func (o *ModelsRecoveryResponse) GetFileNameOk() (*string, bool)

GetFileNameOk returns a tuple with the FileName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRecoveryResponse) GetPFX ¶

func (o *ModelsRecoveryResponse) GetPFX() string

GetPFX returns the PFX field value if set, zero value otherwise.

func (*ModelsRecoveryResponse) GetPFXOk ¶

func (o *ModelsRecoveryResponse) GetPFXOk() (*string, bool)

GetPFXOk returns a tuple with the PFX field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRecoveryResponse) HasFileName ¶

func (o *ModelsRecoveryResponse) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*ModelsRecoveryResponse) HasPFX ¶

func (o *ModelsRecoveryResponse) HasPFX() bool

HasPFX returns a boolean if a field has been set.

func (ModelsRecoveryResponse) MarshalJSON ¶

func (o ModelsRecoveryResponse) MarshalJSON() ([]byte, error)

func (*ModelsRecoveryResponse) SetFileName ¶

func (o *ModelsRecoveryResponse) SetFileName(v string)

SetFileName gets a reference to the given string and assigns it to the FileName field.

func (*ModelsRecoveryResponse) SetPFX ¶

func (o *ModelsRecoveryResponse) SetPFX(v string)

SetPFX gets a reference to the given string and assigns it to the PFX field.

func (ModelsRecoveryResponse) ToMap ¶

func (o ModelsRecoveryResponse) ToMap() (map[string]interface{}, error)

func (*ModelsRecoveryResponse) UnmarshalJSON ¶

func (o *ModelsRecoveryResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsReenrollmentStatus ¶

type ModelsReenrollmentStatus struct {
	Data                 *bool                                                           `json:"Data,omitempty"`
	AgentId              *string                                                         `json:"AgentId,omitempty"`
	Message              *string                                                         `json:"Message,omitempty"`
	JobProperties        *string                                                         `json:"JobProperties,omitempty"`
	CustomAliasAllowed   *int32                                                          `json:"CustomAliasAllowed,omitempty"`
	EntryParameters      []ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter `json:"EntryParameters,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsReenrollmentStatus struct for ModelsReenrollmentStatus

func NewModelsReenrollmentStatus ¶

func NewModelsReenrollmentStatus() *ModelsReenrollmentStatus

NewModelsReenrollmentStatus instantiates a new ModelsReenrollmentStatus 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 NewModelsReenrollmentStatusWithDefaults ¶

func NewModelsReenrollmentStatusWithDefaults() *ModelsReenrollmentStatus

NewModelsReenrollmentStatusWithDefaults instantiates a new ModelsReenrollmentStatus 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 (*ModelsReenrollmentStatus) GetAgentId ¶

func (o *ModelsReenrollmentStatus) GetAgentId() string

GetAgentId returns the AgentId field value if set, zero value otherwise.

func (*ModelsReenrollmentStatus) GetAgentIdOk ¶

func (o *ModelsReenrollmentStatus) GetAgentIdOk() (*string, bool)

GetAgentIdOk returns a tuple with the AgentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReenrollmentStatus) GetCustomAliasAllowed ¶

func (o *ModelsReenrollmentStatus) GetCustomAliasAllowed() int32

GetCustomAliasAllowed returns the CustomAliasAllowed field value if set, zero value otherwise.

func (*ModelsReenrollmentStatus) GetCustomAliasAllowedOk ¶

func (o *ModelsReenrollmentStatus) GetCustomAliasAllowedOk() (*int32, bool)

GetCustomAliasAllowedOk returns a tuple with the CustomAliasAllowed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReenrollmentStatus) GetData ¶

func (o *ModelsReenrollmentStatus) GetData() bool

GetData returns the Data field value if set, zero value otherwise.

func (*ModelsReenrollmentStatus) GetDataOk ¶

func (o *ModelsReenrollmentStatus) GetDataOk() (*bool, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReenrollmentStatus) GetEntryParameters ¶

GetEntryParameters returns the EntryParameters field value if set, zero value otherwise.

func (*ModelsReenrollmentStatus) GetEntryParametersOk ¶

GetEntryParametersOk returns a tuple with the EntryParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReenrollmentStatus) GetJobProperties ¶

func (o *ModelsReenrollmentStatus) GetJobProperties() string

GetJobProperties returns the JobProperties field value if set, zero value otherwise.

func (*ModelsReenrollmentStatus) GetJobPropertiesOk ¶

func (o *ModelsReenrollmentStatus) GetJobPropertiesOk() (*string, bool)

GetJobPropertiesOk returns a tuple with the JobProperties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReenrollmentStatus) GetMessage ¶

func (o *ModelsReenrollmentStatus) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ModelsReenrollmentStatus) GetMessageOk ¶

func (o *ModelsReenrollmentStatus) 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 (*ModelsReenrollmentStatus) HasAgentId ¶

func (o *ModelsReenrollmentStatus) HasAgentId() bool

HasAgentId returns a boolean if a field has been set.

func (*ModelsReenrollmentStatus) HasCustomAliasAllowed ¶

func (o *ModelsReenrollmentStatus) HasCustomAliasAllowed() bool

HasCustomAliasAllowed returns a boolean if a field has been set.

func (*ModelsReenrollmentStatus) HasData ¶

func (o *ModelsReenrollmentStatus) HasData() bool

HasData returns a boolean if a field has been set.

func (*ModelsReenrollmentStatus) HasEntryParameters ¶

func (o *ModelsReenrollmentStatus) HasEntryParameters() bool

HasEntryParameters returns a boolean if a field has been set.

func (*ModelsReenrollmentStatus) HasJobProperties ¶

func (o *ModelsReenrollmentStatus) HasJobProperties() bool

HasJobProperties returns a boolean if a field has been set.

func (*ModelsReenrollmentStatus) HasMessage ¶

func (o *ModelsReenrollmentStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (ModelsReenrollmentStatus) MarshalJSON ¶

func (o ModelsReenrollmentStatus) MarshalJSON() ([]byte, error)

func (*ModelsReenrollmentStatus) SetAgentId ¶

func (o *ModelsReenrollmentStatus) SetAgentId(v string)

SetAgentId gets a reference to the given string and assigns it to the AgentId field.

func (*ModelsReenrollmentStatus) SetCustomAliasAllowed ¶

func (o *ModelsReenrollmentStatus) SetCustomAliasAllowed(v int32)

SetCustomAliasAllowed gets a reference to the given int32 and assigns it to the CustomAliasAllowed field.

func (*ModelsReenrollmentStatus) SetData ¶

func (o *ModelsReenrollmentStatus) SetData(v bool)

SetData gets a reference to the given bool and assigns it to the Data field.

func (*ModelsReenrollmentStatus) SetEntryParameters ¶

SetEntryParameters gets a reference to the given []ModelsCertificateStoreTypesCertificateStoreTypeEntryParameter and assigns it to the EntryParameters field.

func (*ModelsReenrollmentStatus) SetJobProperties ¶

func (o *ModelsReenrollmentStatus) SetJobProperties(v string)

SetJobProperties gets a reference to the given string and assigns it to the JobProperties field.

func (*ModelsReenrollmentStatus) SetMessage ¶

func (o *ModelsReenrollmentStatus) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (ModelsReenrollmentStatus) ToMap ¶

func (o ModelsReenrollmentStatus) ToMap() (map[string]interface{}, error)

func (*ModelsReenrollmentStatus) UnmarshalJSON ¶

func (o *ModelsReenrollmentStatus) UnmarshalJSON(bytes []byte) (err error)

type ModelsReport ¶

type ModelsReport struct {
	Id                      *int32                   `json:"Id,omitempty"`
	Scheduled               *int32                   `json:"Scheduled,omitempty"`
	DisplayName             *string                  `json:"DisplayName,omitempty"`
	Description             *string                  `json:"Description,omitempty"`
	ReportPath              *string                  `json:"ReportPath,omitempty"`
	VersionNumber           *string                  `json:"VersionNumber,omitempty"`
	Categories              *string                  `json:"Categories,omitempty"`
	ShortName               *string                  `json:"ShortName,omitempty"`
	InNavigator             *bool                    `json:"InNavigator,omitempty"`
	Favorite                *bool                    `json:"Favorite,omitempty"`
	RemoveDuplicates        *bool                    `json:"RemoveDuplicates,omitempty"`
	UsesCollection          *bool                    `json:"UsesCollection,omitempty"`
	ReportParameter         []ModelsReportParameters `json:"ReportParameter,omitempty"`
	Schedules               []ModelsReportSchedule   `json:"Schedules,omitempty"`
	AcceptedScheduleFormats []string                 `json:"AcceptedScheduleFormats,omitempty"`
	AdditionalProperties    map[string]interface{}
}

ModelsReport struct for ModelsReport

func NewModelsReport ¶

func NewModelsReport() *ModelsReport

NewModelsReport instantiates a new ModelsReport 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 NewModelsReportWithDefaults ¶

func NewModelsReportWithDefaults() *ModelsReport

NewModelsReportWithDefaults instantiates a new ModelsReport 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 (*ModelsReport) GetAcceptedScheduleFormats ¶

func (o *ModelsReport) GetAcceptedScheduleFormats() []string

GetAcceptedScheduleFormats returns the AcceptedScheduleFormats field value if set, zero value otherwise.

func (*ModelsReport) GetAcceptedScheduleFormatsOk ¶

func (o *ModelsReport) GetAcceptedScheduleFormatsOk() ([]string, bool)

GetAcceptedScheduleFormatsOk returns a tuple with the AcceptedScheduleFormats field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetCategories ¶

func (o *ModelsReport) GetCategories() string

GetCategories returns the Categories field value if set, zero value otherwise.

func (*ModelsReport) GetCategoriesOk ¶

func (o *ModelsReport) GetCategoriesOk() (*string, bool)

GetCategoriesOk returns a tuple with the Categories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetDescription ¶

func (o *ModelsReport) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelsReport) GetDescriptionOk ¶

func (o *ModelsReport) 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 (*ModelsReport) GetDisplayName ¶

func (o *ModelsReport) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsReport) GetDisplayNameOk ¶

func (o *ModelsReport) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetFavorite ¶

func (o *ModelsReport) GetFavorite() bool

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*ModelsReport) GetFavoriteOk ¶

func (o *ModelsReport) GetFavoriteOk() (*bool, bool)

GetFavoriteOk returns a tuple with the Favorite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetId ¶

func (o *ModelsReport) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsReport) GetIdOk ¶

func (o *ModelsReport) 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 (*ModelsReport) GetInNavigator ¶

func (o *ModelsReport) GetInNavigator() bool

GetInNavigator returns the InNavigator field value if set, zero value otherwise.

func (*ModelsReport) GetInNavigatorOk ¶

func (o *ModelsReport) GetInNavigatorOk() (*bool, bool)

GetInNavigatorOk returns a tuple with the InNavigator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetRemoveDuplicates ¶

func (o *ModelsReport) GetRemoveDuplicates() bool

GetRemoveDuplicates returns the RemoveDuplicates field value if set, zero value otherwise.

func (*ModelsReport) GetRemoveDuplicatesOk ¶

func (o *ModelsReport) GetRemoveDuplicatesOk() (*bool, bool)

GetRemoveDuplicatesOk returns a tuple with the RemoveDuplicates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetReportParameter ¶

func (o *ModelsReport) GetReportParameter() []ModelsReportParameters

GetReportParameter returns the ReportParameter field value if set, zero value otherwise.

func (*ModelsReport) GetReportParameterOk ¶

func (o *ModelsReport) GetReportParameterOk() ([]ModelsReportParameters, bool)

GetReportParameterOk returns a tuple with the ReportParameter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetReportPath ¶

func (o *ModelsReport) GetReportPath() string

GetReportPath returns the ReportPath field value if set, zero value otherwise.

func (*ModelsReport) GetReportPathOk ¶

func (o *ModelsReport) GetReportPathOk() (*string, bool)

GetReportPathOk returns a tuple with the ReportPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetScheduled ¶

func (o *ModelsReport) GetScheduled() int32

GetScheduled returns the Scheduled field value if set, zero value otherwise.

func (*ModelsReport) GetScheduledOk ¶

func (o *ModelsReport) GetScheduledOk() (*int32, bool)

GetScheduledOk returns a tuple with the Scheduled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetSchedules ¶

func (o *ModelsReport) GetSchedules() []ModelsReportSchedule

GetSchedules returns the Schedules field value if set, zero value otherwise.

func (*ModelsReport) GetSchedulesOk ¶

func (o *ModelsReport) GetSchedulesOk() ([]ModelsReportSchedule, bool)

GetSchedulesOk returns a tuple with the Schedules field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetShortName ¶

func (o *ModelsReport) GetShortName() string

GetShortName returns the ShortName field value if set, zero value otherwise.

func (*ModelsReport) GetShortNameOk ¶

func (o *ModelsReport) GetShortNameOk() (*string, bool)

GetShortNameOk returns a tuple with the ShortName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetUsesCollection ¶

func (o *ModelsReport) GetUsesCollection() bool

GetUsesCollection returns the UsesCollection field value if set, zero value otherwise.

func (*ModelsReport) GetUsesCollectionOk ¶

func (o *ModelsReport) GetUsesCollectionOk() (*bool, bool)

GetUsesCollectionOk returns a tuple with the UsesCollection field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) GetVersionNumber ¶

func (o *ModelsReport) GetVersionNumber() string

GetVersionNumber returns the VersionNumber field value if set, zero value otherwise.

func (*ModelsReport) GetVersionNumberOk ¶

func (o *ModelsReport) GetVersionNumberOk() (*string, bool)

GetVersionNumberOk returns a tuple with the VersionNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReport) HasAcceptedScheduleFormats ¶

func (o *ModelsReport) HasAcceptedScheduleFormats() bool

HasAcceptedScheduleFormats returns a boolean if a field has been set.

func (*ModelsReport) HasCategories ¶

func (o *ModelsReport) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*ModelsReport) HasDescription ¶

func (o *ModelsReport) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelsReport) HasDisplayName ¶

func (o *ModelsReport) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ModelsReport) HasFavorite ¶

func (o *ModelsReport) HasFavorite() bool

HasFavorite returns a boolean if a field has been set.

func (*ModelsReport) HasId ¶

func (o *ModelsReport) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsReport) HasInNavigator ¶

func (o *ModelsReport) HasInNavigator() bool

HasInNavigator returns a boolean if a field has been set.

func (*ModelsReport) HasRemoveDuplicates ¶

func (o *ModelsReport) HasRemoveDuplicates() bool

HasRemoveDuplicates returns a boolean if a field has been set.

func (*ModelsReport) HasReportParameter ¶

func (o *ModelsReport) HasReportParameter() bool

HasReportParameter returns a boolean if a field has been set.

func (*ModelsReport) HasReportPath ¶

func (o *ModelsReport) HasReportPath() bool

HasReportPath returns a boolean if a field has been set.

func (*ModelsReport) HasScheduled ¶

func (o *ModelsReport) HasScheduled() bool

HasScheduled returns a boolean if a field has been set.

func (*ModelsReport) HasSchedules ¶

func (o *ModelsReport) HasSchedules() bool

HasSchedules returns a boolean if a field has been set.

func (*ModelsReport) HasShortName ¶

func (o *ModelsReport) HasShortName() bool

HasShortName returns a boolean if a field has been set.

func (*ModelsReport) HasUsesCollection ¶

func (o *ModelsReport) HasUsesCollection() bool

HasUsesCollection returns a boolean if a field has been set.

func (*ModelsReport) HasVersionNumber ¶

func (o *ModelsReport) HasVersionNumber() bool

HasVersionNumber returns a boolean if a field has been set.

func (ModelsReport) MarshalJSON ¶

func (o ModelsReport) MarshalJSON() ([]byte, error)

func (*ModelsReport) SetAcceptedScheduleFormats ¶

func (o *ModelsReport) SetAcceptedScheduleFormats(v []string)

SetAcceptedScheduleFormats gets a reference to the given []string and assigns it to the AcceptedScheduleFormats field.

func (*ModelsReport) SetCategories ¶

func (o *ModelsReport) SetCategories(v string)

SetCategories gets a reference to the given string and assigns it to the Categories field.

func (*ModelsReport) SetDescription ¶

func (o *ModelsReport) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelsReport) SetDisplayName ¶

func (o *ModelsReport) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsReport) SetFavorite ¶

func (o *ModelsReport) SetFavorite(v bool)

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*ModelsReport) SetId ¶

func (o *ModelsReport) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsReport) SetInNavigator ¶

func (o *ModelsReport) SetInNavigator(v bool)

SetInNavigator gets a reference to the given bool and assigns it to the InNavigator field.

func (*ModelsReport) SetRemoveDuplicates ¶

func (o *ModelsReport) SetRemoveDuplicates(v bool)

SetRemoveDuplicates gets a reference to the given bool and assigns it to the RemoveDuplicates field.

func (*ModelsReport) SetReportParameter ¶

func (o *ModelsReport) SetReportParameter(v []ModelsReportParameters)

SetReportParameter gets a reference to the given []ModelsReportParameters and assigns it to the ReportParameter field.

func (*ModelsReport) SetReportPath ¶

func (o *ModelsReport) SetReportPath(v string)

SetReportPath gets a reference to the given string and assigns it to the ReportPath field.

func (*ModelsReport) SetScheduled ¶

func (o *ModelsReport) SetScheduled(v int32)

SetScheduled gets a reference to the given int32 and assigns it to the Scheduled field.

func (*ModelsReport) SetSchedules ¶

func (o *ModelsReport) SetSchedules(v []ModelsReportSchedule)

SetSchedules gets a reference to the given []ModelsReportSchedule and assigns it to the Schedules field.

func (*ModelsReport) SetShortName ¶

func (o *ModelsReport) SetShortName(v string)

SetShortName gets a reference to the given string and assigns it to the ShortName field.

func (*ModelsReport) SetUsesCollection ¶

func (o *ModelsReport) SetUsesCollection(v bool)

SetUsesCollection gets a reference to the given bool and assigns it to the UsesCollection field.

func (*ModelsReport) SetVersionNumber ¶

func (o *ModelsReport) SetVersionNumber(v string)

SetVersionNumber gets a reference to the given string and assigns it to the VersionNumber field.

func (ModelsReport) ToMap ¶

func (o ModelsReport) ToMap() (map[string]interface{}, error)

func (*ModelsReport) UnmarshalJSON ¶

func (o *ModelsReport) UnmarshalJSON(bytes []byte) (err error)

type ModelsReportParameters ¶

type ModelsReportParameters struct {
	Id                   *int32  `json:"Id,omitempty"`
	ParameterName        *string `json:"ParameterName,omitempty"`
	ParameterType        *int32  `json:"ParameterType,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	Description          *string `json:"Description,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	DisplayOrder         *int32  `json:"DisplayOrder,omitempty"`
	ParameterVisibility  *int32  `json:"ParameterVisibility,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsReportParameters struct for ModelsReportParameters

func NewModelsReportParameters ¶

func NewModelsReportParameters() *ModelsReportParameters

NewModelsReportParameters instantiates a new ModelsReportParameters 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 NewModelsReportParametersWithDefaults ¶

func NewModelsReportParametersWithDefaults() *ModelsReportParameters

NewModelsReportParametersWithDefaults instantiates a new ModelsReportParameters 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 (*ModelsReportParameters) GetDefaultValue ¶

func (o *ModelsReportParameters) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*ModelsReportParameters) GetDefaultValueOk ¶

func (o *ModelsReportParameters) GetDefaultValueOk() (*string, bool)

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportParameters) GetDescription ¶

func (o *ModelsReportParameters) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelsReportParameters) GetDescriptionOk ¶

func (o *ModelsReportParameters) 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 (*ModelsReportParameters) GetDisplayName ¶

func (o *ModelsReportParameters) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsReportParameters) GetDisplayNameOk ¶

func (o *ModelsReportParameters) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportParameters) GetDisplayOrder ¶

func (o *ModelsReportParameters) GetDisplayOrder() int32

GetDisplayOrder returns the DisplayOrder field value if set, zero value otherwise.

func (*ModelsReportParameters) GetDisplayOrderOk ¶

func (o *ModelsReportParameters) GetDisplayOrderOk() (*int32, bool)

GetDisplayOrderOk returns a tuple with the DisplayOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportParameters) GetId ¶

func (o *ModelsReportParameters) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsReportParameters) GetIdOk ¶

func (o *ModelsReportParameters) 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 (*ModelsReportParameters) GetParameterName ¶

func (o *ModelsReportParameters) GetParameterName() string

GetParameterName returns the ParameterName field value if set, zero value otherwise.

func (*ModelsReportParameters) GetParameterNameOk ¶

func (o *ModelsReportParameters) GetParameterNameOk() (*string, bool)

GetParameterNameOk returns a tuple with the ParameterName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportParameters) GetParameterType ¶

func (o *ModelsReportParameters) GetParameterType() int32

GetParameterType returns the ParameterType field value if set, zero value otherwise.

func (*ModelsReportParameters) GetParameterTypeOk ¶

func (o *ModelsReportParameters) GetParameterTypeOk() (*int32, bool)

GetParameterTypeOk returns a tuple with the ParameterType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportParameters) GetParameterVisibility ¶

func (o *ModelsReportParameters) GetParameterVisibility() int32

GetParameterVisibility returns the ParameterVisibility field value if set, zero value otherwise.

func (*ModelsReportParameters) GetParameterVisibilityOk ¶

func (o *ModelsReportParameters) GetParameterVisibilityOk() (*int32, bool)

GetParameterVisibilityOk returns a tuple with the ParameterVisibility field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportParameters) HasDefaultValue ¶

func (o *ModelsReportParameters) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*ModelsReportParameters) HasDescription ¶

func (o *ModelsReportParameters) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelsReportParameters) HasDisplayName ¶

func (o *ModelsReportParameters) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ModelsReportParameters) HasDisplayOrder ¶

func (o *ModelsReportParameters) HasDisplayOrder() bool

HasDisplayOrder returns a boolean if a field has been set.

func (*ModelsReportParameters) HasId ¶

func (o *ModelsReportParameters) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsReportParameters) HasParameterName ¶

func (o *ModelsReportParameters) HasParameterName() bool

HasParameterName returns a boolean if a field has been set.

func (*ModelsReportParameters) HasParameterType ¶

func (o *ModelsReportParameters) HasParameterType() bool

HasParameterType returns a boolean if a field has been set.

func (*ModelsReportParameters) HasParameterVisibility ¶

func (o *ModelsReportParameters) HasParameterVisibility() bool

HasParameterVisibility returns a boolean if a field has been set.

func (ModelsReportParameters) MarshalJSON ¶

func (o ModelsReportParameters) MarshalJSON() ([]byte, error)

func (*ModelsReportParameters) SetDefaultValue ¶

func (o *ModelsReportParameters) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*ModelsReportParameters) SetDescription ¶

func (o *ModelsReportParameters) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelsReportParameters) SetDisplayName ¶

func (o *ModelsReportParameters) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsReportParameters) SetDisplayOrder ¶

func (o *ModelsReportParameters) SetDisplayOrder(v int32)

SetDisplayOrder gets a reference to the given int32 and assigns it to the DisplayOrder field.

func (*ModelsReportParameters) SetId ¶

func (o *ModelsReportParameters) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsReportParameters) SetParameterName ¶

func (o *ModelsReportParameters) SetParameterName(v string)

SetParameterName gets a reference to the given string and assigns it to the ParameterName field.

func (*ModelsReportParameters) SetParameterType ¶

func (o *ModelsReportParameters) SetParameterType(v int32)

SetParameterType gets a reference to the given int32 and assigns it to the ParameterType field.

func (*ModelsReportParameters) SetParameterVisibility ¶

func (o *ModelsReportParameters) SetParameterVisibility(v int32)

SetParameterVisibility gets a reference to the given int32 and assigns it to the ParameterVisibility field.

func (ModelsReportParameters) ToMap ¶

func (o ModelsReportParameters) ToMap() (map[string]interface{}, error)

func (*ModelsReportParameters) UnmarshalJSON ¶

func (o *ModelsReportParameters) UnmarshalJSON(bytes []byte) (err error)

type ModelsReportParametersRequest ¶

type ModelsReportParametersRequest struct {
	Id                   *int32  `json:"Id,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	Description          *string `json:"Description,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsReportParametersRequest struct for ModelsReportParametersRequest

func NewModelsReportParametersRequest ¶

func NewModelsReportParametersRequest() *ModelsReportParametersRequest

NewModelsReportParametersRequest instantiates a new ModelsReportParametersRequest 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 NewModelsReportParametersRequestWithDefaults ¶

func NewModelsReportParametersRequestWithDefaults() *ModelsReportParametersRequest

NewModelsReportParametersRequestWithDefaults instantiates a new ModelsReportParametersRequest 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 (*ModelsReportParametersRequest) GetDefaultValue ¶

func (o *ModelsReportParametersRequest) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*ModelsReportParametersRequest) GetDefaultValueOk ¶

func (o *ModelsReportParametersRequest) GetDefaultValueOk() (*string, bool)

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportParametersRequest) GetDescription ¶

func (o *ModelsReportParametersRequest) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*ModelsReportParametersRequest) GetDescriptionOk ¶

func (o *ModelsReportParametersRequest) 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 (*ModelsReportParametersRequest) GetDisplayName ¶

func (o *ModelsReportParametersRequest) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsReportParametersRequest) GetDisplayNameOk ¶

func (o *ModelsReportParametersRequest) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportParametersRequest) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsReportParametersRequest) GetIdOk ¶

func (o *ModelsReportParametersRequest) 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 (*ModelsReportParametersRequest) HasDefaultValue ¶

func (o *ModelsReportParametersRequest) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*ModelsReportParametersRequest) HasDescription ¶

func (o *ModelsReportParametersRequest) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ModelsReportParametersRequest) HasDisplayName ¶

func (o *ModelsReportParametersRequest) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ModelsReportParametersRequest) HasId ¶

HasId returns a boolean if a field has been set.

func (ModelsReportParametersRequest) MarshalJSON ¶

func (o ModelsReportParametersRequest) MarshalJSON() ([]byte, error)

func (*ModelsReportParametersRequest) SetDefaultValue ¶

func (o *ModelsReportParametersRequest) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*ModelsReportParametersRequest) SetDescription ¶

func (o *ModelsReportParametersRequest) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*ModelsReportParametersRequest) SetDisplayName ¶

func (o *ModelsReportParametersRequest) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsReportParametersRequest) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (ModelsReportParametersRequest) ToMap ¶

func (o ModelsReportParametersRequest) ToMap() (map[string]interface{}, error)

func (*ModelsReportParametersRequest) UnmarshalJSON ¶

func (o *ModelsReportParametersRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsReportRequestModel ¶

type ModelsReportRequestModel struct {
	Id                   *int32 `json:"Id,omitempty"`
	InNavigator          *bool  `json:"InNavigator,omitempty"`
	Favorite             *bool  `json:"Favorite,omitempty"`
	RemoveDuplicates     *bool  `json:"RemoveDuplicates,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsReportRequestModel The ReportRequestModel can be used to update a report.

func NewModelsReportRequestModel ¶

func NewModelsReportRequestModel() *ModelsReportRequestModel

NewModelsReportRequestModel instantiates a new ModelsReportRequestModel 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 NewModelsReportRequestModelWithDefaults ¶

func NewModelsReportRequestModelWithDefaults() *ModelsReportRequestModel

NewModelsReportRequestModelWithDefaults instantiates a new ModelsReportRequestModel 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 (*ModelsReportRequestModel) GetFavorite ¶

func (o *ModelsReportRequestModel) GetFavorite() bool

GetFavorite returns the Favorite field value if set, zero value otherwise.

func (*ModelsReportRequestModel) GetFavoriteOk ¶

func (o *ModelsReportRequestModel) GetFavoriteOk() (*bool, bool)

GetFavoriteOk returns a tuple with the Favorite field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportRequestModel) GetId ¶

func (o *ModelsReportRequestModel) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsReportRequestModel) GetIdOk ¶

func (o *ModelsReportRequestModel) 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 (*ModelsReportRequestModel) GetInNavigator ¶

func (o *ModelsReportRequestModel) GetInNavigator() bool

GetInNavigator returns the InNavigator field value if set, zero value otherwise.

func (*ModelsReportRequestModel) GetInNavigatorOk ¶

func (o *ModelsReportRequestModel) GetInNavigatorOk() (*bool, bool)

GetInNavigatorOk returns a tuple with the InNavigator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportRequestModel) GetRemoveDuplicates ¶

func (o *ModelsReportRequestModel) GetRemoveDuplicates() bool

GetRemoveDuplicates returns the RemoveDuplicates field value if set, zero value otherwise.

func (*ModelsReportRequestModel) GetRemoveDuplicatesOk ¶

func (o *ModelsReportRequestModel) GetRemoveDuplicatesOk() (*bool, bool)

GetRemoveDuplicatesOk returns a tuple with the RemoveDuplicates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportRequestModel) HasFavorite ¶

func (o *ModelsReportRequestModel) HasFavorite() bool

HasFavorite returns a boolean if a field has been set.

func (*ModelsReportRequestModel) HasId ¶

func (o *ModelsReportRequestModel) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsReportRequestModel) HasInNavigator ¶

func (o *ModelsReportRequestModel) HasInNavigator() bool

HasInNavigator returns a boolean if a field has been set.

func (*ModelsReportRequestModel) HasRemoveDuplicates ¶

func (o *ModelsReportRequestModel) HasRemoveDuplicates() bool

HasRemoveDuplicates returns a boolean if a field has been set.

func (ModelsReportRequestModel) MarshalJSON ¶

func (o ModelsReportRequestModel) MarshalJSON() ([]byte, error)

func (*ModelsReportRequestModel) SetFavorite ¶

func (o *ModelsReportRequestModel) SetFavorite(v bool)

SetFavorite gets a reference to the given bool and assigns it to the Favorite field.

func (*ModelsReportRequestModel) SetId ¶

func (o *ModelsReportRequestModel) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsReportRequestModel) SetInNavigator ¶

func (o *ModelsReportRequestModel) SetInNavigator(v bool)

SetInNavigator gets a reference to the given bool and assigns it to the InNavigator field.

func (*ModelsReportRequestModel) SetRemoveDuplicates ¶

func (o *ModelsReportRequestModel) SetRemoveDuplicates(v bool)

SetRemoveDuplicates gets a reference to the given bool and assigns it to the RemoveDuplicates field.

func (ModelsReportRequestModel) ToMap ¶

func (o ModelsReportRequestModel) ToMap() (map[string]interface{}, error)

func (*ModelsReportRequestModel) UnmarshalJSON ¶

func (o *ModelsReportRequestModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsReportSchedule ¶

type ModelsReportSchedule struct {
	Id                      *int32                                      `json:"Id,omitempty"`
	SendReport              *bool                                       `json:"SendReport,omitempty"`
	SaveReport              *bool                                       `json:"SaveReport,omitempty"`
	SaveReportPath          *string                                     `json:"SaveReportPath,omitempty"`
	ReportFormat            *string                                     `json:"ReportFormat,omitempty"`
	KeyfactorSchedule       *KeyfactorCommonSchedulingKeyfactorSchedule `json:"KeyfactorSchedule,omitempty"`
	CertificateCollectionId *int32                                      `json:"CertificateCollectionId,omitempty"`
	EmailRecipients         []string                                    `json:"EmailRecipients,omitempty"`
	RuntimeParameters       *map[string]string                          `json:"RuntimeParameters,omitempty"`
	AdditionalProperties    map[string]interface{}
}

ModelsReportSchedule struct for ModelsReportSchedule

func NewModelsReportSchedule ¶

func NewModelsReportSchedule() *ModelsReportSchedule

NewModelsReportSchedule instantiates a new ModelsReportSchedule 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 NewModelsReportScheduleWithDefaults ¶

func NewModelsReportScheduleWithDefaults() *ModelsReportSchedule

NewModelsReportScheduleWithDefaults instantiates a new ModelsReportSchedule 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 (*ModelsReportSchedule) GetCertificateCollectionId ¶

func (o *ModelsReportSchedule) GetCertificateCollectionId() int32

GetCertificateCollectionId returns the CertificateCollectionId field value if set, zero value otherwise.

func (*ModelsReportSchedule) GetCertificateCollectionIdOk ¶

func (o *ModelsReportSchedule) GetCertificateCollectionIdOk() (*int32, bool)

GetCertificateCollectionIdOk returns a tuple with the CertificateCollectionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportSchedule) GetEmailRecipients ¶

func (o *ModelsReportSchedule) GetEmailRecipients() []string

GetEmailRecipients returns the EmailRecipients field value if set, zero value otherwise.

func (*ModelsReportSchedule) GetEmailRecipientsOk ¶

func (o *ModelsReportSchedule) GetEmailRecipientsOk() ([]string, bool)

GetEmailRecipientsOk returns a tuple with the EmailRecipients field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportSchedule) GetId ¶

func (o *ModelsReportSchedule) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsReportSchedule) GetIdOk ¶

func (o *ModelsReportSchedule) 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 (*ModelsReportSchedule) GetKeyfactorSchedule ¶

GetKeyfactorSchedule returns the KeyfactorSchedule field value if set, zero value otherwise.

func (*ModelsReportSchedule) GetKeyfactorScheduleOk ¶

GetKeyfactorScheduleOk returns a tuple with the KeyfactorSchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportSchedule) GetReportFormat ¶

func (o *ModelsReportSchedule) GetReportFormat() string

GetReportFormat returns the ReportFormat field value if set, zero value otherwise.

func (*ModelsReportSchedule) GetReportFormatOk ¶

func (o *ModelsReportSchedule) GetReportFormatOk() (*string, bool)

GetReportFormatOk returns a tuple with the ReportFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportSchedule) GetRuntimeParameters ¶

func (o *ModelsReportSchedule) GetRuntimeParameters() map[string]string

GetRuntimeParameters returns the RuntimeParameters field value if set, zero value otherwise.

func (*ModelsReportSchedule) GetRuntimeParametersOk ¶

func (o *ModelsReportSchedule) GetRuntimeParametersOk() (*map[string]string, bool)

GetRuntimeParametersOk returns a tuple with the RuntimeParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportSchedule) GetSaveReport ¶

func (o *ModelsReportSchedule) GetSaveReport() bool

GetSaveReport returns the SaveReport field value if set, zero value otherwise.

func (*ModelsReportSchedule) GetSaveReportOk ¶

func (o *ModelsReportSchedule) GetSaveReportOk() (*bool, bool)

GetSaveReportOk returns a tuple with the SaveReport field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportSchedule) GetSaveReportPath ¶

func (o *ModelsReportSchedule) GetSaveReportPath() string

GetSaveReportPath returns the SaveReportPath field value if set, zero value otherwise.

func (*ModelsReportSchedule) GetSaveReportPathOk ¶

func (o *ModelsReportSchedule) GetSaveReportPathOk() (*string, bool)

GetSaveReportPathOk returns a tuple with the SaveReportPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportSchedule) GetSendReport ¶

func (o *ModelsReportSchedule) GetSendReport() bool

GetSendReport returns the SendReport field value if set, zero value otherwise.

func (*ModelsReportSchedule) GetSendReportOk ¶

func (o *ModelsReportSchedule) GetSendReportOk() (*bool, bool)

GetSendReportOk returns a tuple with the SendReport field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsReportSchedule) HasCertificateCollectionId ¶

func (o *ModelsReportSchedule) HasCertificateCollectionId() bool

HasCertificateCollectionId returns a boolean if a field has been set.

func (*ModelsReportSchedule) HasEmailRecipients ¶

func (o *ModelsReportSchedule) HasEmailRecipients() bool

HasEmailRecipients returns a boolean if a field has been set.

func (*ModelsReportSchedule) HasId ¶

func (o *ModelsReportSchedule) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsReportSchedule) HasKeyfactorSchedule ¶

func (o *ModelsReportSchedule) HasKeyfactorSchedule() bool

HasKeyfactorSchedule returns a boolean if a field has been set.

func (*ModelsReportSchedule) HasReportFormat ¶

func (o *ModelsReportSchedule) HasReportFormat() bool

HasReportFormat returns a boolean if a field has been set.

func (*ModelsReportSchedule) HasRuntimeParameters ¶

func (o *ModelsReportSchedule) HasRuntimeParameters() bool

HasRuntimeParameters returns a boolean if a field has been set.

func (*ModelsReportSchedule) HasSaveReport ¶

func (o *ModelsReportSchedule) HasSaveReport() bool

HasSaveReport returns a boolean if a field has been set.

func (*ModelsReportSchedule) HasSaveReportPath ¶

func (o *ModelsReportSchedule) HasSaveReportPath() bool

HasSaveReportPath returns a boolean if a field has been set.

func (*ModelsReportSchedule) HasSendReport ¶

func (o *ModelsReportSchedule) HasSendReport() bool

HasSendReport returns a boolean if a field has been set.

func (ModelsReportSchedule) MarshalJSON ¶

func (o ModelsReportSchedule) MarshalJSON() ([]byte, error)

func (*ModelsReportSchedule) SetCertificateCollectionId ¶

func (o *ModelsReportSchedule) SetCertificateCollectionId(v int32)

SetCertificateCollectionId gets a reference to the given int32 and assigns it to the CertificateCollectionId field.

func (*ModelsReportSchedule) SetEmailRecipients ¶

func (o *ModelsReportSchedule) SetEmailRecipients(v []string)

SetEmailRecipients gets a reference to the given []string and assigns it to the EmailRecipients field.

func (*ModelsReportSchedule) SetId ¶

func (o *ModelsReportSchedule) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsReportSchedule) SetKeyfactorSchedule ¶

SetKeyfactorSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the KeyfactorSchedule field.

func (*ModelsReportSchedule) SetReportFormat ¶

func (o *ModelsReportSchedule) SetReportFormat(v string)

SetReportFormat gets a reference to the given string and assigns it to the ReportFormat field.

func (*ModelsReportSchedule) SetRuntimeParameters ¶

func (o *ModelsReportSchedule) SetRuntimeParameters(v map[string]string)

SetRuntimeParameters gets a reference to the given map[string]string and assigns it to the RuntimeParameters field.

func (*ModelsReportSchedule) SetSaveReport ¶

func (o *ModelsReportSchedule) SetSaveReport(v bool)

SetSaveReport gets a reference to the given bool and assigns it to the SaveReport field.

func (*ModelsReportSchedule) SetSaveReportPath ¶

func (o *ModelsReportSchedule) SetSaveReportPath(v string)

SetSaveReportPath gets a reference to the given string and assigns it to the SaveReportPath field.

func (*ModelsReportSchedule) SetSendReport ¶

func (o *ModelsReportSchedule) SetSendReport(v bool)

SetSendReport gets a reference to the given bool and assigns it to the SendReport field.

func (ModelsReportSchedule) ToMap ¶

func (o ModelsReportSchedule) ToMap() (map[string]interface{}, error)

func (*ModelsReportSchedule) UnmarshalJSON ¶

func (o *ModelsReportSchedule) UnmarshalJSON(bytes []byte) (err error)

type ModelsRevocationRevocationResponse ¶

type ModelsRevocationRevocationResponse struct {
	RevokedIds           []int32                                       `json:"RevokedIds,omitempty"`
	SuspendedCerts       []ModelsRevocationSuspendedRevocationResponse `json:"SuspendedCerts,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsRevocationRevocationResponse struct for ModelsRevocationRevocationResponse

func NewModelsRevocationRevocationResponse ¶

func NewModelsRevocationRevocationResponse() *ModelsRevocationRevocationResponse

NewModelsRevocationRevocationResponse instantiates a new ModelsRevocationRevocationResponse 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 NewModelsRevocationRevocationResponseWithDefaults ¶

func NewModelsRevocationRevocationResponseWithDefaults() *ModelsRevocationRevocationResponse

NewModelsRevocationRevocationResponseWithDefaults instantiates a new ModelsRevocationRevocationResponse 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 (*ModelsRevocationRevocationResponse) GetRevokedIds ¶

func (o *ModelsRevocationRevocationResponse) GetRevokedIds() []int32

GetRevokedIds returns the RevokedIds field value if set, zero value otherwise.

func (*ModelsRevocationRevocationResponse) GetRevokedIdsOk ¶

func (o *ModelsRevocationRevocationResponse) GetRevokedIdsOk() ([]int32, bool)

GetRevokedIdsOk returns a tuple with the RevokedIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevocationRevocationResponse) GetSuspendedCerts ¶

GetSuspendedCerts returns the SuspendedCerts field value if set, zero value otherwise.

func (*ModelsRevocationRevocationResponse) GetSuspendedCertsOk ¶

GetSuspendedCertsOk returns a tuple with the SuspendedCerts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevocationRevocationResponse) HasRevokedIds ¶

func (o *ModelsRevocationRevocationResponse) HasRevokedIds() bool

HasRevokedIds returns a boolean if a field has been set.

func (*ModelsRevocationRevocationResponse) HasSuspendedCerts ¶

func (o *ModelsRevocationRevocationResponse) HasSuspendedCerts() bool

HasSuspendedCerts returns a boolean if a field has been set.

func (ModelsRevocationRevocationResponse) MarshalJSON ¶

func (o ModelsRevocationRevocationResponse) MarshalJSON() ([]byte, error)

func (*ModelsRevocationRevocationResponse) SetRevokedIds ¶

func (o *ModelsRevocationRevocationResponse) SetRevokedIds(v []int32)

SetRevokedIds gets a reference to the given []int32 and assigns it to the RevokedIds field.

func (*ModelsRevocationRevocationResponse) SetSuspendedCerts ¶

SetSuspendedCerts gets a reference to the given []ModelsRevocationSuspendedRevocationResponse and assigns it to the SuspendedCerts field.

func (ModelsRevocationRevocationResponse) ToMap ¶

func (o ModelsRevocationRevocationResponse) ToMap() (map[string]interface{}, error)

func (*ModelsRevocationRevocationResponse) UnmarshalJSON ¶

func (o *ModelsRevocationRevocationResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsRevocationSuspendedRevocationResponse ¶

type ModelsRevocationSuspendedRevocationResponse struct {
	CertId               *int32  `json:"CertId,omitempty"`
	WorkflowId           *string `json:"WorkflowId,omitempty"`
	Message              *string `json:"Message,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsRevocationSuspendedRevocationResponse struct for ModelsRevocationSuspendedRevocationResponse

func NewModelsRevocationSuspendedRevocationResponse ¶

func NewModelsRevocationSuspendedRevocationResponse() *ModelsRevocationSuspendedRevocationResponse

NewModelsRevocationSuspendedRevocationResponse instantiates a new ModelsRevocationSuspendedRevocationResponse 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 NewModelsRevocationSuspendedRevocationResponseWithDefaults ¶

func NewModelsRevocationSuspendedRevocationResponseWithDefaults() *ModelsRevocationSuspendedRevocationResponse

NewModelsRevocationSuspendedRevocationResponseWithDefaults instantiates a new ModelsRevocationSuspendedRevocationResponse 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 (*ModelsRevocationSuspendedRevocationResponse) GetCertId ¶

GetCertId returns the CertId field value if set, zero value otherwise.

func (*ModelsRevocationSuspendedRevocationResponse) GetCertIdOk ¶

GetCertIdOk returns a tuple with the CertId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevocationSuspendedRevocationResponse) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*ModelsRevocationSuspendedRevocationResponse) GetMessageOk ¶

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 (*ModelsRevocationSuspendedRevocationResponse) GetWorkflowId ¶

GetWorkflowId returns the WorkflowId field value if set, zero value otherwise.

func (*ModelsRevocationSuspendedRevocationResponse) GetWorkflowIdOk ¶

func (o *ModelsRevocationSuspendedRevocationResponse) GetWorkflowIdOk() (*string, bool)

GetWorkflowIdOk returns a tuple with the WorkflowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevocationSuspendedRevocationResponse) HasCertId ¶

HasCertId returns a boolean if a field has been set.

func (*ModelsRevocationSuspendedRevocationResponse) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*ModelsRevocationSuspendedRevocationResponse) HasWorkflowId ¶

HasWorkflowId returns a boolean if a field has been set.

func (ModelsRevocationSuspendedRevocationResponse) MarshalJSON ¶

func (*ModelsRevocationSuspendedRevocationResponse) SetCertId ¶

SetCertId gets a reference to the given int32 and assigns it to the CertId field.

func (*ModelsRevocationSuspendedRevocationResponse) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ModelsRevocationSuspendedRevocationResponse) SetWorkflowId ¶

SetWorkflowId gets a reference to the given string and assigns it to the WorkflowId field.

func (ModelsRevocationSuspendedRevocationResponse) ToMap ¶

func (o ModelsRevocationSuspendedRevocationResponse) ToMap() (map[string]interface{}, error)

func (*ModelsRevocationSuspendedRevocationResponse) UnmarshalJSON ¶

func (o *ModelsRevocationSuspendedRevocationResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsRevokeAllCertificatesRequest ¶

type ModelsRevokeAllCertificatesRequest struct {
	// The query string of the certificates to revoke
	Query *string `json:"Query,omitempty"`
	// The Reason for revocation
	Reason int32 `json:"Reason"`
	// A comment for auditing purposes
	Comment string `json:"Comment"`
	// The date when the certificates are to appear on the revocation list
	EffectiveDate *time.Time `json:"EffectiveDate,omitempty"`
	// A flag telling the query to include revoked certificates
	IncludeRevoked *bool `json:"IncludeRevoked,omitempty"`
	// A flag telling the query to include expired certificates
	IncludeExpired       *bool `json:"IncludeExpired,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsRevokeAllCertificatesRequest Information for revoking all certifictes in a query

func NewModelsRevokeAllCertificatesRequest ¶

func NewModelsRevokeAllCertificatesRequest(reason int32, comment string) *ModelsRevokeAllCertificatesRequest

NewModelsRevokeAllCertificatesRequest instantiates a new ModelsRevokeAllCertificatesRequest 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 NewModelsRevokeAllCertificatesRequestWithDefaults ¶

func NewModelsRevokeAllCertificatesRequestWithDefaults() *ModelsRevokeAllCertificatesRequest

NewModelsRevokeAllCertificatesRequestWithDefaults instantiates a new ModelsRevokeAllCertificatesRequest 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 (*ModelsRevokeAllCertificatesRequest) GetComment ¶

GetComment returns the Comment field value

func (*ModelsRevokeAllCertificatesRequest) GetCommentOk ¶

func (o *ModelsRevokeAllCertificatesRequest) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value and a boolean to check if the value has been set.

func (*ModelsRevokeAllCertificatesRequest) GetEffectiveDate ¶

func (o *ModelsRevokeAllCertificatesRequest) GetEffectiveDate() time.Time

GetEffectiveDate returns the EffectiveDate field value if set, zero value otherwise.

func (*ModelsRevokeAllCertificatesRequest) GetEffectiveDateOk ¶

func (o *ModelsRevokeAllCertificatesRequest) GetEffectiveDateOk() (*time.Time, bool)

GetEffectiveDateOk returns a tuple with the EffectiveDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevokeAllCertificatesRequest) GetIncludeExpired ¶

func (o *ModelsRevokeAllCertificatesRequest) GetIncludeExpired() bool

GetIncludeExpired returns the IncludeExpired field value if set, zero value otherwise.

func (*ModelsRevokeAllCertificatesRequest) GetIncludeExpiredOk ¶

func (o *ModelsRevokeAllCertificatesRequest) GetIncludeExpiredOk() (*bool, bool)

GetIncludeExpiredOk returns a tuple with the IncludeExpired field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevokeAllCertificatesRequest) GetIncludeRevoked ¶

func (o *ModelsRevokeAllCertificatesRequest) GetIncludeRevoked() bool

GetIncludeRevoked returns the IncludeRevoked field value if set, zero value otherwise.

func (*ModelsRevokeAllCertificatesRequest) GetIncludeRevokedOk ¶

func (o *ModelsRevokeAllCertificatesRequest) GetIncludeRevokedOk() (*bool, bool)

GetIncludeRevokedOk returns a tuple with the IncludeRevoked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevokeAllCertificatesRequest) GetQuery ¶

GetQuery returns the Query field value if set, zero value otherwise.

func (*ModelsRevokeAllCertificatesRequest) GetQueryOk ¶

func (o *ModelsRevokeAllCertificatesRequest) GetQueryOk() (*string, bool)

GetQueryOk returns a tuple with the Query field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevokeAllCertificatesRequest) GetReason ¶

GetReason returns the Reason field value

func (*ModelsRevokeAllCertificatesRequest) GetReasonOk ¶

func (o *ModelsRevokeAllCertificatesRequest) GetReasonOk() (*int32, bool)

GetReasonOk returns a tuple with the Reason field value and a boolean to check if the value has been set.

func (*ModelsRevokeAllCertificatesRequest) HasEffectiveDate ¶

func (o *ModelsRevokeAllCertificatesRequest) HasEffectiveDate() bool

HasEffectiveDate returns a boolean if a field has been set.

func (*ModelsRevokeAllCertificatesRequest) HasIncludeExpired ¶

func (o *ModelsRevokeAllCertificatesRequest) HasIncludeExpired() bool

HasIncludeExpired returns a boolean if a field has been set.

func (*ModelsRevokeAllCertificatesRequest) HasIncludeRevoked ¶

func (o *ModelsRevokeAllCertificatesRequest) HasIncludeRevoked() bool

HasIncludeRevoked returns a boolean if a field has been set.

func (*ModelsRevokeAllCertificatesRequest) HasQuery ¶

HasQuery returns a boolean if a field has been set.

func (ModelsRevokeAllCertificatesRequest) MarshalJSON ¶

func (o ModelsRevokeAllCertificatesRequest) MarshalJSON() ([]byte, error)

func (*ModelsRevokeAllCertificatesRequest) SetComment ¶

func (o *ModelsRevokeAllCertificatesRequest) SetComment(v string)

SetComment sets field value

func (*ModelsRevokeAllCertificatesRequest) SetEffectiveDate ¶

func (o *ModelsRevokeAllCertificatesRequest) SetEffectiveDate(v time.Time)

SetEffectiveDate gets a reference to the given time.Time and assigns it to the EffectiveDate field.

func (*ModelsRevokeAllCertificatesRequest) SetIncludeExpired ¶

func (o *ModelsRevokeAllCertificatesRequest) SetIncludeExpired(v bool)

SetIncludeExpired gets a reference to the given bool and assigns it to the IncludeExpired field.

func (*ModelsRevokeAllCertificatesRequest) SetIncludeRevoked ¶

func (o *ModelsRevokeAllCertificatesRequest) SetIncludeRevoked(v bool)

SetIncludeRevoked gets a reference to the given bool and assigns it to the IncludeRevoked field.

func (*ModelsRevokeAllCertificatesRequest) SetQuery ¶

SetQuery gets a reference to the given string and assigns it to the Query field.

func (*ModelsRevokeAllCertificatesRequest) SetReason ¶

func (o *ModelsRevokeAllCertificatesRequest) SetReason(v int32)

SetReason sets field value

func (ModelsRevokeAllCertificatesRequest) ToMap ¶

func (o ModelsRevokeAllCertificatesRequest) ToMap() (map[string]interface{}, error)

func (*ModelsRevokeAllCertificatesRequest) UnmarshalJSON ¶

func (o *ModelsRevokeAllCertificatesRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsRevokeCertificateRequest ¶

type ModelsRevokeCertificateRequest struct {
	CertificateIds       []int32    `json:"CertificateIds,omitempty"`
	Reason               *int32     `json:"Reason,omitempty"`
	Comment              *string    `json:"Comment,omitempty"`
	EffectiveDate        *time.Time `json:"EffectiveDate,omitempty"`
	CollectionId         *int32     `json:"CollectionId,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsRevokeCertificateRequest struct for ModelsRevokeCertificateRequest

func NewModelsRevokeCertificateRequest ¶

func NewModelsRevokeCertificateRequest() *ModelsRevokeCertificateRequest

NewModelsRevokeCertificateRequest instantiates a new ModelsRevokeCertificateRequest 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 NewModelsRevokeCertificateRequestWithDefaults ¶

func NewModelsRevokeCertificateRequestWithDefaults() *ModelsRevokeCertificateRequest

NewModelsRevokeCertificateRequestWithDefaults instantiates a new ModelsRevokeCertificateRequest 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 (*ModelsRevokeCertificateRequest) GetCertificateIds ¶

func (o *ModelsRevokeCertificateRequest) GetCertificateIds() []int32

GetCertificateIds returns the CertificateIds field value if set, zero value otherwise.

func (*ModelsRevokeCertificateRequest) GetCertificateIdsOk ¶

func (o *ModelsRevokeCertificateRequest) GetCertificateIdsOk() ([]int32, bool)

GetCertificateIdsOk returns a tuple with the CertificateIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevokeCertificateRequest) GetCollectionId ¶

func (o *ModelsRevokeCertificateRequest) GetCollectionId() int32

GetCollectionId returns the CollectionId field value if set, zero value otherwise.

func (*ModelsRevokeCertificateRequest) GetCollectionIdOk ¶

func (o *ModelsRevokeCertificateRequest) GetCollectionIdOk() (*int32, bool)

GetCollectionIdOk returns a tuple with the CollectionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevokeCertificateRequest) GetComment ¶

func (o *ModelsRevokeCertificateRequest) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise.

func (*ModelsRevokeCertificateRequest) GetCommentOk ¶

func (o *ModelsRevokeCertificateRequest) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevokeCertificateRequest) GetEffectiveDate ¶

func (o *ModelsRevokeCertificateRequest) GetEffectiveDate() time.Time

GetEffectiveDate returns the EffectiveDate field value if set, zero value otherwise.

func (*ModelsRevokeCertificateRequest) GetEffectiveDateOk ¶

func (o *ModelsRevokeCertificateRequest) GetEffectiveDateOk() (*time.Time, bool)

GetEffectiveDateOk returns a tuple with the EffectiveDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevokeCertificateRequest) GetReason ¶

func (o *ModelsRevokeCertificateRequest) GetReason() int32

GetReason returns the Reason field value if set, zero value otherwise.

func (*ModelsRevokeCertificateRequest) GetReasonOk ¶

func (o *ModelsRevokeCertificateRequest) GetReasonOk() (*int32, bool)

GetReasonOk returns a tuple with the Reason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsRevokeCertificateRequest) HasCertificateIds ¶

func (o *ModelsRevokeCertificateRequest) HasCertificateIds() bool

HasCertificateIds returns a boolean if a field has been set.

func (*ModelsRevokeCertificateRequest) HasCollectionId ¶

func (o *ModelsRevokeCertificateRequest) HasCollectionId() bool

HasCollectionId returns a boolean if a field has been set.

func (*ModelsRevokeCertificateRequest) HasComment ¶

func (o *ModelsRevokeCertificateRequest) HasComment() bool

HasComment returns a boolean if a field has been set.

func (*ModelsRevokeCertificateRequest) HasEffectiveDate ¶

func (o *ModelsRevokeCertificateRequest) HasEffectiveDate() bool

HasEffectiveDate returns a boolean if a field has been set.

func (*ModelsRevokeCertificateRequest) HasReason ¶

func (o *ModelsRevokeCertificateRequest) HasReason() bool

HasReason returns a boolean if a field has been set.

func (ModelsRevokeCertificateRequest) MarshalJSON ¶

func (o ModelsRevokeCertificateRequest) MarshalJSON() ([]byte, error)

func (*ModelsRevokeCertificateRequest) SetCertificateIds ¶

func (o *ModelsRevokeCertificateRequest) SetCertificateIds(v []int32)

SetCertificateIds gets a reference to the given []int32 and assigns it to the CertificateIds field.

func (*ModelsRevokeCertificateRequest) SetCollectionId ¶

func (o *ModelsRevokeCertificateRequest) SetCollectionId(v int32)

SetCollectionId gets a reference to the given int32 and assigns it to the CollectionId field.

func (*ModelsRevokeCertificateRequest) SetComment ¶

func (o *ModelsRevokeCertificateRequest) SetComment(v string)

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*ModelsRevokeCertificateRequest) SetEffectiveDate ¶

func (o *ModelsRevokeCertificateRequest) SetEffectiveDate(v time.Time)

SetEffectiveDate gets a reference to the given time.Time and assigns it to the EffectiveDate field.

func (*ModelsRevokeCertificateRequest) SetReason ¶

func (o *ModelsRevokeCertificateRequest) SetReason(v int32)

SetReason gets a reference to the given int32 and assigns it to the Reason field.

func (ModelsRevokeCertificateRequest) ToMap ¶

func (o ModelsRevokeCertificateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsRevokeCertificateRequest) UnmarshalJSON ¶

func (o *ModelsRevokeCertificateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHAccessLogonUserAccessRequest ¶

type ModelsSSHAccessLogonUserAccessRequest struct {
	LogonName            *string  `json:"LogonName,omitempty"`
	Users                []string `json:"Users,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHAccessLogonUserAccessRequest struct for ModelsSSHAccessLogonUserAccessRequest

func NewModelsSSHAccessLogonUserAccessRequest ¶

func NewModelsSSHAccessLogonUserAccessRequest() *ModelsSSHAccessLogonUserAccessRequest

NewModelsSSHAccessLogonUserAccessRequest instantiates a new ModelsSSHAccessLogonUserAccessRequest 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 NewModelsSSHAccessLogonUserAccessRequestWithDefaults ¶

func NewModelsSSHAccessLogonUserAccessRequestWithDefaults() *ModelsSSHAccessLogonUserAccessRequest

NewModelsSSHAccessLogonUserAccessRequestWithDefaults instantiates a new ModelsSSHAccessLogonUserAccessRequest 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 (*ModelsSSHAccessLogonUserAccessRequest) GetLogonName ¶

GetLogonName returns the LogonName field value if set, zero value otherwise.

func (*ModelsSSHAccessLogonUserAccessRequest) GetLogonNameOk ¶

func (o *ModelsSSHAccessLogonUserAccessRequest) GetLogonNameOk() (*string, bool)

GetLogonNameOk returns a tuple with the LogonName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHAccessLogonUserAccessRequest) GetUsers ¶

GetUsers returns the Users field value if set, zero value otherwise.

func (*ModelsSSHAccessLogonUserAccessRequest) GetUsersOk ¶

func (o *ModelsSSHAccessLogonUserAccessRequest) GetUsersOk() ([]string, bool)

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHAccessLogonUserAccessRequest) HasLogonName ¶

func (o *ModelsSSHAccessLogonUserAccessRequest) HasLogonName() bool

HasLogonName returns a boolean if a field has been set.

func (*ModelsSSHAccessLogonUserAccessRequest) HasUsers ¶

HasUsers returns a boolean if a field has been set.

func (ModelsSSHAccessLogonUserAccessRequest) MarshalJSON ¶

func (o ModelsSSHAccessLogonUserAccessRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSHAccessLogonUserAccessRequest) SetLogonName ¶

func (o *ModelsSSHAccessLogonUserAccessRequest) SetLogonName(v string)

SetLogonName gets a reference to the given string and assigns it to the LogonName field.

func (*ModelsSSHAccessLogonUserAccessRequest) SetUsers ¶

SetUsers gets a reference to the given []string and assigns it to the Users field.

func (ModelsSSHAccessLogonUserAccessRequest) ToMap ¶

func (o ModelsSSHAccessLogonUserAccessRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHAccessLogonUserAccessRequest) UnmarshalJSON ¶

func (o *ModelsSSHAccessLogonUserAccessRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHAccessLogonUserAccessResponse ¶

type ModelsSSHAccessLogonUserAccessResponse struct {
	LogonId              *int32                          `json:"LogonId,omitempty"`
	LogonName            *string                         `json:"LogonName,omitempty"`
	Users                []ModelsSSHUsersSshUserResponse `json:"Users,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHAccessLogonUserAccessResponse struct for ModelsSSHAccessLogonUserAccessResponse

func NewModelsSSHAccessLogonUserAccessResponse ¶

func NewModelsSSHAccessLogonUserAccessResponse() *ModelsSSHAccessLogonUserAccessResponse

NewModelsSSHAccessLogonUserAccessResponse instantiates a new ModelsSSHAccessLogonUserAccessResponse 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 NewModelsSSHAccessLogonUserAccessResponseWithDefaults ¶

func NewModelsSSHAccessLogonUserAccessResponseWithDefaults() *ModelsSSHAccessLogonUserAccessResponse

NewModelsSSHAccessLogonUserAccessResponseWithDefaults instantiates a new ModelsSSHAccessLogonUserAccessResponse 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 (*ModelsSSHAccessLogonUserAccessResponse) GetLogonId ¶

GetLogonId returns the LogonId field value if set, zero value otherwise.

func (*ModelsSSHAccessLogonUserAccessResponse) GetLogonIdOk ¶

func (o *ModelsSSHAccessLogonUserAccessResponse) GetLogonIdOk() (*int32, bool)

GetLogonIdOk returns a tuple with the LogonId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHAccessLogonUserAccessResponse) GetLogonName ¶

GetLogonName returns the LogonName field value if set, zero value otherwise.

func (*ModelsSSHAccessLogonUserAccessResponse) GetLogonNameOk ¶

func (o *ModelsSSHAccessLogonUserAccessResponse) GetLogonNameOk() (*string, bool)

GetLogonNameOk returns a tuple with the LogonName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHAccessLogonUserAccessResponse) GetUsers ¶

GetUsers returns the Users field value if set, zero value otherwise.

func (*ModelsSSHAccessLogonUserAccessResponse) GetUsersOk ¶

GetUsersOk returns a tuple with the Users field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHAccessLogonUserAccessResponse) HasLogonId ¶

HasLogonId returns a boolean if a field has been set.

func (*ModelsSSHAccessLogonUserAccessResponse) HasLogonName ¶

func (o *ModelsSSHAccessLogonUserAccessResponse) HasLogonName() bool

HasLogonName returns a boolean if a field has been set.

func (*ModelsSSHAccessLogonUserAccessResponse) HasUsers ¶

HasUsers returns a boolean if a field has been set.

func (ModelsSSHAccessLogonUserAccessResponse) MarshalJSON ¶

func (o ModelsSSHAccessLogonUserAccessResponse) MarshalJSON() ([]byte, error)

func (*ModelsSSHAccessLogonUserAccessResponse) SetLogonId ¶

SetLogonId gets a reference to the given int32 and assigns it to the LogonId field.

func (*ModelsSSHAccessLogonUserAccessResponse) SetLogonName ¶

SetLogonName gets a reference to the given string and assigns it to the LogonName field.

func (*ModelsSSHAccessLogonUserAccessResponse) SetUsers ¶

SetUsers gets a reference to the given []ModelsSSHUsersSshUserResponse and assigns it to the Users field.

func (ModelsSSHAccessLogonUserAccessResponse) ToMap ¶

func (o ModelsSSHAccessLogonUserAccessResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHAccessLogonUserAccessResponse) UnmarshalJSON ¶

func (o *ModelsSSHAccessLogonUserAccessResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHAccessServerAccessRequest ¶

type ModelsSSHAccessServerAccessRequest struct {
	ServerId             int32                                   `json:"ServerId"`
	LogonUsers           []ModelsSSHAccessLogonUserAccessRequest `json:"LogonUsers"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHAccessServerAccessRequest struct for ModelsSSHAccessServerAccessRequest

func NewModelsSSHAccessServerAccessRequest ¶

func NewModelsSSHAccessServerAccessRequest(serverId int32, logonUsers []ModelsSSHAccessLogonUserAccessRequest) *ModelsSSHAccessServerAccessRequest

NewModelsSSHAccessServerAccessRequest instantiates a new ModelsSSHAccessServerAccessRequest 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 NewModelsSSHAccessServerAccessRequestWithDefaults ¶

func NewModelsSSHAccessServerAccessRequestWithDefaults() *ModelsSSHAccessServerAccessRequest

NewModelsSSHAccessServerAccessRequestWithDefaults instantiates a new ModelsSSHAccessServerAccessRequest 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 (*ModelsSSHAccessServerAccessRequest) GetLogonUsers ¶

GetLogonUsers returns the LogonUsers field value

func (*ModelsSSHAccessServerAccessRequest) GetLogonUsersOk ¶

GetLogonUsersOk returns a tuple with the LogonUsers field value and a boolean to check if the value has been set.

func (*ModelsSSHAccessServerAccessRequest) GetServerId ¶

func (o *ModelsSSHAccessServerAccessRequest) GetServerId() int32

GetServerId returns the ServerId field value

func (*ModelsSSHAccessServerAccessRequest) GetServerIdOk ¶

func (o *ModelsSSHAccessServerAccessRequest) GetServerIdOk() (*int32, bool)

GetServerIdOk returns a tuple with the ServerId field value and a boolean to check if the value has been set.

func (ModelsSSHAccessServerAccessRequest) MarshalJSON ¶

func (o ModelsSSHAccessServerAccessRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSHAccessServerAccessRequest) SetLogonUsers ¶

SetLogonUsers sets field value

func (*ModelsSSHAccessServerAccessRequest) SetServerId ¶

func (o *ModelsSSHAccessServerAccessRequest) SetServerId(v int32)

SetServerId sets field value

func (ModelsSSHAccessServerAccessRequest) ToMap ¶

func (o ModelsSSHAccessServerAccessRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHAccessServerAccessRequest) UnmarshalJSON ¶

func (o *ModelsSSHAccessServerAccessRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHAccessServerAccessResponse ¶

type ModelsSSHAccessServerAccessResponse struct {
	ServerId             *int32                                   `json:"ServerId,omitempty"`
	LogonUsers           []ModelsSSHAccessLogonUserAccessResponse `json:"LogonUsers,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHAccessServerAccessResponse struct for ModelsSSHAccessServerAccessResponse

func NewModelsSSHAccessServerAccessResponse ¶

func NewModelsSSHAccessServerAccessResponse() *ModelsSSHAccessServerAccessResponse

NewModelsSSHAccessServerAccessResponse instantiates a new ModelsSSHAccessServerAccessResponse 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 NewModelsSSHAccessServerAccessResponseWithDefaults ¶

func NewModelsSSHAccessServerAccessResponseWithDefaults() *ModelsSSHAccessServerAccessResponse

NewModelsSSHAccessServerAccessResponseWithDefaults instantiates a new ModelsSSHAccessServerAccessResponse 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 (*ModelsSSHAccessServerAccessResponse) GetLogonUsers ¶

GetLogonUsers returns the LogonUsers field value if set, zero value otherwise.

func (*ModelsSSHAccessServerAccessResponse) GetLogonUsersOk ¶

GetLogonUsersOk returns a tuple with the LogonUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHAccessServerAccessResponse) GetServerId ¶

func (o *ModelsSSHAccessServerAccessResponse) GetServerId() int32

GetServerId returns the ServerId field value if set, zero value otherwise.

func (*ModelsSSHAccessServerAccessResponse) GetServerIdOk ¶

func (o *ModelsSSHAccessServerAccessResponse) GetServerIdOk() (*int32, bool)

GetServerIdOk returns a tuple with the ServerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHAccessServerAccessResponse) HasLogonUsers ¶

func (o *ModelsSSHAccessServerAccessResponse) HasLogonUsers() bool

HasLogonUsers returns a boolean if a field has been set.

func (*ModelsSSHAccessServerAccessResponse) HasServerId ¶

func (o *ModelsSSHAccessServerAccessResponse) HasServerId() bool

HasServerId returns a boolean if a field has been set.

func (ModelsSSHAccessServerAccessResponse) MarshalJSON ¶

func (o ModelsSSHAccessServerAccessResponse) MarshalJSON() ([]byte, error)

func (*ModelsSSHAccessServerAccessResponse) SetLogonUsers ¶

SetLogonUsers gets a reference to the given []ModelsSSHAccessLogonUserAccessResponse and assigns it to the LogonUsers field.

func (*ModelsSSHAccessServerAccessResponse) SetServerId ¶

func (o *ModelsSSHAccessServerAccessResponse) SetServerId(v int32)

SetServerId gets a reference to the given int32 and assigns it to the ServerId field.

func (ModelsSSHAccessServerAccessResponse) ToMap ¶

func (o ModelsSSHAccessServerAccessResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHAccessServerAccessResponse) UnmarshalJSON ¶

func (o *ModelsSSHAccessServerAccessResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHAccessServerGroupAccessRequest ¶

type ModelsSSHAccessServerGroupAccessRequest struct {
	ServerGroupId        string                                  `json:"ServerGroupId"`
	LogonUsers           []ModelsSSHAccessLogonUserAccessRequest `json:"LogonUsers"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHAccessServerGroupAccessRequest struct for ModelsSSHAccessServerGroupAccessRequest

func NewModelsSSHAccessServerGroupAccessRequest ¶

func NewModelsSSHAccessServerGroupAccessRequest(serverGroupId string, logonUsers []ModelsSSHAccessLogonUserAccessRequest) *ModelsSSHAccessServerGroupAccessRequest

NewModelsSSHAccessServerGroupAccessRequest instantiates a new ModelsSSHAccessServerGroupAccessRequest 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 NewModelsSSHAccessServerGroupAccessRequestWithDefaults ¶

func NewModelsSSHAccessServerGroupAccessRequestWithDefaults() *ModelsSSHAccessServerGroupAccessRequest

NewModelsSSHAccessServerGroupAccessRequestWithDefaults instantiates a new ModelsSSHAccessServerGroupAccessRequest 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 (*ModelsSSHAccessServerGroupAccessRequest) GetLogonUsers ¶

GetLogonUsers returns the LogonUsers field value

func (*ModelsSSHAccessServerGroupAccessRequest) GetLogonUsersOk ¶

GetLogonUsersOk returns a tuple with the LogonUsers field value and a boolean to check if the value has been set.

func (*ModelsSSHAccessServerGroupAccessRequest) GetServerGroupId ¶

func (o *ModelsSSHAccessServerGroupAccessRequest) GetServerGroupId() string

GetServerGroupId returns the ServerGroupId field value

func (*ModelsSSHAccessServerGroupAccessRequest) GetServerGroupIdOk ¶

func (o *ModelsSSHAccessServerGroupAccessRequest) GetServerGroupIdOk() (*string, bool)

GetServerGroupIdOk returns a tuple with the ServerGroupId field value and a boolean to check if the value has been set.

func (ModelsSSHAccessServerGroupAccessRequest) MarshalJSON ¶

func (o ModelsSSHAccessServerGroupAccessRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSHAccessServerGroupAccessRequest) SetLogonUsers ¶

SetLogonUsers sets field value

func (*ModelsSSHAccessServerGroupAccessRequest) SetServerGroupId ¶

func (o *ModelsSSHAccessServerGroupAccessRequest) SetServerGroupId(v string)

SetServerGroupId sets field value

func (ModelsSSHAccessServerGroupAccessRequest) ToMap ¶

func (o ModelsSSHAccessServerGroupAccessRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHAccessServerGroupAccessRequest) UnmarshalJSON ¶

func (o *ModelsSSHAccessServerGroupAccessRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHAccessServerGroupAccessResponse ¶

type ModelsSSHAccessServerGroupAccessResponse struct {
	ServerGroupId        *string                                  `json:"ServerGroupId,omitempty"`
	LogonUsers           []ModelsSSHAccessLogonUserAccessResponse `json:"LogonUsers,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHAccessServerGroupAccessResponse struct for ModelsSSHAccessServerGroupAccessResponse

func NewModelsSSHAccessServerGroupAccessResponse ¶

func NewModelsSSHAccessServerGroupAccessResponse() *ModelsSSHAccessServerGroupAccessResponse

NewModelsSSHAccessServerGroupAccessResponse instantiates a new ModelsSSHAccessServerGroupAccessResponse 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 NewModelsSSHAccessServerGroupAccessResponseWithDefaults ¶

func NewModelsSSHAccessServerGroupAccessResponseWithDefaults() *ModelsSSHAccessServerGroupAccessResponse

NewModelsSSHAccessServerGroupAccessResponseWithDefaults instantiates a new ModelsSSHAccessServerGroupAccessResponse 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 (*ModelsSSHAccessServerGroupAccessResponse) GetLogonUsers ¶

GetLogonUsers returns the LogonUsers field value if set, zero value otherwise.

func (*ModelsSSHAccessServerGroupAccessResponse) GetLogonUsersOk ¶

GetLogonUsersOk returns a tuple with the LogonUsers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHAccessServerGroupAccessResponse) GetServerGroupId ¶

func (o *ModelsSSHAccessServerGroupAccessResponse) GetServerGroupId() string

GetServerGroupId returns the ServerGroupId field value if set, zero value otherwise.

func (*ModelsSSHAccessServerGroupAccessResponse) GetServerGroupIdOk ¶

func (o *ModelsSSHAccessServerGroupAccessResponse) GetServerGroupIdOk() (*string, bool)

GetServerGroupIdOk returns a tuple with the ServerGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHAccessServerGroupAccessResponse) HasLogonUsers ¶

HasLogonUsers returns a boolean if a field has been set.

func (*ModelsSSHAccessServerGroupAccessResponse) HasServerGroupId ¶

func (o *ModelsSSHAccessServerGroupAccessResponse) HasServerGroupId() bool

HasServerGroupId returns a boolean if a field has been set.

func (ModelsSSHAccessServerGroupAccessResponse) MarshalJSON ¶

func (*ModelsSSHAccessServerGroupAccessResponse) SetLogonUsers ¶

SetLogonUsers gets a reference to the given []ModelsSSHAccessLogonUserAccessResponse and assigns it to the LogonUsers field.

func (*ModelsSSHAccessServerGroupAccessResponse) SetServerGroupId ¶

func (o *ModelsSSHAccessServerGroupAccessResponse) SetServerGroupId(v string)

SetServerGroupId gets a reference to the given string and assigns it to the ServerGroupId field.

func (ModelsSSHAccessServerGroupAccessResponse) ToMap ¶

func (o ModelsSSHAccessServerGroupAccessResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHAccessServerGroupAccessResponse) UnmarshalJSON ¶

func (o *ModelsSSHAccessServerGroupAccessResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHKeysKeyGenerationRequest ¶

type ModelsSSHKeysKeyGenerationRequest struct {
	KeyType              string  `json:"KeyType"`
	PrivateKeyFormat     string  `json:"PrivateKeyFormat"`
	KeyLength            int32   `json:"KeyLength"`
	Email                string  `json:"Email"`
	Password             string  `json:"Password"`
	Comment              *string `json:"Comment,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHKeysKeyGenerationRequest struct for ModelsSSHKeysKeyGenerationRequest

func NewModelsSSHKeysKeyGenerationRequest ¶

func NewModelsSSHKeysKeyGenerationRequest(keyType string, privateKeyFormat string, keyLength int32, email string, password string) *ModelsSSHKeysKeyGenerationRequest

NewModelsSSHKeysKeyGenerationRequest instantiates a new ModelsSSHKeysKeyGenerationRequest 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 NewModelsSSHKeysKeyGenerationRequestWithDefaults ¶

func NewModelsSSHKeysKeyGenerationRequestWithDefaults() *ModelsSSHKeysKeyGenerationRequest

NewModelsSSHKeysKeyGenerationRequestWithDefaults instantiates a new ModelsSSHKeysKeyGenerationRequest 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 (*ModelsSSHKeysKeyGenerationRequest) GetComment ¶

func (o *ModelsSSHKeysKeyGenerationRequest) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyGenerationRequest) GetCommentOk ¶

func (o *ModelsSSHKeysKeyGenerationRequest) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyGenerationRequest) GetEmail ¶

GetEmail returns the Email field value

func (*ModelsSSHKeysKeyGenerationRequest) GetEmailOk ¶

func (o *ModelsSSHKeysKeyGenerationRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyGenerationRequest) GetKeyLength ¶

func (o *ModelsSSHKeysKeyGenerationRequest) GetKeyLength() int32

GetKeyLength returns the KeyLength field value

func (*ModelsSSHKeysKeyGenerationRequest) GetKeyLengthOk ¶

func (o *ModelsSSHKeysKeyGenerationRequest) GetKeyLengthOk() (*int32, bool)

GetKeyLengthOk returns a tuple with the KeyLength field value and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyGenerationRequest) GetKeyType ¶

func (o *ModelsSSHKeysKeyGenerationRequest) GetKeyType() string

GetKeyType returns the KeyType field value

func (*ModelsSSHKeysKeyGenerationRequest) GetKeyTypeOk ¶

func (o *ModelsSSHKeysKeyGenerationRequest) GetKeyTypeOk() (*string, bool)

GetKeyTypeOk returns a tuple with the KeyType field value and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyGenerationRequest) GetPassword ¶

func (o *ModelsSSHKeysKeyGenerationRequest) GetPassword() string

GetPassword returns the Password field value

func (*ModelsSSHKeysKeyGenerationRequest) GetPasswordOk ¶

func (o *ModelsSSHKeysKeyGenerationRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyGenerationRequest) GetPrivateKeyFormat ¶

func (o *ModelsSSHKeysKeyGenerationRequest) GetPrivateKeyFormat() string

GetPrivateKeyFormat returns the PrivateKeyFormat field value

func (*ModelsSSHKeysKeyGenerationRequest) GetPrivateKeyFormatOk ¶

func (o *ModelsSSHKeysKeyGenerationRequest) GetPrivateKeyFormatOk() (*string, bool)

GetPrivateKeyFormatOk returns a tuple with the PrivateKeyFormat field value and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyGenerationRequest) HasComment ¶

func (o *ModelsSSHKeysKeyGenerationRequest) HasComment() bool

HasComment returns a boolean if a field has been set.

func (ModelsSSHKeysKeyGenerationRequest) MarshalJSON ¶

func (o ModelsSSHKeysKeyGenerationRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSHKeysKeyGenerationRequest) SetComment ¶

func (o *ModelsSSHKeysKeyGenerationRequest) SetComment(v string)

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*ModelsSSHKeysKeyGenerationRequest) SetEmail ¶

SetEmail sets field value

func (*ModelsSSHKeysKeyGenerationRequest) SetKeyLength ¶

func (o *ModelsSSHKeysKeyGenerationRequest) SetKeyLength(v int32)

SetKeyLength sets field value

func (*ModelsSSHKeysKeyGenerationRequest) SetKeyType ¶

func (o *ModelsSSHKeysKeyGenerationRequest) SetKeyType(v string)

SetKeyType sets field value

func (*ModelsSSHKeysKeyGenerationRequest) SetPassword ¶

func (o *ModelsSSHKeysKeyGenerationRequest) SetPassword(v string)

SetPassword sets field value

func (*ModelsSSHKeysKeyGenerationRequest) SetPrivateKeyFormat ¶

func (o *ModelsSSHKeysKeyGenerationRequest) SetPrivateKeyFormat(v string)

SetPrivateKeyFormat sets field value

func (ModelsSSHKeysKeyGenerationRequest) ToMap ¶

func (o ModelsSSHKeysKeyGenerationRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHKeysKeyGenerationRequest) UnmarshalJSON ¶

func (o *ModelsSSHKeysKeyGenerationRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHKeysKeyResponse ¶

type ModelsSSHKeysKeyResponse struct {
	Id                   *int32     `json:"Id,omitempty"`
	Fingerprint          *string    `json:"Fingerprint,omitempty"`
	PublicKey            *string    `json:"PublicKey,omitempty"`
	PrivateKey           *string    `json:"PrivateKey,omitempty"`
	KeyType              *string    `json:"KeyType,omitempty"`
	KeyLength            *int32     `json:"KeyLength,omitempty"`
	CreationDate         *time.Time `json:"CreationDate,omitempty"`
	StaleDate            *time.Time `json:"StaleDate,omitempty"`
	Email                *string    `json:"Email,omitempty"`
	Comments             []string   `json:"Comments,omitempty"`
	LogonCount           *int32     `json:"LogonCount,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHKeysKeyResponse struct for ModelsSSHKeysKeyResponse

func NewModelsSSHKeysKeyResponse ¶

func NewModelsSSHKeysKeyResponse() *ModelsSSHKeysKeyResponse

NewModelsSSHKeysKeyResponse instantiates a new ModelsSSHKeysKeyResponse 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 NewModelsSSHKeysKeyResponseWithDefaults ¶

func NewModelsSSHKeysKeyResponseWithDefaults() *ModelsSSHKeysKeyResponse

NewModelsSSHKeysKeyResponseWithDefaults instantiates a new ModelsSSHKeysKeyResponse 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 (*ModelsSSHKeysKeyResponse) GetComments ¶

func (o *ModelsSSHKeysKeyResponse) GetComments() []string

GetComments returns the Comments field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyResponse) GetCommentsOk ¶

func (o *ModelsSSHKeysKeyResponse) GetCommentsOk() ([]string, bool)

GetCommentsOk returns a tuple with the Comments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyResponse) GetCreationDate ¶

func (o *ModelsSSHKeysKeyResponse) GetCreationDate() time.Time

GetCreationDate returns the CreationDate field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyResponse) GetCreationDateOk ¶

func (o *ModelsSSHKeysKeyResponse) GetCreationDateOk() (*time.Time, bool)

GetCreationDateOk returns a tuple with the CreationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyResponse) GetEmail ¶

func (o *ModelsSSHKeysKeyResponse) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyResponse) GetEmailOk ¶

func (o *ModelsSSHKeysKeyResponse) 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 (*ModelsSSHKeysKeyResponse) GetFingerprint ¶

func (o *ModelsSSHKeysKeyResponse) GetFingerprint() string

GetFingerprint returns the Fingerprint field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyResponse) GetFingerprintOk ¶

func (o *ModelsSSHKeysKeyResponse) 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 (*ModelsSSHKeysKeyResponse) GetId ¶

func (o *ModelsSSHKeysKeyResponse) GetId() int32

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyResponse) GetIdOk ¶

func (o *ModelsSSHKeysKeyResponse) 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 (*ModelsSSHKeysKeyResponse) GetKeyLength ¶

func (o *ModelsSSHKeysKeyResponse) GetKeyLength() int32

GetKeyLength returns the KeyLength field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyResponse) GetKeyLengthOk ¶

func (o *ModelsSSHKeysKeyResponse) GetKeyLengthOk() (*int32, bool)

GetKeyLengthOk returns a tuple with the KeyLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyResponse) GetKeyType ¶

func (o *ModelsSSHKeysKeyResponse) GetKeyType() string

GetKeyType returns the KeyType field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyResponse) GetKeyTypeOk ¶

func (o *ModelsSSHKeysKeyResponse) GetKeyTypeOk() (*string, bool)

GetKeyTypeOk returns a tuple with the KeyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyResponse) GetLogonCount ¶

func (o *ModelsSSHKeysKeyResponse) GetLogonCount() int32

GetLogonCount returns the LogonCount field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyResponse) GetLogonCountOk ¶

func (o *ModelsSSHKeysKeyResponse) GetLogonCountOk() (*int32, bool)

GetLogonCountOk returns a tuple with the LogonCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyResponse) GetPrivateKey ¶

func (o *ModelsSSHKeysKeyResponse) GetPrivateKey() string

GetPrivateKey returns the PrivateKey field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyResponse) GetPrivateKeyOk ¶

func (o *ModelsSSHKeysKeyResponse) GetPrivateKeyOk() (*string, bool)

GetPrivateKeyOk returns a tuple with the PrivateKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyResponse) GetPublicKey ¶

func (o *ModelsSSHKeysKeyResponse) GetPublicKey() string

GetPublicKey returns the PublicKey field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyResponse) GetPublicKeyOk ¶

func (o *ModelsSSHKeysKeyResponse) GetPublicKeyOk() (*string, bool)

GetPublicKeyOk returns a tuple with the PublicKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyResponse) GetStaleDate ¶

func (o *ModelsSSHKeysKeyResponse) GetStaleDate() time.Time

GetStaleDate returns the StaleDate field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyResponse) GetStaleDateOk ¶

func (o *ModelsSSHKeysKeyResponse) GetStaleDateOk() (*time.Time, bool)

GetStaleDateOk returns a tuple with the StaleDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyResponse) HasComments ¶

func (o *ModelsSSHKeysKeyResponse) HasComments() bool

HasComments returns a boolean if a field has been set.

func (*ModelsSSHKeysKeyResponse) HasCreationDate ¶

func (o *ModelsSSHKeysKeyResponse) HasCreationDate() bool

HasCreationDate returns a boolean if a field has been set.

func (*ModelsSSHKeysKeyResponse) HasEmail ¶

func (o *ModelsSSHKeysKeyResponse) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*ModelsSSHKeysKeyResponse) HasFingerprint ¶

func (o *ModelsSSHKeysKeyResponse) HasFingerprint() bool

HasFingerprint returns a boolean if a field has been set.

func (*ModelsSSHKeysKeyResponse) HasId ¶

func (o *ModelsSSHKeysKeyResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsSSHKeysKeyResponse) HasKeyLength ¶

func (o *ModelsSSHKeysKeyResponse) HasKeyLength() bool

HasKeyLength returns a boolean if a field has been set.

func (*ModelsSSHKeysKeyResponse) HasKeyType ¶

func (o *ModelsSSHKeysKeyResponse) HasKeyType() bool

HasKeyType returns a boolean if a field has been set.

func (*ModelsSSHKeysKeyResponse) HasLogonCount ¶

func (o *ModelsSSHKeysKeyResponse) HasLogonCount() bool

HasLogonCount returns a boolean if a field has been set.

func (*ModelsSSHKeysKeyResponse) HasPrivateKey ¶

func (o *ModelsSSHKeysKeyResponse) HasPrivateKey() bool

HasPrivateKey returns a boolean if a field has been set.

func (*ModelsSSHKeysKeyResponse) HasPublicKey ¶

func (o *ModelsSSHKeysKeyResponse) HasPublicKey() bool

HasPublicKey returns a boolean if a field has been set.

func (*ModelsSSHKeysKeyResponse) HasStaleDate ¶

func (o *ModelsSSHKeysKeyResponse) HasStaleDate() bool

HasStaleDate returns a boolean if a field has been set.

func (ModelsSSHKeysKeyResponse) MarshalJSON ¶

func (o ModelsSSHKeysKeyResponse) MarshalJSON() ([]byte, error)

func (*ModelsSSHKeysKeyResponse) SetComments ¶

func (o *ModelsSSHKeysKeyResponse) SetComments(v []string)

SetComments gets a reference to the given []string and assigns it to the Comments field.

func (*ModelsSSHKeysKeyResponse) SetCreationDate ¶

func (o *ModelsSSHKeysKeyResponse) SetCreationDate(v time.Time)

SetCreationDate gets a reference to the given time.Time and assigns it to the CreationDate field.

func (*ModelsSSHKeysKeyResponse) SetEmail ¶

func (o *ModelsSSHKeysKeyResponse) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*ModelsSSHKeysKeyResponse) SetFingerprint ¶

func (o *ModelsSSHKeysKeyResponse) SetFingerprint(v string)

SetFingerprint gets a reference to the given string and assigns it to the Fingerprint field.

func (*ModelsSSHKeysKeyResponse) SetId ¶

func (o *ModelsSSHKeysKeyResponse) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsSSHKeysKeyResponse) SetKeyLength ¶

func (o *ModelsSSHKeysKeyResponse) SetKeyLength(v int32)

SetKeyLength gets a reference to the given int32 and assigns it to the KeyLength field.

func (*ModelsSSHKeysKeyResponse) SetKeyType ¶

func (o *ModelsSSHKeysKeyResponse) SetKeyType(v string)

SetKeyType gets a reference to the given string and assigns it to the KeyType field.

func (*ModelsSSHKeysKeyResponse) SetLogonCount ¶

func (o *ModelsSSHKeysKeyResponse) SetLogonCount(v int32)

SetLogonCount gets a reference to the given int32 and assigns it to the LogonCount field.

func (*ModelsSSHKeysKeyResponse) SetPrivateKey ¶

func (o *ModelsSSHKeysKeyResponse) SetPrivateKey(v string)

SetPrivateKey gets a reference to the given string and assigns it to the PrivateKey field.

func (*ModelsSSHKeysKeyResponse) SetPublicKey ¶

func (o *ModelsSSHKeysKeyResponse) SetPublicKey(v string)

SetPublicKey gets a reference to the given string and assigns it to the PublicKey field.

func (*ModelsSSHKeysKeyResponse) SetStaleDate ¶

func (o *ModelsSSHKeysKeyResponse) SetStaleDate(v time.Time)

SetStaleDate gets a reference to the given time.Time and assigns it to the StaleDate field.

func (ModelsSSHKeysKeyResponse) ToMap ¶

func (o ModelsSSHKeysKeyResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHKeysKeyResponse) UnmarshalJSON ¶

func (o *ModelsSSHKeysKeyResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHKeysKeyUpdateRequest ¶

type ModelsSSHKeysKeyUpdateRequest struct {
	Id                   int32   `json:"Id"`
	Email                string  `json:"Email"`
	Comment              *string `json:"Comment,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHKeysKeyUpdateRequest struct for ModelsSSHKeysKeyUpdateRequest

func NewModelsSSHKeysKeyUpdateRequest ¶

func NewModelsSSHKeysKeyUpdateRequest(id int32, email string) *ModelsSSHKeysKeyUpdateRequest

NewModelsSSHKeysKeyUpdateRequest instantiates a new ModelsSSHKeysKeyUpdateRequest 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 NewModelsSSHKeysKeyUpdateRequestWithDefaults ¶

func NewModelsSSHKeysKeyUpdateRequestWithDefaults() *ModelsSSHKeysKeyUpdateRequest

NewModelsSSHKeysKeyUpdateRequestWithDefaults instantiates a new ModelsSSHKeysKeyUpdateRequest 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 (*ModelsSSHKeysKeyUpdateRequest) GetComment ¶

func (o *ModelsSSHKeysKeyUpdateRequest) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise.

func (*ModelsSSHKeysKeyUpdateRequest) GetCommentOk ¶

func (o *ModelsSSHKeysKeyUpdateRequest) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyUpdateRequest) GetEmail ¶

func (o *ModelsSSHKeysKeyUpdateRequest) GetEmail() string

GetEmail returns the Email field value

func (*ModelsSSHKeysKeyUpdateRequest) GetEmailOk ¶

func (o *ModelsSSHKeysKeyUpdateRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyUpdateRequest) GetId ¶

GetId returns the Id field value

func (*ModelsSSHKeysKeyUpdateRequest) GetIdOk ¶

func (o *ModelsSSHKeysKeyUpdateRequest) GetIdOk() (*int32, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ModelsSSHKeysKeyUpdateRequest) HasComment ¶

func (o *ModelsSSHKeysKeyUpdateRequest) HasComment() bool

HasComment returns a boolean if a field has been set.

func (ModelsSSHKeysKeyUpdateRequest) MarshalJSON ¶

func (o ModelsSSHKeysKeyUpdateRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSHKeysKeyUpdateRequest) SetComment ¶

func (o *ModelsSSHKeysKeyUpdateRequest) SetComment(v string)

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*ModelsSSHKeysKeyUpdateRequest) SetEmail ¶

func (o *ModelsSSHKeysKeyUpdateRequest) SetEmail(v string)

SetEmail sets field value

func (*ModelsSSHKeysKeyUpdateRequest) SetId ¶

SetId sets field value

func (ModelsSSHKeysKeyUpdateRequest) ToMap ¶

func (o ModelsSSHKeysKeyUpdateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHKeysKeyUpdateRequest) UnmarshalJSON ¶

func (o *ModelsSSHKeysKeyUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHKeysUnmanagedKeyResponse ¶

type ModelsSSHKeysUnmanagedKeyResponse struct {
	Id                   *int32     `json:"Id,omitempty"`
	Fingerprint          *string    `json:"Fingerprint,omitempty"`
	PublicKey            *string    `json:"PublicKey,omitempty"`
	PrivateKey           *string    `json:"PrivateKey,omitempty"`
	KeyType              *string    `json:"KeyType,omitempty"`
	KeyLength            *int32     `json:"KeyLength,omitempty"`
	DiscoveredDate       *time.Time `json:"DiscoveredDate,omitempty"`
	Email                *string    `json:"Email,omitempty"`
	Comments             []string   `json:"Comments,omitempty"`
	Username             *string    `json:"Username,omitempty"`
	LogonCount           *int32     `json:"LogonCount,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHKeysUnmanagedKeyResponse struct for ModelsSSHKeysUnmanagedKeyResponse

func NewModelsSSHKeysUnmanagedKeyResponse ¶

func NewModelsSSHKeysUnmanagedKeyResponse() *ModelsSSHKeysUnmanagedKeyResponse

NewModelsSSHKeysUnmanagedKeyResponse instantiates a new ModelsSSHKeysUnmanagedKeyResponse 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 NewModelsSSHKeysUnmanagedKeyResponseWithDefaults ¶

func NewModelsSSHKeysUnmanagedKeyResponseWithDefaults() *ModelsSSHKeysUnmanagedKeyResponse

NewModelsSSHKeysUnmanagedKeyResponseWithDefaults instantiates a new ModelsSSHKeysUnmanagedKeyResponse 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 (*ModelsSSHKeysUnmanagedKeyResponse) GetComments ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetComments() []string

GetComments returns the Comments field value if set, zero value otherwise.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetCommentsOk ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetCommentsOk() ([]string, bool)

GetCommentsOk returns a tuple with the Comments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetDiscoveredDate ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetDiscoveredDate() time.Time

GetDiscoveredDate returns the DiscoveredDate field value if set, zero value otherwise.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetDiscoveredDateOk ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetDiscoveredDateOk() (*time.Time, bool)

GetDiscoveredDateOk returns a tuple with the DiscoveredDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetEmail ¶

GetEmail returns the Email field value if set, zero value otherwise.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetEmailOk ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) 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 (*ModelsSSHKeysUnmanagedKeyResponse) GetFingerprint ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetFingerprint() string

GetFingerprint returns the Fingerprint field value if set, zero value otherwise.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetFingerprintOk ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) 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 (*ModelsSSHKeysUnmanagedKeyResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetIdOk ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) 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 (*ModelsSSHKeysUnmanagedKeyResponse) GetKeyLength ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetKeyLength() int32

GetKeyLength returns the KeyLength field value if set, zero value otherwise.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetKeyLengthOk ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetKeyLengthOk() (*int32, bool)

GetKeyLengthOk returns a tuple with the KeyLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetKeyType ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetKeyType() string

GetKeyType returns the KeyType field value if set, zero value otherwise.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetKeyTypeOk ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetKeyTypeOk() (*string, bool)

GetKeyTypeOk returns a tuple with the KeyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetLogonCount ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetLogonCount() int32

GetLogonCount returns the LogonCount field value if set, zero value otherwise.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetLogonCountOk ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetLogonCountOk() (*int32, bool)

GetLogonCountOk returns a tuple with the LogonCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetPrivateKey ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetPrivateKey() string

GetPrivateKey returns the PrivateKey field value if set, zero value otherwise.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetPrivateKeyOk ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetPrivateKeyOk() (*string, bool)

GetPrivateKeyOk returns a tuple with the PrivateKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetPublicKey ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetPublicKey() string

GetPublicKey returns the PublicKey field value if set, zero value otherwise.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetPublicKeyOk ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetPublicKeyOk() (*string, bool)

GetPublicKeyOk returns a tuple with the PublicKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetUsername ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ModelsSSHKeysUnmanagedKeyResponse) GetUsernameOk ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) 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 (*ModelsSSHKeysUnmanagedKeyResponse) HasComments ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) HasComments() bool

HasComments returns a boolean if a field has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) HasDiscoveredDate ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) HasDiscoveredDate() bool

HasDiscoveredDate returns a boolean if a field has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) HasEmail ¶

HasEmail returns a boolean if a field has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) HasFingerprint ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) HasFingerprint() bool

HasFingerprint returns a boolean if a field has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) HasKeyLength ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) HasKeyLength() bool

HasKeyLength returns a boolean if a field has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) HasKeyType ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) HasKeyType() bool

HasKeyType returns a boolean if a field has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) HasLogonCount ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) HasLogonCount() bool

HasLogonCount returns a boolean if a field has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) HasPrivateKey ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) HasPrivateKey() bool

HasPrivateKey returns a boolean if a field has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) HasPublicKey ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) HasPublicKey() bool

HasPublicKey returns a boolean if a field has been set.

func (*ModelsSSHKeysUnmanagedKeyResponse) HasUsername ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ModelsSSHKeysUnmanagedKeyResponse) MarshalJSON ¶

func (o ModelsSSHKeysUnmanagedKeyResponse) MarshalJSON() ([]byte, error)

func (*ModelsSSHKeysUnmanagedKeyResponse) SetComments ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) SetComments(v []string)

SetComments gets a reference to the given []string and assigns it to the Comments field.

func (*ModelsSSHKeysUnmanagedKeyResponse) SetDiscoveredDate ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) SetDiscoveredDate(v time.Time)

SetDiscoveredDate gets a reference to the given time.Time and assigns it to the DiscoveredDate field.

func (*ModelsSSHKeysUnmanagedKeyResponse) SetEmail ¶

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*ModelsSSHKeysUnmanagedKeyResponse) SetFingerprint ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) SetFingerprint(v string)

SetFingerprint gets a reference to the given string and assigns it to the Fingerprint field.

func (*ModelsSSHKeysUnmanagedKeyResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsSSHKeysUnmanagedKeyResponse) SetKeyLength ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) SetKeyLength(v int32)

SetKeyLength gets a reference to the given int32 and assigns it to the KeyLength field.

func (*ModelsSSHKeysUnmanagedKeyResponse) SetKeyType ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) SetKeyType(v string)

SetKeyType gets a reference to the given string and assigns it to the KeyType field.

func (*ModelsSSHKeysUnmanagedKeyResponse) SetLogonCount ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) SetLogonCount(v int32)

SetLogonCount gets a reference to the given int32 and assigns it to the LogonCount field.

func (*ModelsSSHKeysUnmanagedKeyResponse) SetPrivateKey ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) SetPrivateKey(v string)

SetPrivateKey gets a reference to the given string and assigns it to the PrivateKey field.

func (*ModelsSSHKeysUnmanagedKeyResponse) SetPublicKey ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) SetPublicKey(v string)

SetPublicKey gets a reference to the given string and assigns it to the PublicKey field.

func (*ModelsSSHKeysUnmanagedKeyResponse) SetUsername ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ModelsSSHKeysUnmanagedKeyResponse) ToMap ¶

func (o ModelsSSHKeysUnmanagedKeyResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHKeysUnmanagedKeyResponse) UnmarshalJSON ¶

func (o *ModelsSSHKeysUnmanagedKeyResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHLogonsLogonAccessRequest ¶

type ModelsSSHLogonsLogonAccessRequest struct {
	LogonId              int32   `json:"LogonId"`
	UserIds              []int32 `json:"UserIds,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHLogonsLogonAccessRequest struct for ModelsSSHLogonsLogonAccessRequest

func NewModelsSSHLogonsLogonAccessRequest ¶

func NewModelsSSHLogonsLogonAccessRequest(logonId int32) *ModelsSSHLogonsLogonAccessRequest

NewModelsSSHLogonsLogonAccessRequest instantiates a new ModelsSSHLogonsLogonAccessRequest 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 NewModelsSSHLogonsLogonAccessRequestWithDefaults ¶

func NewModelsSSHLogonsLogonAccessRequestWithDefaults() *ModelsSSHLogonsLogonAccessRequest

NewModelsSSHLogonsLogonAccessRequestWithDefaults instantiates a new ModelsSSHLogonsLogonAccessRequest 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 (*ModelsSSHLogonsLogonAccessRequest) GetLogonId ¶

func (o *ModelsSSHLogonsLogonAccessRequest) GetLogonId() int32

GetLogonId returns the LogonId field value

func (*ModelsSSHLogonsLogonAccessRequest) GetLogonIdOk ¶

func (o *ModelsSSHLogonsLogonAccessRequest) GetLogonIdOk() (*int32, bool)

GetLogonIdOk returns a tuple with the LogonId field value and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonAccessRequest) GetUserIds ¶

func (o *ModelsSSHLogonsLogonAccessRequest) GetUserIds() []int32

GetUserIds returns the UserIds field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonAccessRequest) GetUserIdsOk ¶

func (o *ModelsSSHLogonsLogonAccessRequest) GetUserIdsOk() ([]int32, bool)

GetUserIdsOk returns a tuple with the UserIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonAccessRequest) HasUserIds ¶

func (o *ModelsSSHLogonsLogonAccessRequest) HasUserIds() bool

HasUserIds returns a boolean if a field has been set.

func (ModelsSSHLogonsLogonAccessRequest) MarshalJSON ¶

func (o ModelsSSHLogonsLogonAccessRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSHLogonsLogonAccessRequest) SetLogonId ¶

func (o *ModelsSSHLogonsLogonAccessRequest) SetLogonId(v int32)

SetLogonId sets field value

func (*ModelsSSHLogonsLogonAccessRequest) SetUserIds ¶

func (o *ModelsSSHLogonsLogonAccessRequest) SetUserIds(v []int32)

SetUserIds gets a reference to the given []int32 and assigns it to the UserIds field.

func (ModelsSSHLogonsLogonAccessRequest) ToMap ¶

func (o ModelsSSHLogonsLogonAccessRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHLogonsLogonAccessRequest) UnmarshalJSON ¶

func (o *ModelsSSHLogonsLogonAccessRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHLogonsLogonCreationRequest ¶

type ModelsSSHLogonsLogonCreationRequest struct {
	Username             string  `json:"Username"`
	ServerId             int32   `json:"ServerId"`
	UserIds              []int32 `json:"UserIds,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHLogonsLogonCreationRequest struct for ModelsSSHLogonsLogonCreationRequest

func NewModelsSSHLogonsLogonCreationRequest ¶

func NewModelsSSHLogonsLogonCreationRequest(username string, serverId int32) *ModelsSSHLogonsLogonCreationRequest

NewModelsSSHLogonsLogonCreationRequest instantiates a new ModelsSSHLogonsLogonCreationRequest 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 NewModelsSSHLogonsLogonCreationRequestWithDefaults ¶

func NewModelsSSHLogonsLogonCreationRequestWithDefaults() *ModelsSSHLogonsLogonCreationRequest

NewModelsSSHLogonsLogonCreationRequestWithDefaults instantiates a new ModelsSSHLogonsLogonCreationRequest 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 (*ModelsSSHLogonsLogonCreationRequest) GetServerId ¶

func (o *ModelsSSHLogonsLogonCreationRequest) GetServerId() int32

GetServerId returns the ServerId field value

func (*ModelsSSHLogonsLogonCreationRequest) GetServerIdOk ¶

func (o *ModelsSSHLogonsLogonCreationRequest) GetServerIdOk() (*int32, bool)

GetServerIdOk returns a tuple with the ServerId field value and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonCreationRequest) GetUserIds ¶

func (o *ModelsSSHLogonsLogonCreationRequest) GetUserIds() []int32

GetUserIds returns the UserIds field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonCreationRequest) GetUserIdsOk ¶

func (o *ModelsSSHLogonsLogonCreationRequest) GetUserIdsOk() ([]int32, bool)

GetUserIdsOk returns a tuple with the UserIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonCreationRequest) GetUsername ¶

GetUsername returns the Username field value

func (*ModelsSSHLogonsLogonCreationRequest) GetUsernameOk ¶

func (o *ModelsSSHLogonsLogonCreationRequest) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonCreationRequest) HasUserIds ¶

func (o *ModelsSSHLogonsLogonCreationRequest) HasUserIds() bool

HasUserIds returns a boolean if a field has been set.

func (ModelsSSHLogonsLogonCreationRequest) MarshalJSON ¶

func (o ModelsSSHLogonsLogonCreationRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSHLogonsLogonCreationRequest) SetServerId ¶

func (o *ModelsSSHLogonsLogonCreationRequest) SetServerId(v int32)

SetServerId sets field value

func (*ModelsSSHLogonsLogonCreationRequest) SetUserIds ¶

func (o *ModelsSSHLogonsLogonCreationRequest) SetUserIds(v []int32)

SetUserIds gets a reference to the given []int32 and assigns it to the UserIds field.

func (*ModelsSSHLogonsLogonCreationRequest) SetUsername ¶

func (o *ModelsSSHLogonsLogonCreationRequest) SetUsername(v string)

SetUsername sets field value

func (ModelsSSHLogonsLogonCreationRequest) ToMap ¶

func (o ModelsSSHLogonsLogonCreationRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHLogonsLogonCreationRequest) UnmarshalJSON ¶

func (o *ModelsSSHLogonsLogonCreationRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHLogonsLogonQueryResponse ¶

type ModelsSSHLogonsLogonQueryResponse struct {
	Id                    *int32     `json:"Id,omitempty"`
	Username              *string    `json:"Username,omitempty"`
	LastLogon             *time.Time `json:"LastLogon,omitempty"`
	ServerId              *int32     `json:"ServerId,omitempty"`
	ServerName            *string    `json:"ServerName,omitempty"`
	GroupName             *string    `json:"GroupName,omitempty"`
	KeyCount              *int32     `json:"KeyCount,omitempty"`
	ServerUnderManagement *bool      `json:"ServerUnderManagement,omitempty"`
	AdditionalProperties  map[string]interface{}
}

ModelsSSHLogonsLogonQueryResponse struct for ModelsSSHLogonsLogonQueryResponse

func NewModelsSSHLogonsLogonQueryResponse ¶

func NewModelsSSHLogonsLogonQueryResponse() *ModelsSSHLogonsLogonQueryResponse

NewModelsSSHLogonsLogonQueryResponse instantiates a new ModelsSSHLogonsLogonQueryResponse 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 NewModelsSSHLogonsLogonQueryResponseWithDefaults ¶

func NewModelsSSHLogonsLogonQueryResponseWithDefaults() *ModelsSSHLogonsLogonQueryResponse

NewModelsSSHLogonsLogonQueryResponseWithDefaults instantiates a new ModelsSSHLogonsLogonQueryResponse 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 (*ModelsSSHLogonsLogonQueryResponse) GetGroupName ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetGroupName() string

GetGroupName returns the GroupName field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonQueryResponse) GetGroupNameOk ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetGroupNameOk() (*string, bool)

GetGroupNameOk returns a tuple with the GroupName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonQueryResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonQueryResponse) GetIdOk ¶

func (o *ModelsSSHLogonsLogonQueryResponse) 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 (*ModelsSSHLogonsLogonQueryResponse) GetKeyCount ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetKeyCount() int32

GetKeyCount returns the KeyCount field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonQueryResponse) GetKeyCountOk ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetKeyCountOk() (*int32, bool)

GetKeyCountOk returns a tuple with the KeyCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonQueryResponse) GetLastLogon ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetLastLogon() time.Time

GetLastLogon returns the LastLogon field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonQueryResponse) GetLastLogonOk ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetLastLogonOk() (*time.Time, bool)

GetLastLogonOk returns a tuple with the LastLogon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonQueryResponse) GetServerId ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetServerId() int32

GetServerId returns the ServerId field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonQueryResponse) GetServerIdOk ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetServerIdOk() (*int32, bool)

GetServerIdOk returns a tuple with the ServerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonQueryResponse) GetServerName ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetServerName() string

GetServerName returns the ServerName field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonQueryResponse) GetServerNameOk ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetServerNameOk() (*string, bool)

GetServerNameOk returns a tuple with the ServerName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonQueryResponse) GetServerUnderManagement ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetServerUnderManagement() bool

GetServerUnderManagement returns the ServerUnderManagement field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonQueryResponse) GetServerUnderManagementOk ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetServerUnderManagementOk() (*bool, bool)

GetServerUnderManagementOk returns a tuple with the ServerUnderManagement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonQueryResponse) GetUsername ¶

func (o *ModelsSSHLogonsLogonQueryResponse) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonQueryResponse) GetUsernameOk ¶

func (o *ModelsSSHLogonsLogonQueryResponse) 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 (*ModelsSSHLogonsLogonQueryResponse) HasGroupName ¶

func (o *ModelsSSHLogonsLogonQueryResponse) HasGroupName() bool

HasGroupName returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonQueryResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonQueryResponse) HasKeyCount ¶

func (o *ModelsSSHLogonsLogonQueryResponse) HasKeyCount() bool

HasKeyCount returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonQueryResponse) HasLastLogon ¶

func (o *ModelsSSHLogonsLogonQueryResponse) HasLastLogon() bool

HasLastLogon returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonQueryResponse) HasServerId ¶

func (o *ModelsSSHLogonsLogonQueryResponse) HasServerId() bool

HasServerId returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonQueryResponse) HasServerName ¶

func (o *ModelsSSHLogonsLogonQueryResponse) HasServerName() bool

HasServerName returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonQueryResponse) HasServerUnderManagement ¶

func (o *ModelsSSHLogonsLogonQueryResponse) HasServerUnderManagement() bool

HasServerUnderManagement returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonQueryResponse) HasUsername ¶

func (o *ModelsSSHLogonsLogonQueryResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ModelsSSHLogonsLogonQueryResponse) MarshalJSON ¶

func (o ModelsSSHLogonsLogonQueryResponse) MarshalJSON() ([]byte, error)

func (*ModelsSSHLogonsLogonQueryResponse) SetGroupName ¶

func (o *ModelsSSHLogonsLogonQueryResponse) SetGroupName(v string)

SetGroupName gets a reference to the given string and assigns it to the GroupName field.

func (*ModelsSSHLogonsLogonQueryResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsSSHLogonsLogonQueryResponse) SetKeyCount ¶

func (o *ModelsSSHLogonsLogonQueryResponse) SetKeyCount(v int32)

SetKeyCount gets a reference to the given int32 and assigns it to the KeyCount field.

func (*ModelsSSHLogonsLogonQueryResponse) SetLastLogon ¶

func (o *ModelsSSHLogonsLogonQueryResponse) SetLastLogon(v time.Time)

SetLastLogon gets a reference to the given time.Time and assigns it to the LastLogon field.

func (*ModelsSSHLogonsLogonQueryResponse) SetServerId ¶

func (o *ModelsSSHLogonsLogonQueryResponse) SetServerId(v int32)

SetServerId gets a reference to the given int32 and assigns it to the ServerId field.

func (*ModelsSSHLogonsLogonQueryResponse) SetServerName ¶

func (o *ModelsSSHLogonsLogonQueryResponse) SetServerName(v string)

SetServerName gets a reference to the given string and assigns it to the ServerName field.

func (*ModelsSSHLogonsLogonQueryResponse) SetServerUnderManagement ¶

func (o *ModelsSSHLogonsLogonQueryResponse) SetServerUnderManagement(v bool)

SetServerUnderManagement gets a reference to the given bool and assigns it to the ServerUnderManagement field.

func (*ModelsSSHLogonsLogonQueryResponse) SetUsername ¶

func (o *ModelsSSHLogonsLogonQueryResponse) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ModelsSSHLogonsLogonQueryResponse) ToMap ¶

func (o ModelsSSHLogonsLogonQueryResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHLogonsLogonQueryResponse) UnmarshalJSON ¶

func (o *ModelsSSHLogonsLogonQueryResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHLogonsLogonResponse ¶

type ModelsSSHLogonsLogonResponse struct {
	Id                   *int32                          `json:"Id,omitempty"`
	Username             *string                         `json:"Username,omitempty"`
	LastLogon            *time.Time                      `json:"LastLogon,omitempty"`
	Server               *ModelsSSHServersServerResponse `json:"Server,omitempty"`
	KeyCount             *int32                          `json:"KeyCount,omitempty"`
	Access               []ModelsSSHUsersSshUserResponse `json:"Access,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHLogonsLogonResponse struct for ModelsSSHLogonsLogonResponse

func NewModelsSSHLogonsLogonResponse ¶

func NewModelsSSHLogonsLogonResponse() *ModelsSSHLogonsLogonResponse

NewModelsSSHLogonsLogonResponse instantiates a new ModelsSSHLogonsLogonResponse 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 NewModelsSSHLogonsLogonResponseWithDefaults ¶

func NewModelsSSHLogonsLogonResponseWithDefaults() *ModelsSSHLogonsLogonResponse

NewModelsSSHLogonsLogonResponseWithDefaults instantiates a new ModelsSSHLogonsLogonResponse 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 (*ModelsSSHLogonsLogonResponse) GetAccess ¶

GetAccess returns the Access field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonResponse) GetAccessOk ¶

GetAccessOk returns a tuple with the Access field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonResponse) GetIdOk ¶

func (o *ModelsSSHLogonsLogonResponse) 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 (*ModelsSSHLogonsLogonResponse) GetKeyCount ¶

func (o *ModelsSSHLogonsLogonResponse) GetKeyCount() int32

GetKeyCount returns the KeyCount field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonResponse) GetKeyCountOk ¶

func (o *ModelsSSHLogonsLogonResponse) GetKeyCountOk() (*int32, bool)

GetKeyCountOk returns a tuple with the KeyCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonResponse) GetLastLogon ¶

func (o *ModelsSSHLogonsLogonResponse) GetLastLogon() time.Time

GetLastLogon returns the LastLogon field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonResponse) GetLastLogonOk ¶

func (o *ModelsSSHLogonsLogonResponse) GetLastLogonOk() (*time.Time, bool)

GetLastLogonOk returns a tuple with the LastLogon field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonResponse) GetServer ¶

GetServer returns the Server field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonResponse) GetServerOk ¶

GetServerOk returns a tuple with the Server field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHLogonsLogonResponse) GetUsername ¶

func (o *ModelsSSHLogonsLogonResponse) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ModelsSSHLogonsLogonResponse) GetUsernameOk ¶

func (o *ModelsSSHLogonsLogonResponse) 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 (*ModelsSSHLogonsLogonResponse) HasAccess ¶

func (o *ModelsSSHLogonsLogonResponse) HasAccess() bool

HasAccess returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonResponse) HasKeyCount ¶

func (o *ModelsSSHLogonsLogonResponse) HasKeyCount() bool

HasKeyCount returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonResponse) HasLastLogon ¶

func (o *ModelsSSHLogonsLogonResponse) HasLastLogon() bool

HasLastLogon returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonResponse) HasServer ¶

func (o *ModelsSSHLogonsLogonResponse) HasServer() bool

HasServer returns a boolean if a field has been set.

func (*ModelsSSHLogonsLogonResponse) HasUsername ¶

func (o *ModelsSSHLogonsLogonResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ModelsSSHLogonsLogonResponse) MarshalJSON ¶

func (o ModelsSSHLogonsLogonResponse) MarshalJSON() ([]byte, error)

func (*ModelsSSHLogonsLogonResponse) SetAccess ¶

SetAccess gets a reference to the given []ModelsSSHUsersSshUserResponse and assigns it to the Access field.

func (*ModelsSSHLogonsLogonResponse) SetId ¶

func (o *ModelsSSHLogonsLogonResponse) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsSSHLogonsLogonResponse) SetKeyCount ¶

func (o *ModelsSSHLogonsLogonResponse) SetKeyCount(v int32)

SetKeyCount gets a reference to the given int32 and assigns it to the KeyCount field.

func (*ModelsSSHLogonsLogonResponse) SetLastLogon ¶

func (o *ModelsSSHLogonsLogonResponse) SetLastLogon(v time.Time)

SetLastLogon gets a reference to the given time.Time and assigns it to the LastLogon field.

func (*ModelsSSHLogonsLogonResponse) SetServer ¶

SetServer gets a reference to the given ModelsSSHServersServerResponse and assigns it to the Server field.

func (*ModelsSSHLogonsLogonResponse) SetUsername ¶

func (o *ModelsSSHLogonsLogonResponse) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ModelsSSHLogonsLogonResponse) ToMap ¶

func (o ModelsSSHLogonsLogonResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHLogonsLogonResponse) UnmarshalJSON ¶

func (o *ModelsSSHLogonsLogonResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHServerGroupsServerGroupCreationRequest ¶

type ModelsSSHServerGroupsServerGroupCreationRequest struct {
	OwnerName            string                                      `json:"OwnerName"`
	GroupName            string                                      `json:"GroupName"`
	SyncSchedule         *KeyfactorCommonSchedulingKeyfactorSchedule `json:"SyncSchedule,omitempty"`
	UnderManagement      *bool                                       `json:"UnderManagement,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHServerGroupsServerGroupCreationRequest struct for ModelsSSHServerGroupsServerGroupCreationRequest

func NewModelsSSHServerGroupsServerGroupCreationRequest ¶

func NewModelsSSHServerGroupsServerGroupCreationRequest(ownerName string, groupName string) *ModelsSSHServerGroupsServerGroupCreationRequest

NewModelsSSHServerGroupsServerGroupCreationRequest instantiates a new ModelsSSHServerGroupsServerGroupCreationRequest 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 NewModelsSSHServerGroupsServerGroupCreationRequestWithDefaults ¶

func NewModelsSSHServerGroupsServerGroupCreationRequestWithDefaults() *ModelsSSHServerGroupsServerGroupCreationRequest

NewModelsSSHServerGroupsServerGroupCreationRequestWithDefaults instantiates a new ModelsSSHServerGroupsServerGroupCreationRequest 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 (*ModelsSSHServerGroupsServerGroupCreationRequest) GetGroupName ¶

GetGroupName returns the GroupName field value

func (*ModelsSSHServerGroupsServerGroupCreationRequest) GetGroupNameOk ¶

GetGroupNameOk returns a tuple with the GroupName field value and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupCreationRequest) GetOwnerName ¶

GetOwnerName returns the OwnerName field value

func (*ModelsSSHServerGroupsServerGroupCreationRequest) GetOwnerNameOk ¶

GetOwnerNameOk returns a tuple with the OwnerName field value and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupCreationRequest) GetSyncSchedule ¶

GetSyncSchedule returns the SyncSchedule field value if set, zero value otherwise.

func (*ModelsSSHServerGroupsServerGroupCreationRequest) GetSyncScheduleOk ¶

GetSyncScheduleOk returns a tuple with the SyncSchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupCreationRequest) GetUnderManagement ¶

func (o *ModelsSSHServerGroupsServerGroupCreationRequest) GetUnderManagement() bool

GetUnderManagement returns the UnderManagement field value if set, zero value otherwise.

func (*ModelsSSHServerGroupsServerGroupCreationRequest) GetUnderManagementOk ¶

func (o *ModelsSSHServerGroupsServerGroupCreationRequest) GetUnderManagementOk() (*bool, bool)

GetUnderManagementOk returns a tuple with the UnderManagement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupCreationRequest) HasSyncSchedule ¶

HasSyncSchedule returns a boolean if a field has been set.

func (*ModelsSSHServerGroupsServerGroupCreationRequest) HasUnderManagement ¶

func (o *ModelsSSHServerGroupsServerGroupCreationRequest) HasUnderManagement() bool

HasUnderManagement returns a boolean if a field has been set.

func (ModelsSSHServerGroupsServerGroupCreationRequest) MarshalJSON ¶

func (*ModelsSSHServerGroupsServerGroupCreationRequest) SetGroupName ¶

SetGroupName sets field value

func (*ModelsSSHServerGroupsServerGroupCreationRequest) SetOwnerName ¶

SetOwnerName sets field value

func (*ModelsSSHServerGroupsServerGroupCreationRequest) SetSyncSchedule ¶

SetSyncSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the SyncSchedule field.

func (*ModelsSSHServerGroupsServerGroupCreationRequest) SetUnderManagement ¶

func (o *ModelsSSHServerGroupsServerGroupCreationRequest) SetUnderManagement(v bool)

SetUnderManagement gets a reference to the given bool and assigns it to the UnderManagement field.

func (ModelsSSHServerGroupsServerGroupCreationRequest) ToMap ¶

func (o ModelsSSHServerGroupsServerGroupCreationRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHServerGroupsServerGroupCreationRequest) UnmarshalJSON ¶

func (o *ModelsSSHServerGroupsServerGroupCreationRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHServerGroupsServerGroupResponse ¶

type ModelsSSHServerGroupsServerGroupResponse struct {
	Id                   *string                                     `json:"Id,omitempty"`
	Owner                *ModelsSSHUsersSshUserResponse              `json:"Owner,omitempty"`
	GroupName            *string                                     `json:"GroupName,omitempty"`
	SyncSchedule         *KeyfactorCommonSchedulingKeyfactorSchedule `json:"SyncSchedule,omitempty"`
	UnderManagement      *bool                                       `json:"UnderManagement,omitempty"`
	ServerCount          *int32                                      `json:"ServerCount,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHServerGroupsServerGroupResponse struct for ModelsSSHServerGroupsServerGroupResponse

func NewModelsSSHServerGroupsServerGroupResponse ¶

func NewModelsSSHServerGroupsServerGroupResponse() *ModelsSSHServerGroupsServerGroupResponse

NewModelsSSHServerGroupsServerGroupResponse instantiates a new ModelsSSHServerGroupsServerGroupResponse 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 NewModelsSSHServerGroupsServerGroupResponseWithDefaults ¶

func NewModelsSSHServerGroupsServerGroupResponseWithDefaults() *ModelsSSHServerGroupsServerGroupResponse

NewModelsSSHServerGroupsServerGroupResponseWithDefaults instantiates a new ModelsSSHServerGroupsServerGroupResponse 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 (*ModelsSSHServerGroupsServerGroupResponse) GetGroupName ¶

GetGroupName returns the GroupName field value if set, zero value otherwise.

func (*ModelsSSHServerGroupsServerGroupResponse) GetGroupNameOk ¶

func (o *ModelsSSHServerGroupsServerGroupResponse) GetGroupNameOk() (*string, bool)

GetGroupNameOk returns a tuple with the GroupName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsSSHServerGroupsServerGroupResponse) GetIdOk ¶

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 (*ModelsSSHServerGroupsServerGroupResponse) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ModelsSSHServerGroupsServerGroupResponse) GetOwnerOk ¶

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupResponse) GetServerCount ¶

func (o *ModelsSSHServerGroupsServerGroupResponse) GetServerCount() int32

GetServerCount returns the ServerCount field value if set, zero value otherwise.

func (*ModelsSSHServerGroupsServerGroupResponse) GetServerCountOk ¶

func (o *ModelsSSHServerGroupsServerGroupResponse) GetServerCountOk() (*int32, bool)

GetServerCountOk returns a tuple with the ServerCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupResponse) GetSyncSchedule ¶

GetSyncSchedule returns the SyncSchedule field value if set, zero value otherwise.

func (*ModelsSSHServerGroupsServerGroupResponse) GetSyncScheduleOk ¶

GetSyncScheduleOk returns a tuple with the SyncSchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupResponse) GetUnderManagement ¶

func (o *ModelsSSHServerGroupsServerGroupResponse) GetUnderManagement() bool

GetUnderManagement returns the UnderManagement field value if set, zero value otherwise.

func (*ModelsSSHServerGroupsServerGroupResponse) GetUnderManagementOk ¶

func (o *ModelsSSHServerGroupsServerGroupResponse) GetUnderManagementOk() (*bool, bool)

GetUnderManagementOk returns a tuple with the UnderManagement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupResponse) HasGroupName ¶

HasGroupName returns a boolean if a field has been set.

func (*ModelsSSHServerGroupsServerGroupResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsSSHServerGroupsServerGroupResponse) HasOwner ¶

HasOwner returns a boolean if a field has been set.

func (*ModelsSSHServerGroupsServerGroupResponse) HasServerCount ¶

func (o *ModelsSSHServerGroupsServerGroupResponse) HasServerCount() bool

HasServerCount returns a boolean if a field has been set.

func (*ModelsSSHServerGroupsServerGroupResponse) HasSyncSchedule ¶

func (o *ModelsSSHServerGroupsServerGroupResponse) HasSyncSchedule() bool

HasSyncSchedule returns a boolean if a field has been set.

func (*ModelsSSHServerGroupsServerGroupResponse) HasUnderManagement ¶

func (o *ModelsSSHServerGroupsServerGroupResponse) HasUnderManagement() bool

HasUnderManagement returns a boolean if a field has been set.

func (ModelsSSHServerGroupsServerGroupResponse) MarshalJSON ¶

func (*ModelsSSHServerGroupsServerGroupResponse) SetGroupName ¶

SetGroupName gets a reference to the given string and assigns it to the GroupName field.

func (*ModelsSSHServerGroupsServerGroupResponse) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*ModelsSSHServerGroupsServerGroupResponse) SetOwner ¶

SetOwner gets a reference to the given ModelsSSHUsersSshUserResponse and assigns it to the Owner field.

func (*ModelsSSHServerGroupsServerGroupResponse) SetServerCount ¶

func (o *ModelsSSHServerGroupsServerGroupResponse) SetServerCount(v int32)

SetServerCount gets a reference to the given int32 and assigns it to the ServerCount field.

func (*ModelsSSHServerGroupsServerGroupResponse) SetSyncSchedule ¶

SetSyncSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the SyncSchedule field.

func (*ModelsSSHServerGroupsServerGroupResponse) SetUnderManagement ¶

func (o *ModelsSSHServerGroupsServerGroupResponse) SetUnderManagement(v bool)

SetUnderManagement gets a reference to the given bool and assigns it to the UnderManagement field.

func (ModelsSSHServerGroupsServerGroupResponse) ToMap ¶

func (o ModelsSSHServerGroupsServerGroupResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHServerGroupsServerGroupResponse) UnmarshalJSON ¶

func (o *ModelsSSHServerGroupsServerGroupResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHServerGroupsServerGroupUpdateRequest ¶

type ModelsSSHServerGroupsServerGroupUpdateRequest struct {
	Id                   string                                      `json:"Id"`
	OwnerName            string                                      `json:"OwnerName"`
	GroupName            string                                      `json:"GroupName"`
	SyncSchedule         *KeyfactorCommonSchedulingKeyfactorSchedule `json:"SyncSchedule,omitempty"`
	UnderManagement      bool                                        `json:"UnderManagement"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHServerGroupsServerGroupUpdateRequest struct for ModelsSSHServerGroupsServerGroupUpdateRequest

func NewModelsSSHServerGroupsServerGroupUpdateRequest ¶

func NewModelsSSHServerGroupsServerGroupUpdateRequest(id string, ownerName string, groupName string, underManagement bool) *ModelsSSHServerGroupsServerGroupUpdateRequest

NewModelsSSHServerGroupsServerGroupUpdateRequest instantiates a new ModelsSSHServerGroupsServerGroupUpdateRequest 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 NewModelsSSHServerGroupsServerGroupUpdateRequestWithDefaults ¶

func NewModelsSSHServerGroupsServerGroupUpdateRequestWithDefaults() *ModelsSSHServerGroupsServerGroupUpdateRequest

NewModelsSSHServerGroupsServerGroupUpdateRequestWithDefaults instantiates a new ModelsSSHServerGroupsServerGroupUpdateRequest 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 (*ModelsSSHServerGroupsServerGroupUpdateRequest) GetGroupName ¶

GetGroupName returns the GroupName field value

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) GetGroupNameOk ¶

GetGroupNameOk returns a tuple with the GroupName field value and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) GetId ¶

GetId returns the Id field value

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) GetIdOk ¶

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) GetOwnerName ¶

GetOwnerName returns the OwnerName field value

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) GetOwnerNameOk ¶

GetOwnerNameOk returns a tuple with the OwnerName field value and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) GetSyncSchedule ¶

GetSyncSchedule returns the SyncSchedule field value if set, zero value otherwise.

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) GetSyncScheduleOk ¶

GetSyncScheduleOk returns a tuple with the SyncSchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) GetUnderManagement ¶

func (o *ModelsSSHServerGroupsServerGroupUpdateRequest) GetUnderManagement() bool

GetUnderManagement returns the UnderManagement field value

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) GetUnderManagementOk ¶

func (o *ModelsSSHServerGroupsServerGroupUpdateRequest) GetUnderManagementOk() (*bool, bool)

GetUnderManagementOk returns a tuple with the UnderManagement field value and a boolean to check if the value has been set.

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) HasSyncSchedule ¶

HasSyncSchedule returns a boolean if a field has been set.

func (ModelsSSHServerGroupsServerGroupUpdateRequest) MarshalJSON ¶

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) SetGroupName ¶

SetGroupName sets field value

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) SetId ¶

SetId sets field value

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) SetOwnerName ¶

SetOwnerName sets field value

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) SetSyncSchedule ¶

SetSyncSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the SyncSchedule field.

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) SetUnderManagement ¶

func (o *ModelsSSHServerGroupsServerGroupUpdateRequest) SetUnderManagement(v bool)

SetUnderManagement sets field value

func (ModelsSSHServerGroupsServerGroupUpdateRequest) ToMap ¶

func (o ModelsSSHServerGroupsServerGroupUpdateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHServerGroupsServerGroupUpdateRequest) UnmarshalJSON ¶

func (o *ModelsSSHServerGroupsServerGroupUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHServersServerCreationRequest ¶

type ModelsSSHServersServerCreationRequest struct {
	AgentId              string `json:"AgentId"`
	Hostname             string `json:"Hostname"`
	ServerGroupId        string `json:"ServerGroupId"`
	UnderManagement      *bool  `json:"UnderManagement,omitempty"`
	Port                 *int32 `json:"Port,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHServersServerCreationRequest struct for ModelsSSHServersServerCreationRequest

func NewModelsSSHServersServerCreationRequest ¶

func NewModelsSSHServersServerCreationRequest(agentId string, hostname string, serverGroupId string) *ModelsSSHServersServerCreationRequest

NewModelsSSHServersServerCreationRequest instantiates a new ModelsSSHServersServerCreationRequest 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 NewModelsSSHServersServerCreationRequestWithDefaults ¶

func NewModelsSSHServersServerCreationRequestWithDefaults() *ModelsSSHServersServerCreationRequest

NewModelsSSHServersServerCreationRequestWithDefaults instantiates a new ModelsSSHServersServerCreationRequest 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 (*ModelsSSHServersServerCreationRequest) GetAgentId ¶

GetAgentId returns the AgentId field value

func (*ModelsSSHServersServerCreationRequest) GetAgentIdOk ¶

func (o *ModelsSSHServersServerCreationRequest) GetAgentIdOk() (*string, bool)

GetAgentIdOk returns a tuple with the AgentId field value and a boolean to check if the value has been set.

func (*ModelsSSHServersServerCreationRequest) GetHostname ¶

GetHostname returns the Hostname field value

func (*ModelsSSHServersServerCreationRequest) GetHostnameOk ¶

func (o *ModelsSSHServersServerCreationRequest) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value and a boolean to check if the value has been set.

func (*ModelsSSHServersServerCreationRequest) GetPort ¶

GetPort returns the Port field value if set, zero value otherwise.

func (*ModelsSSHServersServerCreationRequest) GetPortOk ¶

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerCreationRequest) GetServerGroupId ¶

func (o *ModelsSSHServersServerCreationRequest) GetServerGroupId() string

GetServerGroupId returns the ServerGroupId field value

func (*ModelsSSHServersServerCreationRequest) GetServerGroupIdOk ¶

func (o *ModelsSSHServersServerCreationRequest) GetServerGroupIdOk() (*string, bool)

GetServerGroupIdOk returns a tuple with the ServerGroupId field value and a boolean to check if the value has been set.

func (*ModelsSSHServersServerCreationRequest) GetUnderManagement ¶

func (o *ModelsSSHServersServerCreationRequest) GetUnderManagement() bool

GetUnderManagement returns the UnderManagement field value if set, zero value otherwise.

func (*ModelsSSHServersServerCreationRequest) GetUnderManagementOk ¶

func (o *ModelsSSHServersServerCreationRequest) GetUnderManagementOk() (*bool, bool)

GetUnderManagementOk returns a tuple with the UnderManagement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerCreationRequest) HasPort ¶

HasPort returns a boolean if a field has been set.

func (*ModelsSSHServersServerCreationRequest) HasUnderManagement ¶

func (o *ModelsSSHServersServerCreationRequest) HasUnderManagement() bool

HasUnderManagement returns a boolean if a field has been set.

func (ModelsSSHServersServerCreationRequest) MarshalJSON ¶

func (o ModelsSSHServersServerCreationRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSHServersServerCreationRequest) SetAgentId ¶

SetAgentId sets field value

func (*ModelsSSHServersServerCreationRequest) SetHostname ¶

SetHostname sets field value

func (*ModelsSSHServersServerCreationRequest) SetPort ¶

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*ModelsSSHServersServerCreationRequest) SetServerGroupId ¶

func (o *ModelsSSHServersServerCreationRequest) SetServerGroupId(v string)

SetServerGroupId sets field value

func (*ModelsSSHServersServerCreationRequest) SetUnderManagement ¶

func (o *ModelsSSHServersServerCreationRequest) SetUnderManagement(v bool)

SetUnderManagement gets a reference to the given bool and assigns it to the UnderManagement field.

func (ModelsSSHServersServerCreationRequest) ToMap ¶

func (o ModelsSSHServersServerCreationRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHServersServerCreationRequest) UnmarshalJSON ¶

func (o *ModelsSSHServersServerCreationRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHServersServerResponse ¶

type ModelsSSHServersServerResponse struct {
	Id                   *int32                                      `json:"Id,omitempty"`
	AgentId              *string                                     `json:"AgentId,omitempty"`
	Hostname             *string                                     `json:"Hostname,omitempty"`
	ServerGroupId        *string                                     `json:"ServerGroupId,omitempty"`
	SyncSchedule         *KeyfactorCommonSchedulingKeyfactorSchedule `json:"SyncSchedule,omitempty"`
	UnderManagement      *bool                                       `json:"UnderManagement,omitempty"`
	Owner                *ModelsSSHUsersSshUserResponse              `json:"Owner,omitempty"`
	GroupName            *string                                     `json:"GroupName,omitempty"`
	Orchestrator         *string                                     `json:"Orchestrator,omitempty"`
	Port                 *int32                                      `json:"Port,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHServersServerResponse struct for ModelsSSHServersServerResponse

func NewModelsSSHServersServerResponse ¶

func NewModelsSSHServersServerResponse() *ModelsSSHServersServerResponse

NewModelsSSHServersServerResponse instantiates a new ModelsSSHServersServerResponse 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 NewModelsSSHServersServerResponseWithDefaults ¶

func NewModelsSSHServersServerResponseWithDefaults() *ModelsSSHServersServerResponse

NewModelsSSHServersServerResponseWithDefaults instantiates a new ModelsSSHServersServerResponse 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 (*ModelsSSHServersServerResponse) GetAgentId ¶

func (o *ModelsSSHServersServerResponse) GetAgentId() string

GetAgentId returns the AgentId field value if set, zero value otherwise.

func (*ModelsSSHServersServerResponse) GetAgentIdOk ¶

func (o *ModelsSSHServersServerResponse) GetAgentIdOk() (*string, bool)

GetAgentIdOk returns a tuple with the AgentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerResponse) GetGroupName ¶

func (o *ModelsSSHServersServerResponse) GetGroupName() string

GetGroupName returns the GroupName field value if set, zero value otherwise.

func (*ModelsSSHServersServerResponse) GetGroupNameOk ¶

func (o *ModelsSSHServersServerResponse) GetGroupNameOk() (*string, bool)

GetGroupNameOk returns a tuple with the GroupName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerResponse) GetHostname ¶

func (o *ModelsSSHServersServerResponse) GetHostname() string

GetHostname returns the Hostname field value if set, zero value otherwise.

func (*ModelsSSHServersServerResponse) GetHostnameOk ¶

func (o *ModelsSSHServersServerResponse) GetHostnameOk() (*string, bool)

GetHostnameOk returns a tuple with the Hostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsSSHServersServerResponse) GetIdOk ¶

func (o *ModelsSSHServersServerResponse) 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 (*ModelsSSHServersServerResponse) GetOrchestrator ¶

func (o *ModelsSSHServersServerResponse) GetOrchestrator() string

GetOrchestrator returns the Orchestrator field value if set, zero value otherwise.

func (*ModelsSSHServersServerResponse) GetOrchestratorOk ¶

func (o *ModelsSSHServersServerResponse) GetOrchestratorOk() (*string, bool)

GetOrchestratorOk returns a tuple with the Orchestrator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerResponse) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*ModelsSSHServersServerResponse) GetOwnerOk ¶

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerResponse) GetPort ¶

GetPort returns the Port field value if set, zero value otherwise.

func (*ModelsSSHServersServerResponse) GetPortOk ¶

func (o *ModelsSSHServersServerResponse) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerResponse) GetServerGroupId ¶

func (o *ModelsSSHServersServerResponse) GetServerGroupId() string

GetServerGroupId returns the ServerGroupId field value if set, zero value otherwise.

func (*ModelsSSHServersServerResponse) GetServerGroupIdOk ¶

func (o *ModelsSSHServersServerResponse) GetServerGroupIdOk() (*string, bool)

GetServerGroupIdOk returns a tuple with the ServerGroupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerResponse) GetSyncSchedule ¶

GetSyncSchedule returns the SyncSchedule field value if set, zero value otherwise.

func (*ModelsSSHServersServerResponse) GetSyncScheduleOk ¶

GetSyncScheduleOk returns a tuple with the SyncSchedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerResponse) GetUnderManagement ¶

func (o *ModelsSSHServersServerResponse) GetUnderManagement() bool

GetUnderManagement returns the UnderManagement field value if set, zero value otherwise.

func (*ModelsSSHServersServerResponse) GetUnderManagementOk ¶

func (o *ModelsSSHServersServerResponse) GetUnderManagementOk() (*bool, bool)

GetUnderManagementOk returns a tuple with the UnderManagement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerResponse) HasAgentId ¶

func (o *ModelsSSHServersServerResponse) HasAgentId() bool

HasAgentId returns a boolean if a field has been set.

func (*ModelsSSHServersServerResponse) HasGroupName ¶

func (o *ModelsSSHServersServerResponse) HasGroupName() bool

HasGroupName returns a boolean if a field has been set.

func (*ModelsSSHServersServerResponse) HasHostname ¶

func (o *ModelsSSHServersServerResponse) HasHostname() bool

HasHostname returns a boolean if a field has been set.

func (*ModelsSSHServersServerResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsSSHServersServerResponse) HasOrchestrator ¶

func (o *ModelsSSHServersServerResponse) HasOrchestrator() bool

HasOrchestrator returns a boolean if a field has been set.

func (*ModelsSSHServersServerResponse) HasOwner ¶

func (o *ModelsSSHServersServerResponse) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*ModelsSSHServersServerResponse) HasPort ¶

func (o *ModelsSSHServersServerResponse) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*ModelsSSHServersServerResponse) HasServerGroupId ¶

func (o *ModelsSSHServersServerResponse) HasServerGroupId() bool

HasServerGroupId returns a boolean if a field has been set.

func (*ModelsSSHServersServerResponse) HasSyncSchedule ¶

func (o *ModelsSSHServersServerResponse) HasSyncSchedule() bool

HasSyncSchedule returns a boolean if a field has been set.

func (*ModelsSSHServersServerResponse) HasUnderManagement ¶

func (o *ModelsSSHServersServerResponse) HasUnderManagement() bool

HasUnderManagement returns a boolean if a field has been set.

func (ModelsSSHServersServerResponse) MarshalJSON ¶

func (o ModelsSSHServersServerResponse) MarshalJSON() ([]byte, error)

func (*ModelsSSHServersServerResponse) SetAgentId ¶

func (o *ModelsSSHServersServerResponse) SetAgentId(v string)

SetAgentId gets a reference to the given string and assigns it to the AgentId field.

func (*ModelsSSHServersServerResponse) SetGroupName ¶

func (o *ModelsSSHServersServerResponse) SetGroupName(v string)

SetGroupName gets a reference to the given string and assigns it to the GroupName field.

func (*ModelsSSHServersServerResponse) SetHostname ¶

func (o *ModelsSSHServersServerResponse) SetHostname(v string)

SetHostname gets a reference to the given string and assigns it to the Hostname field.

func (*ModelsSSHServersServerResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsSSHServersServerResponse) SetOrchestrator ¶

func (o *ModelsSSHServersServerResponse) SetOrchestrator(v string)

SetOrchestrator gets a reference to the given string and assigns it to the Orchestrator field.

func (*ModelsSSHServersServerResponse) SetOwner ¶

SetOwner gets a reference to the given ModelsSSHUsersSshUserResponse and assigns it to the Owner field.

func (*ModelsSSHServersServerResponse) SetPort ¶

func (o *ModelsSSHServersServerResponse) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*ModelsSSHServersServerResponse) SetServerGroupId ¶

func (o *ModelsSSHServersServerResponse) SetServerGroupId(v string)

SetServerGroupId gets a reference to the given string and assigns it to the ServerGroupId field.

func (*ModelsSSHServersServerResponse) SetSyncSchedule ¶

SetSyncSchedule gets a reference to the given KeyfactorCommonSchedulingKeyfactorSchedule and assigns it to the SyncSchedule field.

func (*ModelsSSHServersServerResponse) SetUnderManagement ¶

func (o *ModelsSSHServersServerResponse) SetUnderManagement(v bool)

SetUnderManagement gets a reference to the given bool and assigns it to the UnderManagement field.

func (ModelsSSHServersServerResponse) ToMap ¶

func (o ModelsSSHServersServerResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHServersServerResponse) UnmarshalJSON ¶

func (o *ModelsSSHServersServerResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHServersServerUpdateRequest ¶

type ModelsSSHServersServerUpdateRequest struct {
	Id                   int32  `json:"Id"`
	UnderManagement      *bool  `json:"UnderManagement,omitempty"`
	Port                 *int32 `json:"Port,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHServersServerUpdateRequest struct for ModelsSSHServersServerUpdateRequest

func NewModelsSSHServersServerUpdateRequest ¶

func NewModelsSSHServersServerUpdateRequest(id int32) *ModelsSSHServersServerUpdateRequest

NewModelsSSHServersServerUpdateRequest instantiates a new ModelsSSHServersServerUpdateRequest 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 NewModelsSSHServersServerUpdateRequestWithDefaults ¶

func NewModelsSSHServersServerUpdateRequestWithDefaults() *ModelsSSHServersServerUpdateRequest

NewModelsSSHServersServerUpdateRequestWithDefaults instantiates a new ModelsSSHServersServerUpdateRequest 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 (*ModelsSSHServersServerUpdateRequest) GetId ¶

GetId returns the Id field value

func (*ModelsSSHServersServerUpdateRequest) GetIdOk ¶

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ModelsSSHServersServerUpdateRequest) GetPort ¶

GetPort returns the Port field value if set, zero value otherwise.

func (*ModelsSSHServersServerUpdateRequest) GetPortOk ¶

func (o *ModelsSSHServersServerUpdateRequest) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerUpdateRequest) GetUnderManagement ¶

func (o *ModelsSSHServersServerUpdateRequest) GetUnderManagement() bool

GetUnderManagement returns the UnderManagement field value if set, zero value otherwise.

func (*ModelsSSHServersServerUpdateRequest) GetUnderManagementOk ¶

func (o *ModelsSSHServersServerUpdateRequest) GetUnderManagementOk() (*bool, bool)

GetUnderManagementOk returns a tuple with the UnderManagement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServersServerUpdateRequest) HasPort ¶

HasPort returns a boolean if a field has been set.

func (*ModelsSSHServersServerUpdateRequest) HasUnderManagement ¶

func (o *ModelsSSHServersServerUpdateRequest) HasUnderManagement() bool

HasUnderManagement returns a boolean if a field has been set.

func (ModelsSSHServersServerUpdateRequest) MarshalJSON ¶

func (o ModelsSSHServersServerUpdateRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSHServersServerUpdateRequest) SetId ¶

SetId sets field value

func (*ModelsSSHServersServerUpdateRequest) SetPort ¶

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*ModelsSSHServersServerUpdateRequest) SetUnderManagement ¶

func (o *ModelsSSHServersServerUpdateRequest) SetUnderManagement(v bool)

SetUnderManagement gets a reference to the given bool and assigns it to the UnderManagement field.

func (ModelsSSHServersServerUpdateRequest) ToMap ¶

func (o ModelsSSHServersServerUpdateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHServersServerUpdateRequest) UnmarshalJSON ¶

func (o *ModelsSSHServersServerUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHServiceAccountsServiceAccountCreationRequest ¶

type ModelsSSHServiceAccountsServiceAccountCreationRequest struct {
	KeyGenerationRequest ModelsSSHKeysKeyGenerationRequest                         `json:"KeyGenerationRequest"`
	User                 ModelsSSHServiceAccountsServiceAccountUserCreationRequest `json:"User"`
	ClientHostname       string                                                    `json:"ClientHostname"`
	ServerGroupId        string                                                    `json:"ServerGroupId"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHServiceAccountsServiceAccountCreationRequest struct for ModelsSSHServiceAccountsServiceAccountCreationRequest

func NewModelsSSHServiceAccountsServiceAccountCreationRequest ¶

func NewModelsSSHServiceAccountsServiceAccountCreationRequest(keyGenerationRequest ModelsSSHKeysKeyGenerationRequest, user ModelsSSHServiceAccountsServiceAccountUserCreationRequest, clientHostname string, serverGroupId string) *ModelsSSHServiceAccountsServiceAccountCreationRequest

NewModelsSSHServiceAccountsServiceAccountCreationRequest instantiates a new ModelsSSHServiceAccountsServiceAccountCreationRequest 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 NewModelsSSHServiceAccountsServiceAccountCreationRequestWithDefaults ¶

func NewModelsSSHServiceAccountsServiceAccountCreationRequestWithDefaults() *ModelsSSHServiceAccountsServiceAccountCreationRequest

NewModelsSSHServiceAccountsServiceAccountCreationRequestWithDefaults instantiates a new ModelsSSHServiceAccountsServiceAccountCreationRequest 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 (*ModelsSSHServiceAccountsServiceAccountCreationRequest) GetClientHostname ¶

GetClientHostname returns the ClientHostname field value

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) GetClientHostnameOk ¶

GetClientHostnameOk returns a tuple with the ClientHostname field value and a boolean to check if the value has been set.

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) GetKeyGenerationRequest ¶

GetKeyGenerationRequest returns the KeyGenerationRequest field value

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) GetKeyGenerationRequestOk ¶

GetKeyGenerationRequestOk returns a tuple with the KeyGenerationRequest field value and a boolean to check if the value has been set.

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) GetServerGroupId ¶

GetServerGroupId returns the ServerGroupId field value

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) GetServerGroupIdOk ¶

GetServerGroupIdOk returns a tuple with the ServerGroupId field value and a boolean to check if the value has been set.

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) GetUser ¶

GetUser returns the User field value

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) GetUserOk ¶

GetUserOk returns a tuple with the User field value and a boolean to check if the value has been set.

func (ModelsSSHServiceAccountsServiceAccountCreationRequest) MarshalJSON ¶

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) SetClientHostname ¶

SetClientHostname sets field value

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) SetKeyGenerationRequest ¶

SetKeyGenerationRequest sets field value

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) SetServerGroupId ¶

SetServerGroupId sets field value

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) SetUser ¶

SetUser sets field value

func (ModelsSSHServiceAccountsServiceAccountCreationRequest) ToMap ¶

func (*ModelsSSHServiceAccountsServiceAccountCreationRequest) UnmarshalJSON ¶

func (o *ModelsSSHServiceAccountsServiceAccountCreationRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHServiceAccountsServiceAccountResponse ¶

type ModelsSSHServiceAccountsServiceAccountResponse struct {
	Id                   *int32                                    `json:"Id,omitempty"`
	ClientHostname       *string                                   `json:"ClientHostname,omitempty"`
	ServerGroup          *ModelsSSHServerGroupsServerGroupResponse `json:"ServerGroup,omitempty"`
	User                 *ModelsSSHUsersSshUserResponse            `json:"User,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHServiceAccountsServiceAccountResponse struct for ModelsSSHServiceAccountsServiceAccountResponse

func NewModelsSSHServiceAccountsServiceAccountResponse ¶

func NewModelsSSHServiceAccountsServiceAccountResponse() *ModelsSSHServiceAccountsServiceAccountResponse

NewModelsSSHServiceAccountsServiceAccountResponse instantiates a new ModelsSSHServiceAccountsServiceAccountResponse 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 NewModelsSSHServiceAccountsServiceAccountResponseWithDefaults ¶

func NewModelsSSHServiceAccountsServiceAccountResponseWithDefaults() *ModelsSSHServiceAccountsServiceAccountResponse

NewModelsSSHServiceAccountsServiceAccountResponseWithDefaults instantiates a new ModelsSSHServiceAccountsServiceAccountResponse 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 (*ModelsSSHServiceAccountsServiceAccountResponse) GetClientHostname ¶

GetClientHostname returns the ClientHostname field value if set, zero value otherwise.

func (*ModelsSSHServiceAccountsServiceAccountResponse) GetClientHostnameOk ¶

func (o *ModelsSSHServiceAccountsServiceAccountResponse) GetClientHostnameOk() (*string, bool)

GetClientHostnameOk returns a tuple with the ClientHostname field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServiceAccountsServiceAccountResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsSSHServiceAccountsServiceAccountResponse) GetIdOk ¶

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 (*ModelsSSHServiceAccountsServiceAccountResponse) GetServerGroup ¶

GetServerGroup returns the ServerGroup field value if set, zero value otherwise.

func (*ModelsSSHServiceAccountsServiceAccountResponse) GetServerGroupOk ¶

GetServerGroupOk returns a tuple with the ServerGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServiceAccountsServiceAccountResponse) GetUser ¶

GetUser returns the User field value if set, zero value otherwise.

func (*ModelsSSHServiceAccountsServiceAccountResponse) GetUserOk ¶

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServiceAccountsServiceAccountResponse) HasClientHostname ¶

HasClientHostname returns a boolean if a field has been set.

func (*ModelsSSHServiceAccountsServiceAccountResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsSSHServiceAccountsServiceAccountResponse) HasServerGroup ¶

HasServerGroup returns a boolean if a field has been set.

func (*ModelsSSHServiceAccountsServiceAccountResponse) HasUser ¶

HasUser returns a boolean if a field has been set.

func (ModelsSSHServiceAccountsServiceAccountResponse) MarshalJSON ¶

func (*ModelsSSHServiceAccountsServiceAccountResponse) SetClientHostname ¶

SetClientHostname gets a reference to the given string and assigns it to the ClientHostname field.

func (*ModelsSSHServiceAccountsServiceAccountResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsSSHServiceAccountsServiceAccountResponse) SetServerGroup ¶

SetServerGroup gets a reference to the given ModelsSSHServerGroupsServerGroupResponse and assigns it to the ServerGroup field.

func (*ModelsSSHServiceAccountsServiceAccountResponse) SetUser ¶

SetUser gets a reference to the given ModelsSSHUsersSshUserResponse and assigns it to the User field.

func (ModelsSSHServiceAccountsServiceAccountResponse) ToMap ¶

func (o ModelsSSHServiceAccountsServiceAccountResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHServiceAccountsServiceAccountResponse) UnmarshalJSON ¶

func (o *ModelsSSHServiceAccountsServiceAccountResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHServiceAccountsServiceAccountUpdateRequest ¶

type ModelsSSHServiceAccountsServiceAccountUpdateRequest struct {
	KeyUpdateRequest     ModelsSSHKeysKeyUpdateRequest `json:"KeyUpdateRequest"`
	Id                   int32                         `json:"Id"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHServiceAccountsServiceAccountUpdateRequest struct for ModelsSSHServiceAccountsServiceAccountUpdateRequest

func NewModelsSSHServiceAccountsServiceAccountUpdateRequest ¶

func NewModelsSSHServiceAccountsServiceAccountUpdateRequest(keyUpdateRequest ModelsSSHKeysKeyUpdateRequest, id int32) *ModelsSSHServiceAccountsServiceAccountUpdateRequest

NewModelsSSHServiceAccountsServiceAccountUpdateRequest instantiates a new ModelsSSHServiceAccountsServiceAccountUpdateRequest 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 NewModelsSSHServiceAccountsServiceAccountUpdateRequestWithDefaults ¶

func NewModelsSSHServiceAccountsServiceAccountUpdateRequestWithDefaults() *ModelsSSHServiceAccountsServiceAccountUpdateRequest

NewModelsSSHServiceAccountsServiceAccountUpdateRequestWithDefaults instantiates a new ModelsSSHServiceAccountsServiceAccountUpdateRequest 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 (*ModelsSSHServiceAccountsServiceAccountUpdateRequest) GetId ¶

GetId returns the Id field value

func (*ModelsSSHServiceAccountsServiceAccountUpdateRequest) GetIdOk ¶

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ModelsSSHServiceAccountsServiceAccountUpdateRequest) GetKeyUpdateRequest ¶

GetKeyUpdateRequest returns the KeyUpdateRequest field value

func (*ModelsSSHServiceAccountsServiceAccountUpdateRequest) GetKeyUpdateRequestOk ¶

GetKeyUpdateRequestOk returns a tuple with the KeyUpdateRequest field value and a boolean to check if the value has been set.

func (ModelsSSHServiceAccountsServiceAccountUpdateRequest) MarshalJSON ¶

func (*ModelsSSHServiceAccountsServiceAccountUpdateRequest) SetId ¶

SetId sets field value

func (*ModelsSSHServiceAccountsServiceAccountUpdateRequest) SetKeyUpdateRequest ¶

SetKeyUpdateRequest sets field value

func (ModelsSSHServiceAccountsServiceAccountUpdateRequest) ToMap ¶

func (*ModelsSSHServiceAccountsServiceAccountUpdateRequest) UnmarshalJSON ¶

func (o *ModelsSSHServiceAccountsServiceAccountUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHServiceAccountsServiceAccountUserCreationRequest ¶

type ModelsSSHServiceAccountsServiceAccountUserCreationRequest struct {
	Username             string  `json:"Username"`
	LogonIds             []int32 `json:"LogonIds,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHServiceAccountsServiceAccountUserCreationRequest struct for ModelsSSHServiceAccountsServiceAccountUserCreationRequest

func NewModelsSSHServiceAccountsServiceAccountUserCreationRequest ¶

func NewModelsSSHServiceAccountsServiceAccountUserCreationRequest(username string) *ModelsSSHServiceAccountsServiceAccountUserCreationRequest

NewModelsSSHServiceAccountsServiceAccountUserCreationRequest instantiates a new ModelsSSHServiceAccountsServiceAccountUserCreationRequest 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 NewModelsSSHServiceAccountsServiceAccountUserCreationRequestWithDefaults ¶

func NewModelsSSHServiceAccountsServiceAccountUserCreationRequestWithDefaults() *ModelsSSHServiceAccountsServiceAccountUserCreationRequest

NewModelsSSHServiceAccountsServiceAccountUserCreationRequestWithDefaults instantiates a new ModelsSSHServiceAccountsServiceAccountUserCreationRequest 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 (*ModelsSSHServiceAccountsServiceAccountUserCreationRequest) GetLogonIds ¶

GetLogonIds returns the LogonIds field value if set, zero value otherwise.

func (*ModelsSSHServiceAccountsServiceAccountUserCreationRequest) GetLogonIdsOk ¶

GetLogonIdsOk returns a tuple with the LogonIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHServiceAccountsServiceAccountUserCreationRequest) GetUsername ¶

GetUsername returns the Username field value

func (*ModelsSSHServiceAccountsServiceAccountUserCreationRequest) GetUsernameOk ¶

GetUsernameOk returns a tuple with the Username field value and a boolean to check if the value has been set.

func (*ModelsSSHServiceAccountsServiceAccountUserCreationRequest) HasLogonIds ¶

HasLogonIds returns a boolean if a field has been set.

func (ModelsSSHServiceAccountsServiceAccountUserCreationRequest) MarshalJSON ¶

func (*ModelsSSHServiceAccountsServiceAccountUserCreationRequest) SetLogonIds ¶

SetLogonIds gets a reference to the given []int32 and assigns it to the LogonIds field.

func (*ModelsSSHServiceAccountsServiceAccountUserCreationRequest) SetUsername ¶

SetUsername sets field value

func (ModelsSSHServiceAccountsServiceAccountUserCreationRequest) ToMap ¶

func (*ModelsSSHServiceAccountsServiceAccountUserCreationRequest) UnmarshalJSON ¶

type ModelsSSHUsersSshUserAccessResponse ¶

type ModelsSSHUsersSshUserAccessResponse struct {
	Id                   *int32                         `json:"Id,omitempty"`
	Key                  *ModelsSSHKeysKeyResponse      `json:"Key,omitempty"`
	Username             *string                        `json:"Username,omitempty"`
	Access               []ModelsSSHLogonsLogonResponse `json:"Access,omitempty"`
	IsGroup              *bool                          `json:"IsGroup,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHUsersSshUserAccessResponse struct for ModelsSSHUsersSshUserAccessResponse

func NewModelsSSHUsersSshUserAccessResponse ¶

func NewModelsSSHUsersSshUserAccessResponse() *ModelsSSHUsersSshUserAccessResponse

NewModelsSSHUsersSshUserAccessResponse instantiates a new ModelsSSHUsersSshUserAccessResponse 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 NewModelsSSHUsersSshUserAccessResponseWithDefaults ¶

func NewModelsSSHUsersSshUserAccessResponseWithDefaults() *ModelsSSHUsersSshUserAccessResponse

NewModelsSSHUsersSshUserAccessResponseWithDefaults instantiates a new ModelsSSHUsersSshUserAccessResponse 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 (*ModelsSSHUsersSshUserAccessResponse) GetAccess ¶

GetAccess returns the Access field value if set, zero value otherwise.

func (*ModelsSSHUsersSshUserAccessResponse) GetAccessOk ¶

GetAccessOk returns a tuple with the Access field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHUsersSshUserAccessResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsSSHUsersSshUserAccessResponse) GetIdOk ¶

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 (*ModelsSSHUsersSshUserAccessResponse) GetIsGroup ¶

func (o *ModelsSSHUsersSshUserAccessResponse) GetIsGroup() bool

GetIsGroup returns the IsGroup field value if set, zero value otherwise.

func (*ModelsSSHUsersSshUserAccessResponse) GetIsGroupOk ¶

func (o *ModelsSSHUsersSshUserAccessResponse) GetIsGroupOk() (*bool, bool)

GetIsGroupOk returns a tuple with the IsGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHUsersSshUserAccessResponse) GetKey ¶

GetKey returns the Key field value if set, zero value otherwise.

func (*ModelsSSHUsersSshUserAccessResponse) GetKeyOk ¶

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHUsersSshUserAccessResponse) GetUsername ¶

GetUsername returns the Username field value if set, zero value otherwise.

func (*ModelsSSHUsersSshUserAccessResponse) GetUsernameOk ¶

func (o *ModelsSSHUsersSshUserAccessResponse) 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 (*ModelsSSHUsersSshUserAccessResponse) HasAccess ¶

HasAccess returns a boolean if a field has been set.

func (*ModelsSSHUsersSshUserAccessResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsSSHUsersSshUserAccessResponse) HasIsGroup ¶

func (o *ModelsSSHUsersSshUserAccessResponse) HasIsGroup() bool

HasIsGroup returns a boolean if a field has been set.

func (*ModelsSSHUsersSshUserAccessResponse) HasKey ¶

HasKey returns a boolean if a field has been set.

func (*ModelsSSHUsersSshUserAccessResponse) HasUsername ¶

func (o *ModelsSSHUsersSshUserAccessResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ModelsSSHUsersSshUserAccessResponse) MarshalJSON ¶

func (o ModelsSSHUsersSshUserAccessResponse) MarshalJSON() ([]byte, error)

func (*ModelsSSHUsersSshUserAccessResponse) SetAccess ¶

SetAccess gets a reference to the given []ModelsSSHLogonsLogonResponse and assigns it to the Access field.

func (*ModelsSSHUsersSshUserAccessResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsSSHUsersSshUserAccessResponse) SetIsGroup ¶

func (o *ModelsSSHUsersSshUserAccessResponse) SetIsGroup(v bool)

SetIsGroup gets a reference to the given bool and assigns it to the IsGroup field.

func (*ModelsSSHUsersSshUserAccessResponse) SetKey ¶

SetKey gets a reference to the given ModelsSSHKeysKeyResponse and assigns it to the Key field.

func (*ModelsSSHUsersSshUserAccessResponse) SetUsername ¶

func (o *ModelsSSHUsersSshUserAccessResponse) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ModelsSSHUsersSshUserAccessResponse) ToMap ¶

func (o ModelsSSHUsersSshUserAccessResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHUsersSshUserAccessResponse) UnmarshalJSON ¶

func (o *ModelsSSHUsersSshUserAccessResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHUsersSshUserCreationRequest ¶

type ModelsSSHUsersSshUserCreationRequest struct {
	Username             string  `json:"Username"`
	LogonIds             []int32 `json:"LogonIds,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHUsersSshUserCreationRequest struct for ModelsSSHUsersSshUserCreationRequest

func NewModelsSSHUsersSshUserCreationRequest ¶

func NewModelsSSHUsersSshUserCreationRequest(username string) *ModelsSSHUsersSshUserCreationRequest

NewModelsSSHUsersSshUserCreationRequest instantiates a new ModelsSSHUsersSshUserCreationRequest 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 NewModelsSSHUsersSshUserCreationRequestWithDefaults ¶

func NewModelsSSHUsersSshUserCreationRequestWithDefaults() *ModelsSSHUsersSshUserCreationRequest

NewModelsSSHUsersSshUserCreationRequestWithDefaults instantiates a new ModelsSSHUsersSshUserCreationRequest 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 (*ModelsSSHUsersSshUserCreationRequest) GetLogonIds ¶

func (o *ModelsSSHUsersSshUserCreationRequest) GetLogonIds() []int32

GetLogonIds returns the LogonIds field value if set, zero value otherwise.

func (*ModelsSSHUsersSshUserCreationRequest) GetLogonIdsOk ¶

func (o *ModelsSSHUsersSshUserCreationRequest) GetLogonIdsOk() ([]int32, bool)

GetLogonIdsOk returns a tuple with the LogonIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHUsersSshUserCreationRequest) GetUsername ¶

GetUsername returns the Username field value

func (*ModelsSSHUsersSshUserCreationRequest) GetUsernameOk ¶

func (o *ModelsSSHUsersSshUserCreationRequest) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value and a boolean to check if the value has been set.

func (*ModelsSSHUsersSshUserCreationRequest) HasLogonIds ¶

func (o *ModelsSSHUsersSshUserCreationRequest) HasLogonIds() bool

HasLogonIds returns a boolean if a field has been set.

func (ModelsSSHUsersSshUserCreationRequest) MarshalJSON ¶

func (o ModelsSSHUsersSshUserCreationRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSHUsersSshUserCreationRequest) SetLogonIds ¶

func (o *ModelsSSHUsersSshUserCreationRequest) SetLogonIds(v []int32)

SetLogonIds gets a reference to the given []int32 and assigns it to the LogonIds field.

func (*ModelsSSHUsersSshUserCreationRequest) SetUsername ¶

func (o *ModelsSSHUsersSshUserCreationRequest) SetUsername(v string)

SetUsername sets field value

func (ModelsSSHUsersSshUserCreationRequest) ToMap ¶

func (o ModelsSSHUsersSshUserCreationRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHUsersSshUserCreationRequest) UnmarshalJSON ¶

func (o *ModelsSSHUsersSshUserCreationRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHUsersSshUserResponse ¶

type ModelsSSHUsersSshUserResponse struct {
	Id                   *int32                    `json:"Id,omitempty"`
	Key                  *ModelsSSHKeysKeyResponse `json:"Key,omitempty"`
	Username             *string                   `json:"Username,omitempty"`
	LogonIds             []int32                   `json:"LogonIds,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHUsersSshUserResponse struct for ModelsSSHUsersSshUserResponse

func NewModelsSSHUsersSshUserResponse ¶

func NewModelsSSHUsersSshUserResponse() *ModelsSSHUsersSshUserResponse

NewModelsSSHUsersSshUserResponse instantiates a new ModelsSSHUsersSshUserResponse 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 NewModelsSSHUsersSshUserResponseWithDefaults ¶

func NewModelsSSHUsersSshUserResponseWithDefaults() *ModelsSSHUsersSshUserResponse

NewModelsSSHUsersSshUserResponseWithDefaults instantiates a new ModelsSSHUsersSshUserResponse 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 (*ModelsSSHUsersSshUserResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsSSHUsersSshUserResponse) GetIdOk ¶

func (o *ModelsSSHUsersSshUserResponse) 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 (*ModelsSSHUsersSshUserResponse) GetKey ¶

GetKey returns the Key field value if set, zero value otherwise.

func (*ModelsSSHUsersSshUserResponse) GetKeyOk ¶

GetKeyOk returns a tuple with the Key field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHUsersSshUserResponse) GetLogonIds ¶

func (o *ModelsSSHUsersSshUserResponse) GetLogonIds() []int32

GetLogonIds returns the LogonIds field value if set, zero value otherwise.

func (*ModelsSSHUsersSshUserResponse) GetLogonIdsOk ¶

func (o *ModelsSSHUsersSshUserResponse) GetLogonIdsOk() ([]int32, bool)

GetLogonIdsOk returns a tuple with the LogonIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHUsersSshUserResponse) GetUsername ¶

func (o *ModelsSSHUsersSshUserResponse) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*ModelsSSHUsersSshUserResponse) GetUsernameOk ¶

func (o *ModelsSSHUsersSshUserResponse) 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 (*ModelsSSHUsersSshUserResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsSSHUsersSshUserResponse) HasKey ¶

func (o *ModelsSSHUsersSshUserResponse) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*ModelsSSHUsersSshUserResponse) HasLogonIds ¶

func (o *ModelsSSHUsersSshUserResponse) HasLogonIds() bool

HasLogonIds returns a boolean if a field has been set.

func (*ModelsSSHUsersSshUserResponse) HasUsername ¶

func (o *ModelsSSHUsersSshUserResponse) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (ModelsSSHUsersSshUserResponse) MarshalJSON ¶

func (o ModelsSSHUsersSshUserResponse) MarshalJSON() ([]byte, error)

func (*ModelsSSHUsersSshUserResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsSSHUsersSshUserResponse) SetKey ¶

SetKey gets a reference to the given ModelsSSHKeysKeyResponse and assigns it to the Key field.

func (*ModelsSSHUsersSshUserResponse) SetLogonIds ¶

func (o *ModelsSSHUsersSshUserResponse) SetLogonIds(v []int32)

SetLogonIds gets a reference to the given []int32 and assigns it to the LogonIds field.

func (*ModelsSSHUsersSshUserResponse) SetUsername ¶

func (o *ModelsSSHUsersSshUserResponse) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

func (ModelsSSHUsersSshUserResponse) ToMap ¶

func (o ModelsSSHUsersSshUserResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSHUsersSshUserResponse) UnmarshalJSON ¶

func (o *ModelsSSHUsersSshUserResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSHUsersSshUserUpdateRequest ¶

type ModelsSSHUsersSshUserUpdateRequest struct {
	Id                   int32   `json:"Id"`
	LogonIds             []int32 `json:"LogonIds,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSHUsersSshUserUpdateRequest struct for ModelsSSHUsersSshUserUpdateRequest

func NewModelsSSHUsersSshUserUpdateRequest ¶

func NewModelsSSHUsersSshUserUpdateRequest(id int32) *ModelsSSHUsersSshUserUpdateRequest

NewModelsSSHUsersSshUserUpdateRequest instantiates a new ModelsSSHUsersSshUserUpdateRequest 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 NewModelsSSHUsersSshUserUpdateRequestWithDefaults ¶

func NewModelsSSHUsersSshUserUpdateRequestWithDefaults() *ModelsSSHUsersSshUserUpdateRequest

NewModelsSSHUsersSshUserUpdateRequestWithDefaults instantiates a new ModelsSSHUsersSshUserUpdateRequest 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 (*ModelsSSHUsersSshUserUpdateRequest) GetId ¶

GetId returns the Id field value

func (*ModelsSSHUsersSshUserUpdateRequest) GetIdOk ¶

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ModelsSSHUsersSshUserUpdateRequest) GetLogonIds ¶

func (o *ModelsSSHUsersSshUserUpdateRequest) GetLogonIds() []int32

GetLogonIds returns the LogonIds field value if set, zero value otherwise.

func (*ModelsSSHUsersSshUserUpdateRequest) GetLogonIdsOk ¶

func (o *ModelsSSHUsersSshUserUpdateRequest) GetLogonIdsOk() ([]int32, bool)

GetLogonIdsOk returns a tuple with the LogonIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSHUsersSshUserUpdateRequest) HasLogonIds ¶

func (o *ModelsSSHUsersSshUserUpdateRequest) HasLogonIds() bool

HasLogonIds returns a boolean if a field has been set.

func (ModelsSSHUsersSshUserUpdateRequest) MarshalJSON ¶

func (o ModelsSSHUsersSshUserUpdateRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSHUsersSshUserUpdateRequest) SetId ¶

SetId sets field value

func (*ModelsSSHUsersSshUserUpdateRequest) SetLogonIds ¶

func (o *ModelsSSHUsersSshUserUpdateRequest) SetLogonIds(v []int32)

SetLogonIds gets a reference to the given []int32 and assigns it to the LogonIds field.

func (ModelsSSHUsersSshUserUpdateRequest) ToMap ¶

func (o ModelsSSHUsersSshUserUpdateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSHUsersSshUserUpdateRequest) UnmarshalJSON ¶

func (o *ModelsSSHUsersSshUserUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSLDisplayScanJobPart ¶

type ModelsSSLDisplayScanJobPart struct {
	ScanJobPartId        *string    `json:"ScanJobPartId,omitempty"`
	Agent                *string    `json:"Agent,omitempty"`
	Status               *int32     `json:"Status,omitempty"`
	StartTime            *time.Time `json:"StartTime,omitempty"`
	EndTime              *time.Time `json:"EndTime,omitempty"`
	EndpointCount        *int32     `json:"EndpointCount,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSLDisplayScanJobPart struct for ModelsSSLDisplayScanJobPart

func NewModelsSSLDisplayScanJobPart ¶

func NewModelsSSLDisplayScanJobPart() *ModelsSSLDisplayScanJobPart

NewModelsSSLDisplayScanJobPart instantiates a new ModelsSSLDisplayScanJobPart 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 NewModelsSSLDisplayScanJobPartWithDefaults ¶

func NewModelsSSLDisplayScanJobPartWithDefaults() *ModelsSSLDisplayScanJobPart

NewModelsSSLDisplayScanJobPartWithDefaults instantiates a new ModelsSSLDisplayScanJobPart 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 (*ModelsSSLDisplayScanJobPart) GetAgent ¶

func (o *ModelsSSLDisplayScanJobPart) GetAgent() string

GetAgent returns the Agent field value if set, zero value otherwise.

func (*ModelsSSLDisplayScanJobPart) GetAgentOk ¶

func (o *ModelsSSLDisplayScanJobPart) GetAgentOk() (*string, bool)

GetAgentOk returns a tuple with the Agent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLDisplayScanJobPart) GetEndTime ¶

func (o *ModelsSSLDisplayScanJobPart) GetEndTime() time.Time

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*ModelsSSLDisplayScanJobPart) GetEndTimeOk ¶

func (o *ModelsSSLDisplayScanJobPart) GetEndTimeOk() (*time.Time, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLDisplayScanJobPart) GetEndpointCount ¶

func (o *ModelsSSLDisplayScanJobPart) GetEndpointCount() int32

GetEndpointCount returns the EndpointCount field value if set, zero value otherwise.

func (*ModelsSSLDisplayScanJobPart) GetEndpointCountOk ¶

func (o *ModelsSSLDisplayScanJobPart) GetEndpointCountOk() (*int32, bool)

GetEndpointCountOk returns a tuple with the EndpointCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLDisplayScanJobPart) GetScanJobPartId ¶

func (o *ModelsSSLDisplayScanJobPart) GetScanJobPartId() string

GetScanJobPartId returns the ScanJobPartId field value if set, zero value otherwise.

func (*ModelsSSLDisplayScanJobPart) GetScanJobPartIdOk ¶

func (o *ModelsSSLDisplayScanJobPart) GetScanJobPartIdOk() (*string, bool)

GetScanJobPartIdOk returns a tuple with the ScanJobPartId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLDisplayScanJobPart) GetStartTime ¶

func (o *ModelsSSLDisplayScanJobPart) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*ModelsSSLDisplayScanJobPart) GetStartTimeOk ¶

func (o *ModelsSSLDisplayScanJobPart) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLDisplayScanJobPart) GetStatus ¶

func (o *ModelsSSLDisplayScanJobPart) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ModelsSSLDisplayScanJobPart) GetStatusOk ¶

func (o *ModelsSSLDisplayScanJobPart) 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 (*ModelsSSLDisplayScanJobPart) HasAgent ¶

func (o *ModelsSSLDisplayScanJobPart) HasAgent() bool

HasAgent returns a boolean if a field has been set.

func (*ModelsSSLDisplayScanJobPart) HasEndTime ¶

func (o *ModelsSSLDisplayScanJobPart) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*ModelsSSLDisplayScanJobPart) HasEndpointCount ¶

func (o *ModelsSSLDisplayScanJobPart) HasEndpointCount() bool

HasEndpointCount returns a boolean if a field has been set.

func (*ModelsSSLDisplayScanJobPart) HasScanJobPartId ¶

func (o *ModelsSSLDisplayScanJobPart) HasScanJobPartId() bool

HasScanJobPartId returns a boolean if a field has been set.

func (*ModelsSSLDisplayScanJobPart) HasStartTime ¶

func (o *ModelsSSLDisplayScanJobPart) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*ModelsSSLDisplayScanJobPart) HasStatus ¶

func (o *ModelsSSLDisplayScanJobPart) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ModelsSSLDisplayScanJobPart) MarshalJSON ¶

func (o ModelsSSLDisplayScanJobPart) MarshalJSON() ([]byte, error)

func (*ModelsSSLDisplayScanJobPart) SetAgent ¶

func (o *ModelsSSLDisplayScanJobPart) SetAgent(v string)

SetAgent gets a reference to the given string and assigns it to the Agent field.

func (*ModelsSSLDisplayScanJobPart) SetEndTime ¶

func (o *ModelsSSLDisplayScanJobPart) SetEndTime(v time.Time)

SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field.

func (*ModelsSSLDisplayScanJobPart) SetEndpointCount ¶

func (o *ModelsSSLDisplayScanJobPart) SetEndpointCount(v int32)

SetEndpointCount gets a reference to the given int32 and assigns it to the EndpointCount field.

func (*ModelsSSLDisplayScanJobPart) SetScanJobPartId ¶

func (o *ModelsSSLDisplayScanJobPart) SetScanJobPartId(v string)

SetScanJobPartId gets a reference to the given string and assigns it to the ScanJobPartId field.

func (*ModelsSSLDisplayScanJobPart) SetStartTime ¶

func (o *ModelsSSLDisplayScanJobPart) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (*ModelsSSLDisplayScanJobPart) SetStatus ¶

func (o *ModelsSSLDisplayScanJobPart) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (ModelsSSLDisplayScanJobPart) ToMap ¶

func (o ModelsSSLDisplayScanJobPart) ToMap() (map[string]interface{}, error)

func (*ModelsSSLDisplayScanJobPart) UnmarshalJSON ¶

func (o *ModelsSSLDisplayScanJobPart) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSLEndpoint ¶

type ModelsSSLEndpoint struct {
	EndpointId           *string `json:"EndpointId,omitempty"`
	NetworkId            *string `json:"NetworkId,omitempty"`
	LastHistoryId        *string `json:"LastHistoryId,omitempty"`
	IpAddressBytes       *string `json:"IpAddressBytes,omitempty"`
	Port                 *int32  `json:"Port,omitempty"`
	SNIName              *string `json:"SNIName,omitempty"`
	EnableMonitor        *bool   `json:"EnableMonitor,omitempty"`
	Reviewed             *bool   `json:"Reviewed,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSLEndpoint struct for ModelsSSLEndpoint

func NewModelsSSLEndpoint ¶

func NewModelsSSLEndpoint() *ModelsSSLEndpoint

NewModelsSSLEndpoint instantiates a new ModelsSSLEndpoint 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 NewModelsSSLEndpointWithDefaults ¶

func NewModelsSSLEndpointWithDefaults() *ModelsSSLEndpoint

NewModelsSSLEndpointWithDefaults instantiates a new ModelsSSLEndpoint 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 (*ModelsSSLEndpoint) GetEnableMonitor ¶

func (o *ModelsSSLEndpoint) GetEnableMonitor() bool

GetEnableMonitor returns the EnableMonitor field value if set, zero value otherwise.

func (*ModelsSSLEndpoint) GetEnableMonitorOk ¶

func (o *ModelsSSLEndpoint) GetEnableMonitorOk() (*bool, bool)

GetEnableMonitorOk returns a tuple with the EnableMonitor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpoint) GetEndpointId ¶

func (o *ModelsSSLEndpoint) GetEndpointId() string

GetEndpointId returns the EndpointId field value if set, zero value otherwise.

func (*ModelsSSLEndpoint) GetEndpointIdOk ¶

func (o *ModelsSSLEndpoint) GetEndpointIdOk() (*string, bool)

GetEndpointIdOk returns a tuple with the EndpointId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpoint) GetIpAddressBytes ¶

func (o *ModelsSSLEndpoint) GetIpAddressBytes() string

GetIpAddressBytes returns the IpAddressBytes field value if set, zero value otherwise.

func (*ModelsSSLEndpoint) GetIpAddressBytesOk ¶

func (o *ModelsSSLEndpoint) GetIpAddressBytesOk() (*string, bool)

GetIpAddressBytesOk returns a tuple with the IpAddressBytes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpoint) GetLastHistoryId ¶

func (o *ModelsSSLEndpoint) GetLastHistoryId() string

GetLastHistoryId returns the LastHistoryId field value if set, zero value otherwise.

func (*ModelsSSLEndpoint) GetLastHistoryIdOk ¶

func (o *ModelsSSLEndpoint) GetLastHistoryIdOk() (*string, bool)

GetLastHistoryIdOk returns a tuple with the LastHistoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpoint) GetNetworkId ¶

func (o *ModelsSSLEndpoint) GetNetworkId() string

GetNetworkId returns the NetworkId field value if set, zero value otherwise.

func (*ModelsSSLEndpoint) GetNetworkIdOk ¶

func (o *ModelsSSLEndpoint) GetNetworkIdOk() (*string, bool)

GetNetworkIdOk returns a tuple with the NetworkId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpoint) GetPort ¶

func (o *ModelsSSLEndpoint) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*ModelsSSLEndpoint) GetPortOk ¶

func (o *ModelsSSLEndpoint) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpoint) GetReviewed ¶

func (o *ModelsSSLEndpoint) GetReviewed() bool

GetReviewed returns the Reviewed field value if set, zero value otherwise.

func (*ModelsSSLEndpoint) GetReviewedOk ¶

func (o *ModelsSSLEndpoint) GetReviewedOk() (*bool, bool)

GetReviewedOk returns a tuple with the Reviewed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpoint) GetSNIName ¶

func (o *ModelsSSLEndpoint) GetSNIName() string

GetSNIName returns the SNIName field value if set, zero value otherwise.

func (*ModelsSSLEndpoint) GetSNINameOk ¶

func (o *ModelsSSLEndpoint) GetSNINameOk() (*string, bool)

GetSNINameOk returns a tuple with the SNIName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpoint) HasEnableMonitor ¶

func (o *ModelsSSLEndpoint) HasEnableMonitor() bool

HasEnableMonitor returns a boolean if a field has been set.

func (*ModelsSSLEndpoint) HasEndpointId ¶

func (o *ModelsSSLEndpoint) HasEndpointId() bool

HasEndpointId returns a boolean if a field has been set.

func (*ModelsSSLEndpoint) HasIpAddressBytes ¶

func (o *ModelsSSLEndpoint) HasIpAddressBytes() bool

HasIpAddressBytes returns a boolean if a field has been set.

func (*ModelsSSLEndpoint) HasLastHistoryId ¶

func (o *ModelsSSLEndpoint) HasLastHistoryId() bool

HasLastHistoryId returns a boolean if a field has been set.

func (*ModelsSSLEndpoint) HasNetworkId ¶

func (o *ModelsSSLEndpoint) HasNetworkId() bool

HasNetworkId returns a boolean if a field has been set.

func (*ModelsSSLEndpoint) HasPort ¶

func (o *ModelsSSLEndpoint) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*ModelsSSLEndpoint) HasReviewed ¶

func (o *ModelsSSLEndpoint) HasReviewed() bool

HasReviewed returns a boolean if a field has been set.

func (*ModelsSSLEndpoint) HasSNIName ¶

func (o *ModelsSSLEndpoint) HasSNIName() bool

HasSNIName returns a boolean if a field has been set.

func (ModelsSSLEndpoint) MarshalJSON ¶

func (o ModelsSSLEndpoint) MarshalJSON() ([]byte, error)

func (*ModelsSSLEndpoint) SetEnableMonitor ¶

func (o *ModelsSSLEndpoint) SetEnableMonitor(v bool)

SetEnableMonitor gets a reference to the given bool and assigns it to the EnableMonitor field.

func (*ModelsSSLEndpoint) SetEndpointId ¶

func (o *ModelsSSLEndpoint) SetEndpointId(v string)

SetEndpointId gets a reference to the given string and assigns it to the EndpointId field.

func (*ModelsSSLEndpoint) SetIpAddressBytes ¶

func (o *ModelsSSLEndpoint) SetIpAddressBytes(v string)

SetIpAddressBytes gets a reference to the given string and assigns it to the IpAddressBytes field.

func (*ModelsSSLEndpoint) SetLastHistoryId ¶

func (o *ModelsSSLEndpoint) SetLastHistoryId(v string)

SetLastHistoryId gets a reference to the given string and assigns it to the LastHistoryId field.

func (*ModelsSSLEndpoint) SetNetworkId ¶

func (o *ModelsSSLEndpoint) SetNetworkId(v string)

SetNetworkId gets a reference to the given string and assigns it to the NetworkId field.

func (*ModelsSSLEndpoint) SetPort ¶

func (o *ModelsSSLEndpoint) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*ModelsSSLEndpoint) SetReviewed ¶

func (o *ModelsSSLEndpoint) SetReviewed(v bool)

SetReviewed gets a reference to the given bool and assigns it to the Reviewed field.

func (*ModelsSSLEndpoint) SetSNIName ¶

func (o *ModelsSSLEndpoint) SetSNIName(v string)

SetSNIName gets a reference to the given string and assigns it to the SNIName field.

func (ModelsSSLEndpoint) ToMap ¶

func (o ModelsSSLEndpoint) ToMap() (map[string]interface{}, error)

func (*ModelsSSLEndpoint) UnmarshalJSON ¶

func (o *ModelsSSLEndpoint) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSLEndpointHistoryResponse ¶

type ModelsSSLEndpointHistoryResponse struct {
	HistoryId            *string                                            `json:"HistoryId,omitempty"`
	EndpointId           *string                                            `json:"EndpointId,omitempty"`
	AuditId              *int64                                             `json:"AuditId,omitempty"`
	Timestamp            *time.Time                                         `json:"Timestamp,omitempty"`
	Status               *int32                                             `json:"Status,omitempty"`
	JobType              *int32                                             `json:"JobType,omitempty"`
	ProbeType            *int32                                             `json:"ProbeType,omitempty"`
	ReverseDNS           *string                                            `json:"ReverseDNS,omitempty"`
	HistoryCertificates  []ModelsSSLEndpointHistoryResponseCertificateModel `json:"HistoryCertificates,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSLEndpointHistoryResponse struct for ModelsSSLEndpointHistoryResponse

func NewModelsSSLEndpointHistoryResponse ¶

func NewModelsSSLEndpointHistoryResponse() *ModelsSSLEndpointHistoryResponse

NewModelsSSLEndpointHistoryResponse instantiates a new ModelsSSLEndpointHistoryResponse 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 NewModelsSSLEndpointHistoryResponseWithDefaults ¶

func NewModelsSSLEndpointHistoryResponseWithDefaults() *ModelsSSLEndpointHistoryResponse

NewModelsSSLEndpointHistoryResponseWithDefaults instantiates a new ModelsSSLEndpointHistoryResponse 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 (*ModelsSSLEndpointHistoryResponse) GetAuditId ¶

func (o *ModelsSSLEndpointHistoryResponse) GetAuditId() int64

GetAuditId returns the AuditId field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponse) GetAuditIdOk ¶

func (o *ModelsSSLEndpointHistoryResponse) GetAuditIdOk() (*int64, bool)

GetAuditIdOk returns a tuple with the AuditId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponse) GetEndpointId ¶

func (o *ModelsSSLEndpointHistoryResponse) GetEndpointId() string

GetEndpointId returns the EndpointId field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponse) GetEndpointIdOk ¶

func (o *ModelsSSLEndpointHistoryResponse) GetEndpointIdOk() (*string, bool)

GetEndpointIdOk returns a tuple with the EndpointId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponse) GetHistoryCertificates ¶

GetHistoryCertificates returns the HistoryCertificates field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponse) GetHistoryCertificatesOk ¶

GetHistoryCertificatesOk returns a tuple with the HistoryCertificates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponse) GetHistoryId ¶

func (o *ModelsSSLEndpointHistoryResponse) GetHistoryId() string

GetHistoryId returns the HistoryId field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponse) GetHistoryIdOk ¶

func (o *ModelsSSLEndpointHistoryResponse) GetHistoryIdOk() (*string, bool)

GetHistoryIdOk returns a tuple with the HistoryId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponse) GetJobType ¶

func (o *ModelsSSLEndpointHistoryResponse) GetJobType() int32

GetJobType returns the JobType field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponse) GetJobTypeOk ¶

func (o *ModelsSSLEndpointHistoryResponse) GetJobTypeOk() (*int32, bool)

GetJobTypeOk returns a tuple with the JobType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponse) GetProbeType ¶

func (o *ModelsSSLEndpointHistoryResponse) GetProbeType() int32

GetProbeType returns the ProbeType field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponse) GetProbeTypeOk ¶

func (o *ModelsSSLEndpointHistoryResponse) GetProbeTypeOk() (*int32, bool)

GetProbeTypeOk returns a tuple with the ProbeType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponse) GetReverseDNS ¶

func (o *ModelsSSLEndpointHistoryResponse) GetReverseDNS() string

GetReverseDNS returns the ReverseDNS field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponse) GetReverseDNSOk ¶

func (o *ModelsSSLEndpointHistoryResponse) GetReverseDNSOk() (*string, bool)

GetReverseDNSOk returns a tuple with the ReverseDNS field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponse) GetStatus ¶

func (o *ModelsSSLEndpointHistoryResponse) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponse) GetStatusOk ¶

func (o *ModelsSSLEndpointHistoryResponse) 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 (*ModelsSSLEndpointHistoryResponse) GetTimestamp ¶

func (o *ModelsSSLEndpointHistoryResponse) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponse) GetTimestampOk ¶

func (o *ModelsSSLEndpointHistoryResponse) GetTimestampOk() (*time.Time, bool)

GetTimestampOk returns a tuple with the Timestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponse) HasAuditId ¶

func (o *ModelsSSLEndpointHistoryResponse) HasAuditId() bool

HasAuditId returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponse) HasEndpointId ¶

func (o *ModelsSSLEndpointHistoryResponse) HasEndpointId() bool

HasEndpointId returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponse) HasHistoryCertificates ¶

func (o *ModelsSSLEndpointHistoryResponse) HasHistoryCertificates() bool

HasHistoryCertificates returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponse) HasHistoryId ¶

func (o *ModelsSSLEndpointHistoryResponse) HasHistoryId() bool

HasHistoryId returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponse) HasJobType ¶

func (o *ModelsSSLEndpointHistoryResponse) HasJobType() bool

HasJobType returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponse) HasProbeType ¶

func (o *ModelsSSLEndpointHistoryResponse) HasProbeType() bool

HasProbeType returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponse) HasReverseDNS ¶

func (o *ModelsSSLEndpointHistoryResponse) HasReverseDNS() bool

HasReverseDNS returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponse) HasStatus ¶

func (o *ModelsSSLEndpointHistoryResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponse) HasTimestamp ¶

func (o *ModelsSSLEndpointHistoryResponse) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (ModelsSSLEndpointHistoryResponse) MarshalJSON ¶

func (o ModelsSSLEndpointHistoryResponse) MarshalJSON() ([]byte, error)

func (*ModelsSSLEndpointHistoryResponse) SetAuditId ¶

func (o *ModelsSSLEndpointHistoryResponse) SetAuditId(v int64)

SetAuditId gets a reference to the given int64 and assigns it to the AuditId field.

func (*ModelsSSLEndpointHistoryResponse) SetEndpointId ¶

func (o *ModelsSSLEndpointHistoryResponse) SetEndpointId(v string)

SetEndpointId gets a reference to the given string and assigns it to the EndpointId field.

func (*ModelsSSLEndpointHistoryResponse) SetHistoryCertificates ¶

SetHistoryCertificates gets a reference to the given []ModelsSSLEndpointHistoryResponseCertificateModel and assigns it to the HistoryCertificates field.

func (*ModelsSSLEndpointHistoryResponse) SetHistoryId ¶

func (o *ModelsSSLEndpointHistoryResponse) SetHistoryId(v string)

SetHistoryId gets a reference to the given string and assigns it to the HistoryId field.

func (*ModelsSSLEndpointHistoryResponse) SetJobType ¶

func (o *ModelsSSLEndpointHistoryResponse) SetJobType(v int32)

SetJobType gets a reference to the given int32 and assigns it to the JobType field.

func (*ModelsSSLEndpointHistoryResponse) SetProbeType ¶

func (o *ModelsSSLEndpointHistoryResponse) SetProbeType(v int32)

SetProbeType gets a reference to the given int32 and assigns it to the ProbeType field.

func (*ModelsSSLEndpointHistoryResponse) SetReverseDNS ¶

func (o *ModelsSSLEndpointHistoryResponse) SetReverseDNS(v string)

SetReverseDNS gets a reference to the given string and assigns it to the ReverseDNS field.

func (*ModelsSSLEndpointHistoryResponse) SetStatus ¶

func (o *ModelsSSLEndpointHistoryResponse) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (*ModelsSSLEndpointHistoryResponse) SetTimestamp ¶

func (o *ModelsSSLEndpointHistoryResponse) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

func (ModelsSSLEndpointHistoryResponse) ToMap ¶

func (o ModelsSSLEndpointHistoryResponse) ToMap() (map[string]interface{}, error)

func (*ModelsSSLEndpointHistoryResponse) UnmarshalJSON ¶

func (o *ModelsSSLEndpointHistoryResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSLEndpointHistoryResponseCertificateModel ¶

type ModelsSSLEndpointHistoryResponseCertificateModel struct {
	Id                     *int32                         `json:"Id,omitempty"`
	IssuedDN               NullableString                 `json:"IssuedDN,omitempty"`
	SerialNumber           *string                        `json:"SerialNumber,omitempty"`
	NotBefore              *time.Time                     `json:"NotBefore,omitempty"`
	NotAfter               *time.Time                     `json:"NotAfter,omitempty"`
	SigningAlgorithm       *string                        `json:"SigningAlgorithm,omitempty"`
	Thumbprint             *string                        `json:"Thumbprint,omitempty"`
	IssuerDN               NullableString                 `json:"IssuerDN,omitempty"`
	IssuedCN               NullableString                 `json:"IssuedCN,omitempty"`
	SubjectAltNameElements []ModelsSubjectAlternativeName `json:"SubjectAltNameElements,omitempty"`
	AdditionalProperties   map[string]interface{}
}

ModelsSSLEndpointHistoryResponseCertificateModel struct for ModelsSSLEndpointHistoryResponseCertificateModel

func NewModelsSSLEndpointHistoryResponseCertificateModel ¶

func NewModelsSSLEndpointHistoryResponseCertificateModel() *ModelsSSLEndpointHistoryResponseCertificateModel

NewModelsSSLEndpointHistoryResponseCertificateModel instantiates a new ModelsSSLEndpointHistoryResponseCertificateModel 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 NewModelsSSLEndpointHistoryResponseCertificateModelWithDefaults ¶

func NewModelsSSLEndpointHistoryResponseCertificateModelWithDefaults() *ModelsSSLEndpointHistoryResponseCertificateModel

NewModelsSSLEndpointHistoryResponseCertificateModelWithDefaults instantiates a new ModelsSSLEndpointHistoryResponseCertificateModel 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 (*ModelsSSLEndpointHistoryResponseCertificateModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetIdOk ¶

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 (*ModelsSSLEndpointHistoryResponseCertificateModel) GetIssuedCN ¶

GetIssuedCN returns the IssuedCN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetIssuedCNOk ¶

GetIssuedCNOk returns a tuple with the IssuedCN field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetIssuedDN ¶

GetIssuedDN returns the IssuedDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetIssuedDNOk ¶

GetIssuedDNOk returns a tuple with the IssuedDN field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetIssuerDN ¶

GetIssuerDN returns the IssuerDN field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetIssuerDNOk ¶

GetIssuerDNOk returns a tuple with the IssuerDN field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetNotAfter ¶

GetNotAfter returns the NotAfter field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetNotAfterOk ¶

GetNotAfterOk returns a tuple with the NotAfter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetNotBefore ¶

GetNotBefore returns the NotBefore field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetNotBeforeOk ¶

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 (*ModelsSSLEndpointHistoryResponseCertificateModel) GetSerialNumber ¶

GetSerialNumber returns the SerialNumber field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetSerialNumberOk ¶

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 (*ModelsSSLEndpointHistoryResponseCertificateModel) GetSigningAlgorithm ¶

GetSigningAlgorithm returns the SigningAlgorithm field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetSigningAlgorithmOk ¶

func (o *ModelsSSLEndpointHistoryResponseCertificateModel) GetSigningAlgorithmOk() (*string, bool)

GetSigningAlgorithmOk returns a tuple with the SigningAlgorithm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetSubjectAltNameElements ¶

GetSubjectAltNameElements returns the SubjectAltNameElements field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetSubjectAltNameElementsOk ¶

GetSubjectAltNameElementsOk returns a tuple with the SubjectAltNameElements field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetThumbprint ¶

GetThumbprint returns the Thumbprint field value if set, zero value otherwise.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) GetThumbprintOk ¶

GetThumbprintOk returns a tuple with the Thumbprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) HasIssuedCN ¶

HasIssuedCN returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) HasIssuedDN ¶

HasIssuedDN returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) HasIssuerDN ¶

HasIssuerDN returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) HasNotAfter ¶

HasNotAfter returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) HasNotBefore ¶

HasNotBefore returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) HasSerialNumber ¶

HasSerialNumber returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) HasSigningAlgorithm ¶

func (o *ModelsSSLEndpointHistoryResponseCertificateModel) HasSigningAlgorithm() bool

HasSigningAlgorithm returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) HasSubjectAltNameElements ¶

func (o *ModelsSSLEndpointHistoryResponseCertificateModel) HasSubjectAltNameElements() bool

HasSubjectAltNameElements returns a boolean if a field has been set.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) HasThumbprint ¶

HasThumbprint returns a boolean if a field has been set.

func (ModelsSSLEndpointHistoryResponseCertificateModel) MarshalJSON ¶

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetIssuedCN ¶

SetIssuedCN gets a reference to the given NullableString and assigns it to the IssuedCN field.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetIssuedCNNil ¶

SetIssuedCNNil sets the value for IssuedCN to be an explicit nil

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetIssuedDN ¶

SetIssuedDN gets a reference to the given NullableString and assigns it to the IssuedDN field.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetIssuedDNNil ¶

SetIssuedDNNil sets the value for IssuedDN to be an explicit nil

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetIssuerDN ¶

SetIssuerDN gets a reference to the given NullableString and assigns it to the IssuerDN field.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetIssuerDNNil ¶

SetIssuerDNNil sets the value for IssuerDN to be an explicit nil

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetNotAfter ¶

SetNotAfter gets a reference to the given time.Time and assigns it to the NotAfter field.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetNotBefore ¶

SetNotBefore gets a reference to the given time.Time and assigns it to the NotBefore field.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetSerialNumber ¶

SetSerialNumber gets a reference to the given string and assigns it to the SerialNumber field.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetSigningAlgorithm ¶

func (o *ModelsSSLEndpointHistoryResponseCertificateModel) SetSigningAlgorithm(v string)

SetSigningAlgorithm gets a reference to the given string and assigns it to the SigningAlgorithm field.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetSubjectAltNameElements ¶

SetSubjectAltNameElements gets a reference to the given []ModelsSubjectAlternativeName and assigns it to the SubjectAltNameElements field.

func (*ModelsSSLEndpointHistoryResponseCertificateModel) SetThumbprint ¶

SetThumbprint gets a reference to the given string and assigns it to the Thumbprint field.

func (ModelsSSLEndpointHistoryResponseCertificateModel) ToMap ¶

func (o ModelsSSLEndpointHistoryResponseCertificateModel) ToMap() (map[string]interface{}, error)

func (*ModelsSSLEndpointHistoryResponseCertificateModel) UnmarshalJSON ¶

func (o *ModelsSSLEndpointHistoryResponseCertificateModel) UnmarshalJSON(bytes []byte) (err error)

func (*ModelsSSLEndpointHistoryResponseCertificateModel) UnsetIssuedCN ¶

UnsetIssuedCN ensures that no value is present for IssuedCN, not even an explicit nil

func (*ModelsSSLEndpointHistoryResponseCertificateModel) UnsetIssuedDN ¶

UnsetIssuedDN ensures that no value is present for IssuedDN, not even an explicit nil

func (*ModelsSSLEndpointHistoryResponseCertificateModel) UnsetIssuerDN ¶

UnsetIssuerDN ensures that no value is present for IssuerDN, not even an explicit nil

type ModelsSSLEndpointStatusRequest ¶

type ModelsSSLEndpointStatusRequest struct {
	Id                   string `json:"Id"`
	Status               bool   `json:"Status"`
	AdditionalProperties map[string]interface{}
}

ModelsSSLEndpointStatusRequest struct for ModelsSSLEndpointStatusRequest

func NewModelsSSLEndpointStatusRequest ¶

func NewModelsSSLEndpointStatusRequest(id string, status bool) *ModelsSSLEndpointStatusRequest

NewModelsSSLEndpointStatusRequest instantiates a new ModelsSSLEndpointStatusRequest 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 NewModelsSSLEndpointStatusRequestWithDefaults ¶

func NewModelsSSLEndpointStatusRequestWithDefaults() *ModelsSSLEndpointStatusRequest

NewModelsSSLEndpointStatusRequestWithDefaults instantiates a new ModelsSSLEndpointStatusRequest 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 (*ModelsSSLEndpointStatusRequest) GetId ¶

GetId returns the Id field value

func (*ModelsSSLEndpointStatusRequest) GetIdOk ¶

func (o *ModelsSSLEndpointStatusRequest) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ModelsSSLEndpointStatusRequest) GetStatus ¶

func (o *ModelsSSLEndpointStatusRequest) GetStatus() bool

GetStatus returns the Status field value

func (*ModelsSSLEndpointStatusRequest) GetStatusOk ¶

func (o *ModelsSSLEndpointStatusRequest) GetStatusOk() (*bool, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (ModelsSSLEndpointStatusRequest) MarshalJSON ¶

func (o ModelsSSLEndpointStatusRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSLEndpointStatusRequest) SetId ¶

SetId sets field value

func (*ModelsSSLEndpointStatusRequest) SetStatus ¶

func (o *ModelsSSLEndpointStatusRequest) SetStatus(v bool)

SetStatus sets field value

func (ModelsSSLEndpointStatusRequest) ToMap ¶

func (o ModelsSSLEndpointStatusRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSLEndpointStatusRequest) UnmarshalJSON ¶

func (o *ModelsSSLEndpointStatusRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSLImmediateSslScanRequest ¶

type ModelsSSLImmediateSslScanRequest struct {
	Discovery            bool `json:"Discovery"`
	Monitoring           bool `json:"Monitoring"`
	AdditionalProperties map[string]interface{}
}

ModelsSSLImmediateSslScanRequest struct for ModelsSSLImmediateSslScanRequest

func NewModelsSSLImmediateSslScanRequest ¶

func NewModelsSSLImmediateSslScanRequest(discovery bool, monitoring bool) *ModelsSSLImmediateSslScanRequest

NewModelsSSLImmediateSslScanRequest instantiates a new ModelsSSLImmediateSslScanRequest 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 NewModelsSSLImmediateSslScanRequestWithDefaults ¶

func NewModelsSSLImmediateSslScanRequestWithDefaults() *ModelsSSLImmediateSslScanRequest

NewModelsSSLImmediateSslScanRequestWithDefaults instantiates a new ModelsSSLImmediateSslScanRequest 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 (*ModelsSSLImmediateSslScanRequest) GetDiscovery ¶

func (o *ModelsSSLImmediateSslScanRequest) GetDiscovery() bool

GetDiscovery returns the Discovery field value

func (*ModelsSSLImmediateSslScanRequest) GetDiscoveryOk ¶

func (o *ModelsSSLImmediateSslScanRequest) GetDiscoveryOk() (*bool, bool)

GetDiscoveryOk returns a tuple with the Discovery field value and a boolean to check if the value has been set.

func (*ModelsSSLImmediateSslScanRequest) GetMonitoring ¶

func (o *ModelsSSLImmediateSslScanRequest) GetMonitoring() bool

GetMonitoring returns the Monitoring field value

func (*ModelsSSLImmediateSslScanRequest) GetMonitoringOk ¶

func (o *ModelsSSLImmediateSslScanRequest) GetMonitoringOk() (*bool, bool)

GetMonitoringOk returns a tuple with the Monitoring field value and a boolean to check if the value has been set.

func (ModelsSSLImmediateSslScanRequest) MarshalJSON ¶

func (o ModelsSSLImmediateSslScanRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSLImmediateSslScanRequest) SetDiscovery ¶

func (o *ModelsSSLImmediateSslScanRequest) SetDiscovery(v bool)

SetDiscovery sets field value

func (*ModelsSSLImmediateSslScanRequest) SetMonitoring ¶

func (o *ModelsSSLImmediateSslScanRequest) SetMonitoring(v bool)

SetMonitoring sets field value

func (ModelsSSLImmediateSslScanRequest) ToMap ¶

func (o ModelsSSLImmediateSslScanRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSLImmediateSslScanRequest) UnmarshalJSON ¶

func (o *ModelsSSLImmediateSslScanRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSLNetworkDefinition ¶

type ModelsSSLNetworkDefinition struct {
	ItemType             *int32  `json:"ItemType,omitempty"`
	Value                *string `json:"Value,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSLNetworkDefinition struct for ModelsSSLNetworkDefinition

func NewModelsSSLNetworkDefinition ¶

func NewModelsSSLNetworkDefinition() *ModelsSSLNetworkDefinition

NewModelsSSLNetworkDefinition instantiates a new ModelsSSLNetworkDefinition 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 NewModelsSSLNetworkDefinitionWithDefaults ¶

func NewModelsSSLNetworkDefinitionWithDefaults() *ModelsSSLNetworkDefinition

NewModelsSSLNetworkDefinitionWithDefaults instantiates a new ModelsSSLNetworkDefinition 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 (*ModelsSSLNetworkDefinition) GetItemType ¶

func (o *ModelsSSLNetworkDefinition) GetItemType() int32

GetItemType returns the ItemType field value if set, zero value otherwise.

func (*ModelsSSLNetworkDefinition) GetItemTypeOk ¶

func (o *ModelsSSLNetworkDefinition) GetItemTypeOk() (*int32, bool)

GetItemTypeOk returns a tuple with the ItemType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLNetworkDefinition) GetValue ¶

func (o *ModelsSSLNetworkDefinition) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ModelsSSLNetworkDefinition) GetValueOk ¶

func (o *ModelsSSLNetworkDefinition) 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 (*ModelsSSLNetworkDefinition) HasItemType ¶

func (o *ModelsSSLNetworkDefinition) HasItemType() bool

HasItemType returns a boolean if a field has been set.

func (*ModelsSSLNetworkDefinition) HasValue ¶

func (o *ModelsSSLNetworkDefinition) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ModelsSSLNetworkDefinition) MarshalJSON ¶

func (o ModelsSSLNetworkDefinition) MarshalJSON() ([]byte, error)

func (*ModelsSSLNetworkDefinition) SetItemType ¶

func (o *ModelsSSLNetworkDefinition) SetItemType(v int32)

SetItemType gets a reference to the given int32 and assigns it to the ItemType field.

func (*ModelsSSLNetworkDefinition) SetValue ¶

func (o *ModelsSSLNetworkDefinition) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ModelsSSLNetworkDefinition) ToMap ¶

func (o ModelsSSLNetworkDefinition) ToMap() (map[string]interface{}, error)

func (*ModelsSSLNetworkDefinition) UnmarshalJSON ¶

func (o *ModelsSSLNetworkDefinition) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSLNetworkRangesRequest ¶

type ModelsSSLNetworkRangesRequest struct {
	NetworkId            string   `json:"NetworkId"`
	Ranges               []string `json:"Ranges"`
	AdditionalProperties map[string]interface{}
}

ModelsSSLNetworkRangesRequest struct for ModelsSSLNetworkRangesRequest

func NewModelsSSLNetworkRangesRequest ¶

func NewModelsSSLNetworkRangesRequest(networkId string, ranges []string) *ModelsSSLNetworkRangesRequest

NewModelsSSLNetworkRangesRequest instantiates a new ModelsSSLNetworkRangesRequest 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 NewModelsSSLNetworkRangesRequestWithDefaults ¶

func NewModelsSSLNetworkRangesRequestWithDefaults() *ModelsSSLNetworkRangesRequest

NewModelsSSLNetworkRangesRequestWithDefaults instantiates a new ModelsSSLNetworkRangesRequest 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 (*ModelsSSLNetworkRangesRequest) GetNetworkId ¶

func (o *ModelsSSLNetworkRangesRequest) GetNetworkId() string

GetNetworkId returns the NetworkId field value

func (*ModelsSSLNetworkRangesRequest) GetNetworkIdOk ¶

func (o *ModelsSSLNetworkRangesRequest) GetNetworkIdOk() (*string, bool)

GetNetworkIdOk returns a tuple with the NetworkId field value and a boolean to check if the value has been set.

func (*ModelsSSLNetworkRangesRequest) GetRanges ¶

func (o *ModelsSSLNetworkRangesRequest) GetRanges() []string

GetRanges returns the Ranges field value

func (*ModelsSSLNetworkRangesRequest) GetRangesOk ¶

func (o *ModelsSSLNetworkRangesRequest) GetRangesOk() ([]string, bool)

GetRangesOk returns a tuple with the Ranges field value and a boolean to check if the value has been set.

func (ModelsSSLNetworkRangesRequest) MarshalJSON ¶

func (o ModelsSSLNetworkRangesRequest) MarshalJSON() ([]byte, error)

func (*ModelsSSLNetworkRangesRequest) SetNetworkId ¶

func (o *ModelsSSLNetworkRangesRequest) SetNetworkId(v string)

SetNetworkId sets field value

func (*ModelsSSLNetworkRangesRequest) SetRanges ¶

func (o *ModelsSSLNetworkRangesRequest) SetRanges(v []string)

SetRanges sets field value

func (ModelsSSLNetworkRangesRequest) ToMap ¶

func (o ModelsSSLNetworkRangesRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSSLNetworkRangesRequest) UnmarshalJSON ¶

func (o *ModelsSSLNetworkRangesRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSLScanJobPart ¶

type ModelsSSLScanJobPart struct {
	ScanJobPartId                 *string                          `json:"ScanJobPartId,omitempty"`
	LogicalScanJobId              *string                          `json:"LogicalScanJobId,omitempty"`
	AgentJobId                    *string                          `json:"AgentJobId,omitempty"`
	EstimatedEndpointCount        *int32                           `json:"EstimatedEndpointCount,omitempty"`
	Status                        *int32                           `json:"Status,omitempty"`
	StatTotalEndpointCount        *int32                           `json:"StatTotalEndpointCount,omitempty"`
	StatTimedOutConnectingCount   *int32                           `json:"StatTimedOutConnectingCount,omitempty"`
	StatConnectionRefusedCount    *int32                           `json:"StatConnectionRefusedCount,omitempty"`
	StatTimedOutDownloadingCount  *int32                           `json:"StatTimedOutDownloadingCount,omitempty"`
	StatExceptionDownloadingCount *int32                           `json:"StatExceptionDownloadingCount,omitempty"`
	StatNotSslCount               *int32                           `json:"StatNotSslCount,omitempty"`
	StatBadSslHandshakeCount      *int32                           `json:"StatBadSslHandshakeCount,omitempty"`
	StatCertificateFoundCount     *int32                           `json:"StatCertificateFoundCount,omitempty"`
	StatNoCertificateCount        *int32                           `json:"StatNoCertificateCount,omitempty"`
	ScanJobPartDefinitions        []ModelsSSLScanJobPartDefinition `json:"ScanJobPartDefinitions,omitempty"`
	StartTime                     *time.Time                       `json:"StartTime,omitempty"`
	EndTime                       *time.Time                       `json:"EndTime,omitempty"`
	AdditionalProperties          map[string]interface{}
}

ModelsSSLScanJobPart struct for ModelsSSLScanJobPart

func NewModelsSSLScanJobPart ¶

func NewModelsSSLScanJobPart() *ModelsSSLScanJobPart

NewModelsSSLScanJobPart instantiates a new ModelsSSLScanJobPart 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 NewModelsSSLScanJobPartWithDefaults ¶

func NewModelsSSLScanJobPartWithDefaults() *ModelsSSLScanJobPart

NewModelsSSLScanJobPartWithDefaults instantiates a new ModelsSSLScanJobPart 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 (*ModelsSSLScanJobPart) GetAgentJobId ¶

func (o *ModelsSSLScanJobPart) GetAgentJobId() string

GetAgentJobId returns the AgentJobId field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetAgentJobIdOk ¶

func (o *ModelsSSLScanJobPart) GetAgentJobIdOk() (*string, bool)

GetAgentJobIdOk returns a tuple with the AgentJobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetEndTime ¶

func (o *ModelsSSLScanJobPart) GetEndTime() time.Time

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetEndTimeOk ¶

func (o *ModelsSSLScanJobPart) GetEndTimeOk() (*time.Time, bool)

GetEndTimeOk returns a tuple with the EndTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetEstimatedEndpointCount ¶

func (o *ModelsSSLScanJobPart) GetEstimatedEndpointCount() int32

GetEstimatedEndpointCount returns the EstimatedEndpointCount field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetEstimatedEndpointCountOk ¶

func (o *ModelsSSLScanJobPart) GetEstimatedEndpointCountOk() (*int32, bool)

GetEstimatedEndpointCountOk returns a tuple with the EstimatedEndpointCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetLogicalScanJobId ¶

func (o *ModelsSSLScanJobPart) GetLogicalScanJobId() string

GetLogicalScanJobId returns the LogicalScanJobId field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetLogicalScanJobIdOk ¶

func (o *ModelsSSLScanJobPart) GetLogicalScanJobIdOk() (*string, bool)

GetLogicalScanJobIdOk returns a tuple with the LogicalScanJobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetScanJobPartDefinitions ¶

func (o *ModelsSSLScanJobPart) GetScanJobPartDefinitions() []ModelsSSLScanJobPartDefinition

GetScanJobPartDefinitions returns the ScanJobPartDefinitions field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetScanJobPartDefinitionsOk ¶

func (o *ModelsSSLScanJobPart) GetScanJobPartDefinitionsOk() ([]ModelsSSLScanJobPartDefinition, bool)

GetScanJobPartDefinitionsOk returns a tuple with the ScanJobPartDefinitions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetScanJobPartId ¶

func (o *ModelsSSLScanJobPart) GetScanJobPartId() string

GetScanJobPartId returns the ScanJobPartId field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetScanJobPartIdOk ¶

func (o *ModelsSSLScanJobPart) GetScanJobPartIdOk() (*string, bool)

GetScanJobPartIdOk returns a tuple with the ScanJobPartId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetStartTime ¶

func (o *ModelsSSLScanJobPart) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetStartTimeOk ¶

func (o *ModelsSSLScanJobPart) GetStartTimeOk() (*time.Time, bool)

GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetStatBadSslHandshakeCount ¶

func (o *ModelsSSLScanJobPart) GetStatBadSslHandshakeCount() int32

GetStatBadSslHandshakeCount returns the StatBadSslHandshakeCount field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetStatBadSslHandshakeCountOk ¶

func (o *ModelsSSLScanJobPart) GetStatBadSslHandshakeCountOk() (*int32, bool)

GetStatBadSslHandshakeCountOk returns a tuple with the StatBadSslHandshakeCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetStatCertificateFoundCount ¶

func (o *ModelsSSLScanJobPart) GetStatCertificateFoundCount() int32

GetStatCertificateFoundCount returns the StatCertificateFoundCount field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetStatCertificateFoundCountOk ¶

func (o *ModelsSSLScanJobPart) GetStatCertificateFoundCountOk() (*int32, bool)

GetStatCertificateFoundCountOk returns a tuple with the StatCertificateFoundCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetStatConnectionRefusedCount ¶

func (o *ModelsSSLScanJobPart) GetStatConnectionRefusedCount() int32

GetStatConnectionRefusedCount returns the StatConnectionRefusedCount field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetStatConnectionRefusedCountOk ¶

func (o *ModelsSSLScanJobPart) GetStatConnectionRefusedCountOk() (*int32, bool)

GetStatConnectionRefusedCountOk returns a tuple with the StatConnectionRefusedCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetStatExceptionDownloadingCount ¶

func (o *ModelsSSLScanJobPart) GetStatExceptionDownloadingCount() int32

GetStatExceptionDownloadingCount returns the StatExceptionDownloadingCount field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetStatExceptionDownloadingCountOk ¶

func (o *ModelsSSLScanJobPart) GetStatExceptionDownloadingCountOk() (*int32, bool)

GetStatExceptionDownloadingCountOk returns a tuple with the StatExceptionDownloadingCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetStatNoCertificateCount ¶

func (o *ModelsSSLScanJobPart) GetStatNoCertificateCount() int32

GetStatNoCertificateCount returns the StatNoCertificateCount field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetStatNoCertificateCountOk ¶

func (o *ModelsSSLScanJobPart) GetStatNoCertificateCountOk() (*int32, bool)

GetStatNoCertificateCountOk returns a tuple with the StatNoCertificateCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetStatNotSslCount ¶

func (o *ModelsSSLScanJobPart) GetStatNotSslCount() int32

GetStatNotSslCount returns the StatNotSslCount field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetStatNotSslCountOk ¶

func (o *ModelsSSLScanJobPart) GetStatNotSslCountOk() (*int32, bool)

GetStatNotSslCountOk returns a tuple with the StatNotSslCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetStatTimedOutConnectingCount ¶

func (o *ModelsSSLScanJobPart) GetStatTimedOutConnectingCount() int32

GetStatTimedOutConnectingCount returns the StatTimedOutConnectingCount field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetStatTimedOutConnectingCountOk ¶

func (o *ModelsSSLScanJobPart) GetStatTimedOutConnectingCountOk() (*int32, bool)

GetStatTimedOutConnectingCountOk returns a tuple with the StatTimedOutConnectingCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetStatTimedOutDownloadingCount ¶

func (o *ModelsSSLScanJobPart) GetStatTimedOutDownloadingCount() int32

GetStatTimedOutDownloadingCount returns the StatTimedOutDownloadingCount field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetStatTimedOutDownloadingCountOk ¶

func (o *ModelsSSLScanJobPart) GetStatTimedOutDownloadingCountOk() (*int32, bool)

GetStatTimedOutDownloadingCountOk returns a tuple with the StatTimedOutDownloadingCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetStatTotalEndpointCount ¶

func (o *ModelsSSLScanJobPart) GetStatTotalEndpointCount() int32

GetStatTotalEndpointCount returns the StatTotalEndpointCount field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetStatTotalEndpointCountOk ¶

func (o *ModelsSSLScanJobPart) GetStatTotalEndpointCountOk() (*int32, bool)

GetStatTotalEndpointCountOk returns a tuple with the StatTotalEndpointCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPart) GetStatus ¶

func (o *ModelsSSLScanJobPart) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ModelsSSLScanJobPart) GetStatusOk ¶

func (o *ModelsSSLScanJobPart) 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 (*ModelsSSLScanJobPart) HasAgentJobId ¶

func (o *ModelsSSLScanJobPart) HasAgentJobId() bool

HasAgentJobId returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasEndTime ¶

func (o *ModelsSSLScanJobPart) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasEstimatedEndpointCount ¶

func (o *ModelsSSLScanJobPart) HasEstimatedEndpointCount() bool

HasEstimatedEndpointCount returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasLogicalScanJobId ¶

func (o *ModelsSSLScanJobPart) HasLogicalScanJobId() bool

HasLogicalScanJobId returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasScanJobPartDefinitions ¶

func (o *ModelsSSLScanJobPart) HasScanJobPartDefinitions() bool

HasScanJobPartDefinitions returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasScanJobPartId ¶

func (o *ModelsSSLScanJobPart) HasScanJobPartId() bool

HasScanJobPartId returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasStartTime ¶

func (o *ModelsSSLScanJobPart) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasStatBadSslHandshakeCount ¶

func (o *ModelsSSLScanJobPart) HasStatBadSslHandshakeCount() bool

HasStatBadSslHandshakeCount returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasStatCertificateFoundCount ¶

func (o *ModelsSSLScanJobPart) HasStatCertificateFoundCount() bool

HasStatCertificateFoundCount returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasStatConnectionRefusedCount ¶

func (o *ModelsSSLScanJobPart) HasStatConnectionRefusedCount() bool

HasStatConnectionRefusedCount returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasStatExceptionDownloadingCount ¶

func (o *ModelsSSLScanJobPart) HasStatExceptionDownloadingCount() bool

HasStatExceptionDownloadingCount returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasStatNoCertificateCount ¶

func (o *ModelsSSLScanJobPart) HasStatNoCertificateCount() bool

HasStatNoCertificateCount returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasStatNotSslCount ¶

func (o *ModelsSSLScanJobPart) HasStatNotSslCount() bool

HasStatNotSslCount returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasStatTimedOutConnectingCount ¶

func (o *ModelsSSLScanJobPart) HasStatTimedOutConnectingCount() bool

HasStatTimedOutConnectingCount returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasStatTimedOutDownloadingCount ¶

func (o *ModelsSSLScanJobPart) HasStatTimedOutDownloadingCount() bool

HasStatTimedOutDownloadingCount returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasStatTotalEndpointCount ¶

func (o *ModelsSSLScanJobPart) HasStatTotalEndpointCount() bool

HasStatTotalEndpointCount returns a boolean if a field has been set.

func (*ModelsSSLScanJobPart) HasStatus ¶

func (o *ModelsSSLScanJobPart) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ModelsSSLScanJobPart) MarshalJSON ¶

func (o ModelsSSLScanJobPart) MarshalJSON() ([]byte, error)

func (*ModelsSSLScanJobPart) SetAgentJobId ¶

func (o *ModelsSSLScanJobPart) SetAgentJobId(v string)

SetAgentJobId gets a reference to the given string and assigns it to the AgentJobId field.

func (*ModelsSSLScanJobPart) SetEndTime ¶

func (o *ModelsSSLScanJobPart) SetEndTime(v time.Time)

SetEndTime gets a reference to the given time.Time and assigns it to the EndTime field.

func (*ModelsSSLScanJobPart) SetEstimatedEndpointCount ¶

func (o *ModelsSSLScanJobPart) SetEstimatedEndpointCount(v int32)

SetEstimatedEndpointCount gets a reference to the given int32 and assigns it to the EstimatedEndpointCount field.

func (*ModelsSSLScanJobPart) SetLogicalScanJobId ¶

func (o *ModelsSSLScanJobPart) SetLogicalScanJobId(v string)

SetLogicalScanJobId gets a reference to the given string and assigns it to the LogicalScanJobId field.

func (*ModelsSSLScanJobPart) SetScanJobPartDefinitions ¶

func (o *ModelsSSLScanJobPart) SetScanJobPartDefinitions(v []ModelsSSLScanJobPartDefinition)

SetScanJobPartDefinitions gets a reference to the given []ModelsSSLScanJobPartDefinition and assigns it to the ScanJobPartDefinitions field.

func (*ModelsSSLScanJobPart) SetScanJobPartId ¶

func (o *ModelsSSLScanJobPart) SetScanJobPartId(v string)

SetScanJobPartId gets a reference to the given string and assigns it to the ScanJobPartId field.

func (*ModelsSSLScanJobPart) SetStartTime ¶

func (o *ModelsSSLScanJobPart) SetStartTime(v time.Time)

SetStartTime gets a reference to the given time.Time and assigns it to the StartTime field.

func (*ModelsSSLScanJobPart) SetStatBadSslHandshakeCount ¶

func (o *ModelsSSLScanJobPart) SetStatBadSslHandshakeCount(v int32)

SetStatBadSslHandshakeCount gets a reference to the given int32 and assigns it to the StatBadSslHandshakeCount field.

func (*ModelsSSLScanJobPart) SetStatCertificateFoundCount ¶

func (o *ModelsSSLScanJobPart) SetStatCertificateFoundCount(v int32)

SetStatCertificateFoundCount gets a reference to the given int32 and assigns it to the StatCertificateFoundCount field.

func (*ModelsSSLScanJobPart) SetStatConnectionRefusedCount ¶

func (o *ModelsSSLScanJobPart) SetStatConnectionRefusedCount(v int32)

SetStatConnectionRefusedCount gets a reference to the given int32 and assigns it to the StatConnectionRefusedCount field.

func (*ModelsSSLScanJobPart) SetStatExceptionDownloadingCount ¶

func (o *ModelsSSLScanJobPart) SetStatExceptionDownloadingCount(v int32)

SetStatExceptionDownloadingCount gets a reference to the given int32 and assigns it to the StatExceptionDownloadingCount field.

func (*ModelsSSLScanJobPart) SetStatNoCertificateCount ¶

func (o *ModelsSSLScanJobPart) SetStatNoCertificateCount(v int32)

SetStatNoCertificateCount gets a reference to the given int32 and assigns it to the StatNoCertificateCount field.

func (*ModelsSSLScanJobPart) SetStatNotSslCount ¶

func (o *ModelsSSLScanJobPart) SetStatNotSslCount(v int32)

SetStatNotSslCount gets a reference to the given int32 and assigns it to the StatNotSslCount field.

func (*ModelsSSLScanJobPart) SetStatTimedOutConnectingCount ¶

func (o *ModelsSSLScanJobPart) SetStatTimedOutConnectingCount(v int32)

SetStatTimedOutConnectingCount gets a reference to the given int32 and assigns it to the StatTimedOutConnectingCount field.

func (*ModelsSSLScanJobPart) SetStatTimedOutDownloadingCount ¶

func (o *ModelsSSLScanJobPart) SetStatTimedOutDownloadingCount(v int32)

SetStatTimedOutDownloadingCount gets a reference to the given int32 and assigns it to the StatTimedOutDownloadingCount field.

func (*ModelsSSLScanJobPart) SetStatTotalEndpointCount ¶

func (o *ModelsSSLScanJobPart) SetStatTotalEndpointCount(v int32)

SetStatTotalEndpointCount gets a reference to the given int32 and assigns it to the StatTotalEndpointCount field.

func (*ModelsSSLScanJobPart) SetStatus ¶

func (o *ModelsSSLScanJobPart) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

func (ModelsSSLScanJobPart) ToMap ¶

func (o ModelsSSLScanJobPart) ToMap() (map[string]interface{}, error)

func (*ModelsSSLScanJobPart) UnmarshalJSON ¶

func (o *ModelsSSLScanJobPart) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSLScanJobPartDefinition ¶

type ModelsSSLScanJobPartDefinition struct {
	ItemType             *int32  `json:"ItemType,omitempty"`
	Value                *string `json:"Value,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSLScanJobPartDefinition struct for ModelsSSLScanJobPartDefinition

func NewModelsSSLScanJobPartDefinition ¶

func NewModelsSSLScanJobPartDefinition() *ModelsSSLScanJobPartDefinition

NewModelsSSLScanJobPartDefinition instantiates a new ModelsSSLScanJobPartDefinition 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 NewModelsSSLScanJobPartDefinitionWithDefaults ¶

func NewModelsSSLScanJobPartDefinitionWithDefaults() *ModelsSSLScanJobPartDefinition

NewModelsSSLScanJobPartDefinitionWithDefaults instantiates a new ModelsSSLScanJobPartDefinition 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 (*ModelsSSLScanJobPartDefinition) GetItemType ¶

func (o *ModelsSSLScanJobPartDefinition) GetItemType() int32

GetItemType returns the ItemType field value if set, zero value otherwise.

func (*ModelsSSLScanJobPartDefinition) GetItemTypeOk ¶

func (o *ModelsSSLScanJobPartDefinition) GetItemTypeOk() (*int32, bool)

GetItemTypeOk returns a tuple with the ItemType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLScanJobPartDefinition) GetValue ¶

func (o *ModelsSSLScanJobPartDefinition) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ModelsSSLScanJobPartDefinition) GetValueOk ¶

func (o *ModelsSSLScanJobPartDefinition) 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 (*ModelsSSLScanJobPartDefinition) HasItemType ¶

func (o *ModelsSSLScanJobPartDefinition) HasItemType() bool

HasItemType returns a boolean if a field has been set.

func (*ModelsSSLScanJobPartDefinition) HasValue ¶

func (o *ModelsSSLScanJobPartDefinition) HasValue() bool

HasValue returns a boolean if a field has been set.

func (ModelsSSLScanJobPartDefinition) MarshalJSON ¶

func (o ModelsSSLScanJobPartDefinition) MarshalJSON() ([]byte, error)

func (*ModelsSSLScanJobPartDefinition) SetItemType ¶

func (o *ModelsSSLScanJobPartDefinition) SetItemType(v int32)

SetItemType gets a reference to the given int32 and assigns it to the ItemType field.

func (*ModelsSSLScanJobPartDefinition) SetValue ¶

func (o *ModelsSSLScanJobPartDefinition) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (ModelsSSLScanJobPartDefinition) ToMap ¶

func (o ModelsSSLScanJobPartDefinition) ToMap() (map[string]interface{}, error)

func (*ModelsSSLScanJobPartDefinition) UnmarshalJSON ¶

func (o *ModelsSSLScanJobPartDefinition) UnmarshalJSON(bytes []byte) (err error)

type ModelsSSLSslScanResult ¶

type ModelsSSLSslScanResult struct {
	EndpointId           *string `json:"EndpointId,omitempty"`
	ReverseDNS           *string `json:"ReverseDNS,omitempty"`
	SNIName              *string `json:"SNIName,omitempty"`
	IpAddress            *string `json:"IpAddress,omitempty"`
	Port                 *int32  `json:"Port,omitempty"`
	CertificateFound     *bool   `json:"CertificateFound,omitempty"`
	AgentPoolName        *string `json:"AgentPoolName,omitempty"`
	NetworkName          *string `json:"NetworkName,omitempty"`
	MonitorStatus        *bool   `json:"MonitorStatus,omitempty"`
	CertificateCN        *string `json:"CertificateCN,omitempty"`
	Reviewed             *bool   `json:"Reviewed,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSSLSslScanResult struct for ModelsSSLSslScanResult

func NewModelsSSLSslScanResult ¶

func NewModelsSSLSslScanResult() *ModelsSSLSslScanResult

NewModelsSSLSslScanResult instantiates a new ModelsSSLSslScanResult 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 NewModelsSSLSslScanResultWithDefaults ¶

func NewModelsSSLSslScanResultWithDefaults() *ModelsSSLSslScanResult

NewModelsSSLSslScanResultWithDefaults instantiates a new ModelsSSLSslScanResult 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 (*ModelsSSLSslScanResult) GetAgentPoolName ¶

func (o *ModelsSSLSslScanResult) GetAgentPoolName() string

GetAgentPoolName returns the AgentPoolName field value if set, zero value otherwise.

func (*ModelsSSLSslScanResult) GetAgentPoolNameOk ¶

func (o *ModelsSSLSslScanResult) GetAgentPoolNameOk() (*string, bool)

GetAgentPoolNameOk returns a tuple with the AgentPoolName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLSslScanResult) GetCertificateCN ¶

func (o *ModelsSSLSslScanResult) GetCertificateCN() string

GetCertificateCN returns the CertificateCN field value if set, zero value otherwise.

func (*ModelsSSLSslScanResult) GetCertificateCNOk ¶

func (o *ModelsSSLSslScanResult) GetCertificateCNOk() (*string, bool)

GetCertificateCNOk returns a tuple with the CertificateCN field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLSslScanResult) GetCertificateFound ¶

func (o *ModelsSSLSslScanResult) GetCertificateFound() bool

GetCertificateFound returns the CertificateFound field value if set, zero value otherwise.

func (*ModelsSSLSslScanResult) GetCertificateFoundOk ¶

func (o *ModelsSSLSslScanResult) GetCertificateFoundOk() (*bool, bool)

GetCertificateFoundOk returns a tuple with the CertificateFound field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLSslScanResult) GetEndpointId ¶

func (o *ModelsSSLSslScanResult) GetEndpointId() string

GetEndpointId returns the EndpointId field value if set, zero value otherwise.

func (*ModelsSSLSslScanResult) GetEndpointIdOk ¶

func (o *ModelsSSLSslScanResult) GetEndpointIdOk() (*string, bool)

GetEndpointIdOk returns a tuple with the EndpointId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLSslScanResult) GetIpAddress ¶

func (o *ModelsSSLSslScanResult) GetIpAddress() string

GetIpAddress returns the IpAddress field value if set, zero value otherwise.

func (*ModelsSSLSslScanResult) GetIpAddressOk ¶

func (o *ModelsSSLSslScanResult) GetIpAddressOk() (*string, bool)

GetIpAddressOk returns a tuple with the IpAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLSslScanResult) GetMonitorStatus ¶

func (o *ModelsSSLSslScanResult) GetMonitorStatus() bool

GetMonitorStatus returns the MonitorStatus field value if set, zero value otherwise.

func (*ModelsSSLSslScanResult) GetMonitorStatusOk ¶

func (o *ModelsSSLSslScanResult) GetMonitorStatusOk() (*bool, bool)

GetMonitorStatusOk returns a tuple with the MonitorStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLSslScanResult) GetNetworkName ¶

func (o *ModelsSSLSslScanResult) GetNetworkName() string

GetNetworkName returns the NetworkName field value if set, zero value otherwise.

func (*ModelsSSLSslScanResult) GetNetworkNameOk ¶

func (o *ModelsSSLSslScanResult) GetNetworkNameOk() (*string, bool)

GetNetworkNameOk returns a tuple with the NetworkName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLSslScanResult) GetPort ¶

func (o *ModelsSSLSslScanResult) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*ModelsSSLSslScanResult) GetPortOk ¶

func (o *ModelsSSLSslScanResult) GetPortOk() (*int32, bool)

GetPortOk returns a tuple with the Port field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLSslScanResult) GetReverseDNS ¶

func (o *ModelsSSLSslScanResult) GetReverseDNS() string

GetReverseDNS returns the ReverseDNS field value if set, zero value otherwise.

func (*ModelsSSLSslScanResult) GetReverseDNSOk ¶

func (o *ModelsSSLSslScanResult) GetReverseDNSOk() (*string, bool)

GetReverseDNSOk returns a tuple with the ReverseDNS field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLSslScanResult) GetReviewed ¶

func (o *ModelsSSLSslScanResult) GetReviewed() bool

GetReviewed returns the Reviewed field value if set, zero value otherwise.

func (*ModelsSSLSslScanResult) GetReviewedOk ¶

func (o *ModelsSSLSslScanResult) GetReviewedOk() (*bool, bool)

GetReviewedOk returns a tuple with the Reviewed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLSslScanResult) GetSNIName ¶

func (o *ModelsSSLSslScanResult) GetSNIName() string

GetSNIName returns the SNIName field value if set, zero value otherwise.

func (*ModelsSSLSslScanResult) GetSNINameOk ¶

func (o *ModelsSSLSslScanResult) GetSNINameOk() (*string, bool)

GetSNINameOk returns a tuple with the SNIName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSSLSslScanResult) HasAgentPoolName ¶

func (o *ModelsSSLSslScanResult) HasAgentPoolName() bool

HasAgentPoolName returns a boolean if a field has been set.

func (*ModelsSSLSslScanResult) HasCertificateCN ¶

func (o *ModelsSSLSslScanResult) HasCertificateCN() bool

HasCertificateCN returns a boolean if a field has been set.

func (*ModelsSSLSslScanResult) HasCertificateFound ¶

func (o *ModelsSSLSslScanResult) HasCertificateFound() bool

HasCertificateFound returns a boolean if a field has been set.

func (*ModelsSSLSslScanResult) HasEndpointId ¶

func (o *ModelsSSLSslScanResult) HasEndpointId() bool

HasEndpointId returns a boolean if a field has been set.

func (*ModelsSSLSslScanResult) HasIpAddress ¶

func (o *ModelsSSLSslScanResult) HasIpAddress() bool

HasIpAddress returns a boolean if a field has been set.

func (*ModelsSSLSslScanResult) HasMonitorStatus ¶

func (o *ModelsSSLSslScanResult) HasMonitorStatus() bool

HasMonitorStatus returns a boolean if a field has been set.

func (*ModelsSSLSslScanResult) HasNetworkName ¶

func (o *ModelsSSLSslScanResult) HasNetworkName() bool

HasNetworkName returns a boolean if a field has been set.

func (*ModelsSSLSslScanResult) HasPort ¶

func (o *ModelsSSLSslScanResult) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*ModelsSSLSslScanResult) HasReverseDNS ¶

func (o *ModelsSSLSslScanResult) HasReverseDNS() bool

HasReverseDNS returns a boolean if a field has been set.

func (*ModelsSSLSslScanResult) HasReviewed ¶

func (o *ModelsSSLSslScanResult) HasReviewed() bool

HasReviewed returns a boolean if a field has been set.

func (*ModelsSSLSslScanResult) HasSNIName ¶

func (o *ModelsSSLSslScanResult) HasSNIName() bool

HasSNIName returns a boolean if a field has been set.

func (ModelsSSLSslScanResult) MarshalJSON ¶

func (o ModelsSSLSslScanResult) MarshalJSON() ([]byte, error)

func (*ModelsSSLSslScanResult) SetAgentPoolName ¶

func (o *ModelsSSLSslScanResult) SetAgentPoolName(v string)

SetAgentPoolName gets a reference to the given string and assigns it to the AgentPoolName field.

func (*ModelsSSLSslScanResult) SetCertificateCN ¶

func (o *ModelsSSLSslScanResult) SetCertificateCN(v string)

SetCertificateCN gets a reference to the given string and assigns it to the CertificateCN field.

func (*ModelsSSLSslScanResult) SetCertificateFound ¶

func (o *ModelsSSLSslScanResult) SetCertificateFound(v bool)

SetCertificateFound gets a reference to the given bool and assigns it to the CertificateFound field.

func (*ModelsSSLSslScanResult) SetEndpointId ¶

func (o *ModelsSSLSslScanResult) SetEndpointId(v string)

SetEndpointId gets a reference to the given string and assigns it to the EndpointId field.

func (*ModelsSSLSslScanResult) SetIpAddress ¶

func (o *ModelsSSLSslScanResult) SetIpAddress(v string)

SetIpAddress gets a reference to the given string and assigns it to the IpAddress field.

func (*ModelsSSLSslScanResult) SetMonitorStatus ¶

func (o *ModelsSSLSslScanResult) SetMonitorStatus(v bool)

SetMonitorStatus gets a reference to the given bool and assigns it to the MonitorStatus field.

func (*ModelsSSLSslScanResult) SetNetworkName ¶

func (o *ModelsSSLSslScanResult) SetNetworkName(v string)

SetNetworkName gets a reference to the given string and assigns it to the NetworkName field.

func (*ModelsSSLSslScanResult) SetPort ¶

func (o *ModelsSSLSslScanResult) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*ModelsSSLSslScanResult) SetReverseDNS ¶

func (o *ModelsSSLSslScanResult) SetReverseDNS(v string)

SetReverseDNS gets a reference to the given string and assigns it to the ReverseDNS field.

func (*ModelsSSLSslScanResult) SetReviewed ¶

func (o *ModelsSSLSslScanResult) SetReviewed(v bool)

SetReviewed gets a reference to the given bool and assigns it to the Reviewed field.

func (*ModelsSSLSslScanResult) SetSNIName ¶

func (o *ModelsSSLSslScanResult) SetSNIName(v string)

SetSNIName gets a reference to the given string and assigns it to the SNIName field.

func (ModelsSSLSslScanResult) ToMap ¶

func (o ModelsSSLSslScanResult) ToMap() (map[string]interface{}, error)

func (*ModelsSSLSslScanResult) UnmarshalJSON ¶

func (o *ModelsSSLSslScanResult) UnmarshalJSON(bytes []byte) (err error)

type ModelsSecurityCertificatePermissions ¶

type ModelsSecurityCertificatePermissions struct {
	Roles                []ModelsSecuritySecurityRolesSecurityRoleResponseBase `json:"Roles,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSecurityCertificatePermissions A list of permissions for a given certificate and which security role(s) granted them.

func NewModelsSecurityCertificatePermissions ¶

func NewModelsSecurityCertificatePermissions() *ModelsSecurityCertificatePermissions

NewModelsSecurityCertificatePermissions instantiates a new ModelsSecurityCertificatePermissions 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 NewModelsSecurityCertificatePermissionsWithDefaults ¶

func NewModelsSecurityCertificatePermissionsWithDefaults() *ModelsSecurityCertificatePermissions

NewModelsSecurityCertificatePermissionsWithDefaults instantiates a new ModelsSecurityCertificatePermissions 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 (*ModelsSecurityCertificatePermissions) GetRoles ¶

GetRoles returns the Roles field value if set, zero value otherwise.

func (*ModelsSecurityCertificatePermissions) GetRolesOk ¶

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecurityCertificatePermissions) HasRoles ¶

HasRoles returns a boolean if a field has been set.

func (ModelsSecurityCertificatePermissions) MarshalJSON ¶

func (o ModelsSecurityCertificatePermissions) MarshalJSON() ([]byte, error)

func (*ModelsSecurityCertificatePermissions) SetRoles ¶

SetRoles gets a reference to the given []ModelsSecuritySecurityRolesSecurityRoleResponseBase and assigns it to the Roles field.

func (ModelsSecurityCertificatePermissions) ToMap ¶

func (o ModelsSecurityCertificatePermissions) ToMap() (map[string]interface{}, error)

func (*ModelsSecurityCertificatePermissions) UnmarshalJSON ¶

func (o *ModelsSecurityCertificatePermissions) UnmarshalJSON(bytes []byte) (err error)

type ModelsSecurityIdentitiesPermissionRolesPairResponse ¶

type ModelsSecurityIdentitiesPermissionRolesPairResponse struct {
	Permission           *string  `json:"Permission,omitempty"`
	GrantedByRoles       []string `json:"GrantedByRoles,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSecurityIdentitiesPermissionRolesPairResponse struct for ModelsSecurityIdentitiesPermissionRolesPairResponse

func NewModelsSecurityIdentitiesPermissionRolesPairResponse ¶

func NewModelsSecurityIdentitiesPermissionRolesPairResponse() *ModelsSecurityIdentitiesPermissionRolesPairResponse

NewModelsSecurityIdentitiesPermissionRolesPairResponse instantiates a new ModelsSecurityIdentitiesPermissionRolesPairResponse 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 NewModelsSecurityIdentitiesPermissionRolesPairResponseWithDefaults ¶

func NewModelsSecurityIdentitiesPermissionRolesPairResponseWithDefaults() *ModelsSecurityIdentitiesPermissionRolesPairResponse

NewModelsSecurityIdentitiesPermissionRolesPairResponseWithDefaults instantiates a new ModelsSecurityIdentitiesPermissionRolesPairResponse 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 (*ModelsSecurityIdentitiesPermissionRolesPairResponse) GetGrantedByRoles ¶

GetGrantedByRoles returns the GrantedByRoles field value if set, zero value otherwise.

func (*ModelsSecurityIdentitiesPermissionRolesPairResponse) GetGrantedByRolesOk ¶

func (o *ModelsSecurityIdentitiesPermissionRolesPairResponse) GetGrantedByRolesOk() ([]string, bool)

GetGrantedByRolesOk returns a tuple with the GrantedByRoles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecurityIdentitiesPermissionRolesPairResponse) GetPermission ¶

GetPermission returns the Permission field value if set, zero value otherwise.

func (*ModelsSecurityIdentitiesPermissionRolesPairResponse) GetPermissionOk ¶

GetPermissionOk returns a tuple with the Permission field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecurityIdentitiesPermissionRolesPairResponse) HasGrantedByRoles ¶

HasGrantedByRoles returns a boolean if a field has been set.

func (*ModelsSecurityIdentitiesPermissionRolesPairResponse) HasPermission ¶

HasPermission returns a boolean if a field has been set.

func (ModelsSecurityIdentitiesPermissionRolesPairResponse) MarshalJSON ¶

func (*ModelsSecurityIdentitiesPermissionRolesPairResponse) SetGrantedByRoles ¶

SetGrantedByRoles gets a reference to the given []string and assigns it to the GrantedByRoles field.

func (*ModelsSecurityIdentitiesPermissionRolesPairResponse) SetPermission ¶

SetPermission gets a reference to the given string and assigns it to the Permission field.

func (ModelsSecurityIdentitiesPermissionRolesPairResponse) ToMap ¶

func (*ModelsSecurityIdentitiesPermissionRolesPairResponse) UnmarshalJSON ¶

func (o *ModelsSecurityIdentitiesPermissionRolesPairResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSecurityIdentitiesSecurityIdentityIdentifier ¶

type ModelsSecurityIdentitiesSecurityIdentityIdentifier struct {
	// The username of the security identity.
	AccountName *string `json:"AccountName,omitempty"`
	// The SID of the security identity.
	SID                  *string `json:"SID,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSecurityIdentitiesSecurityIdentityIdentifier Model for looking up a security identity

func NewModelsSecurityIdentitiesSecurityIdentityIdentifier ¶

func NewModelsSecurityIdentitiesSecurityIdentityIdentifier() *ModelsSecurityIdentitiesSecurityIdentityIdentifier

NewModelsSecurityIdentitiesSecurityIdentityIdentifier instantiates a new ModelsSecurityIdentitiesSecurityIdentityIdentifier 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 NewModelsSecurityIdentitiesSecurityIdentityIdentifierWithDefaults ¶

func NewModelsSecurityIdentitiesSecurityIdentityIdentifierWithDefaults() *ModelsSecurityIdentitiesSecurityIdentityIdentifier

NewModelsSecurityIdentitiesSecurityIdentityIdentifierWithDefaults instantiates a new ModelsSecurityIdentitiesSecurityIdentityIdentifier 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 (*ModelsSecurityIdentitiesSecurityIdentityIdentifier) GetAccountName ¶

GetAccountName returns the AccountName field value if set, zero value otherwise.

func (*ModelsSecurityIdentitiesSecurityIdentityIdentifier) GetAccountNameOk ¶

GetAccountNameOk returns a tuple with the AccountName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecurityIdentitiesSecurityIdentityIdentifier) GetSID ¶

GetSID returns the SID field value if set, zero value otherwise.

func (*ModelsSecurityIdentitiesSecurityIdentityIdentifier) GetSIDOk ¶

GetSIDOk returns a tuple with the SID field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecurityIdentitiesSecurityIdentityIdentifier) HasAccountName ¶

HasAccountName returns a boolean if a field has been set.

func (*ModelsSecurityIdentitiesSecurityIdentityIdentifier) HasSID ¶

HasSID returns a boolean if a field has been set.

func (ModelsSecurityIdentitiesSecurityIdentityIdentifier) MarshalJSON ¶

func (*ModelsSecurityIdentitiesSecurityIdentityIdentifier) SetAccountName ¶

SetAccountName gets a reference to the given string and assigns it to the AccountName field.

func (*ModelsSecurityIdentitiesSecurityIdentityIdentifier) SetSID ¶

SetSID gets a reference to the given string and assigns it to the SID field.

func (ModelsSecurityIdentitiesSecurityIdentityIdentifier) ToMap ¶

func (*ModelsSecurityIdentitiesSecurityIdentityIdentifier) UnmarshalJSON ¶

func (o *ModelsSecurityIdentitiesSecurityIdentityIdentifier) UnmarshalJSON(bytes []byte) (err error)

type ModelsSecurityIdentitiesSecurityIdentityLookupResponse ¶

type ModelsSecurityIdentitiesSecurityIdentityLookupResponse struct {
	// Whether or not the identity is valid.
	Valid                *bool `json:"Valid,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSecurityIdentitiesSecurityIdentityLookupResponse A public DTO representing the result of a security identity lookup.

func NewModelsSecurityIdentitiesSecurityIdentityLookupResponse ¶

func NewModelsSecurityIdentitiesSecurityIdentityLookupResponse() *ModelsSecurityIdentitiesSecurityIdentityLookupResponse

NewModelsSecurityIdentitiesSecurityIdentityLookupResponse instantiates a new ModelsSecurityIdentitiesSecurityIdentityLookupResponse 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 NewModelsSecurityIdentitiesSecurityIdentityLookupResponseWithDefaults ¶

func NewModelsSecurityIdentitiesSecurityIdentityLookupResponseWithDefaults() *ModelsSecurityIdentitiesSecurityIdentityLookupResponse

NewModelsSecurityIdentitiesSecurityIdentityLookupResponseWithDefaults instantiates a new ModelsSecurityIdentitiesSecurityIdentityLookupResponse 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 (*ModelsSecurityIdentitiesSecurityIdentityLookupResponse) GetValid ¶

GetValid returns the Valid field value if set, zero value otherwise.

func (*ModelsSecurityIdentitiesSecurityIdentityLookupResponse) GetValidOk ¶

GetValidOk returns a tuple with the Valid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecurityIdentitiesSecurityIdentityLookupResponse) HasValid ¶

HasValid returns a boolean if a field has been set.

func (ModelsSecurityIdentitiesSecurityIdentityLookupResponse) MarshalJSON ¶

func (*ModelsSecurityIdentitiesSecurityIdentityLookupResponse) SetValid ¶

SetValid gets a reference to the given bool and assigns it to the Valid field.

func (ModelsSecurityIdentitiesSecurityIdentityLookupResponse) ToMap ¶

func (*ModelsSecurityIdentitiesSecurityIdentityLookupResponse) UnmarshalJSON ¶

func (o *ModelsSecurityIdentitiesSecurityIdentityLookupResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse ¶

type ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse struct {
	Identity               *string                                               `json:"Identity,omitempty"`
	SecuredAreaPermissions []ModelsSecurityIdentitiesPermissionRolesPairResponse `json:"SecuredAreaPermissions,omitempty"`
	CollectionPermissions  []ModelsSecurityIdentitiesPermissionRolesPairResponse `json:"CollectionPermissions,omitempty"`
	ContainerPermissions   []ModelsSecurityIdentitiesPermissionRolesPairResponse `json:"ContainerPermissions,omitempty"`
	AdditionalProperties   map[string]interface{}
}

ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse struct for ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse

func NewModelsSecurityIdentitiesSecurityIdentityPermissionsResponse ¶

func NewModelsSecurityIdentitiesSecurityIdentityPermissionsResponse() *ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse

NewModelsSecurityIdentitiesSecurityIdentityPermissionsResponse instantiates a new ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse 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 NewModelsSecurityIdentitiesSecurityIdentityPermissionsResponseWithDefaults ¶

func NewModelsSecurityIdentitiesSecurityIdentityPermissionsResponseWithDefaults() *ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse

NewModelsSecurityIdentitiesSecurityIdentityPermissionsResponseWithDefaults instantiates a new ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse 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 (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) GetCollectionPermissions ¶

GetCollectionPermissions returns the CollectionPermissions field value if set, zero value otherwise.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) GetCollectionPermissionsOk ¶

GetCollectionPermissionsOk returns a tuple with the CollectionPermissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) GetContainerPermissions ¶

GetContainerPermissions returns the ContainerPermissions field value if set, zero value otherwise.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) GetContainerPermissionsOk ¶

GetContainerPermissionsOk returns a tuple with the ContainerPermissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) GetIdentity ¶

GetIdentity returns the Identity field value if set, zero value otherwise.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) GetIdentityOk ¶

GetIdentityOk returns a tuple with the Identity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) GetSecuredAreaPermissions ¶

GetSecuredAreaPermissions returns the SecuredAreaPermissions field value if set, zero value otherwise.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) GetSecuredAreaPermissionsOk ¶

GetSecuredAreaPermissionsOk returns a tuple with the SecuredAreaPermissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) HasCollectionPermissions ¶

HasCollectionPermissions returns a boolean if a field has been set.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) HasContainerPermissions ¶

HasContainerPermissions returns a boolean if a field has been set.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) HasIdentity ¶

HasIdentity returns a boolean if a field has been set.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) HasSecuredAreaPermissions ¶

HasSecuredAreaPermissions returns a boolean if a field has been set.

func (ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) MarshalJSON ¶

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) SetCollectionPermissions ¶

SetCollectionPermissions gets a reference to the given []ModelsSecurityIdentitiesPermissionRolesPairResponse and assigns it to the CollectionPermissions field.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) SetContainerPermissions ¶

SetContainerPermissions gets a reference to the given []ModelsSecurityIdentitiesPermissionRolesPairResponse and assigns it to the ContainerPermissions field.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) SetIdentity ¶

SetIdentity gets a reference to the given string and assigns it to the Identity field.

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) SetSecuredAreaPermissions ¶

SetSecuredAreaPermissions gets a reference to the given []ModelsSecurityIdentitiesPermissionRolesPairResponse and assigns it to the SecuredAreaPermissions field.

func (ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) ToMap ¶

func (*ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) UnmarshalJSON ¶

type ModelsSecurityIdentitiesSecurityIdentityRequest ¶

type ModelsSecurityIdentitiesSecurityIdentityRequest struct {
	// The username of the security identity.
	AccountName          string `json:"AccountName"`
	AdditionalProperties map[string]interface{}
}

ModelsSecurityIdentitiesSecurityIdentityRequest Model for requesting a security identity.

func NewModelsSecurityIdentitiesSecurityIdentityRequest ¶

func NewModelsSecurityIdentitiesSecurityIdentityRequest(accountName string) *ModelsSecurityIdentitiesSecurityIdentityRequest

NewModelsSecurityIdentitiesSecurityIdentityRequest instantiates a new ModelsSecurityIdentitiesSecurityIdentityRequest 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 NewModelsSecurityIdentitiesSecurityIdentityRequestWithDefaults ¶

func NewModelsSecurityIdentitiesSecurityIdentityRequestWithDefaults() *ModelsSecurityIdentitiesSecurityIdentityRequest

NewModelsSecurityIdentitiesSecurityIdentityRequestWithDefaults instantiates a new ModelsSecurityIdentitiesSecurityIdentityRequest 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 (*ModelsSecurityIdentitiesSecurityIdentityRequest) GetAccountName ¶

GetAccountName returns the AccountName field value

func (*ModelsSecurityIdentitiesSecurityIdentityRequest) GetAccountNameOk ¶

GetAccountNameOk returns a tuple with the AccountName field value and a boolean to check if the value has been set.

func (ModelsSecurityIdentitiesSecurityIdentityRequest) MarshalJSON ¶

func (*ModelsSecurityIdentitiesSecurityIdentityRequest) SetAccountName ¶

SetAccountName sets field value

func (ModelsSecurityIdentitiesSecurityIdentityRequest) ToMap ¶

func (o ModelsSecurityIdentitiesSecurityIdentityRequest) ToMap() (map[string]interface{}, error)

func (*ModelsSecurityIdentitiesSecurityIdentityRequest) UnmarshalJSON ¶

func (o *ModelsSecurityIdentitiesSecurityIdentityRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSecuritySecurityRolesSecurityRoleCreationRequest ¶

type ModelsSecuritySecurityRolesSecurityRoleCreationRequest struct {
	// The name of the security role to create
	Name string `json:"Name"`
	// The description to be used on the created security role
	Description string `json:"Description"`
	// Whether or not the security role should be enabled
	Enabled *bool `json:"Enabled,omitempty"`
	// Whether or not the security role should be private
	Private *bool `json:"Private,omitempty"`
	// The permissions to include in the role. These must be supplied in the format \"Area:Permission\"
	Permissions []string `json:"Permissions,omitempty"`
	// The Keyfactor identities to assign to the created role
	Identities           []ModelsSecurityIdentitiesSecurityIdentityIdentifier `json:"Identities,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSecuritySecurityRolesSecurityRoleCreationRequest struct for ModelsSecuritySecurityRolesSecurityRoleCreationRequest

func NewModelsSecuritySecurityRolesSecurityRoleCreationRequest ¶

func NewModelsSecuritySecurityRolesSecurityRoleCreationRequest(name string, description string) *ModelsSecuritySecurityRolesSecurityRoleCreationRequest

NewModelsSecuritySecurityRolesSecurityRoleCreationRequest instantiates a new ModelsSecuritySecurityRolesSecurityRoleCreationRequest 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 NewModelsSecuritySecurityRolesSecurityRoleCreationRequestWithDefaults ¶

func NewModelsSecuritySecurityRolesSecurityRoleCreationRequestWithDefaults() *ModelsSecuritySecurityRolesSecurityRoleCreationRequest

NewModelsSecuritySecurityRolesSecurityRoleCreationRequestWithDefaults instantiates a new ModelsSecuritySecurityRolesSecurityRoleCreationRequest 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 (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetDescription ¶

GetDescription returns the Description field value

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetDescriptionOk ¶

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetEnabledOk ¶

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetIdentities ¶

GetIdentities returns the Identities field value if set, zero value otherwise.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetIdentitiesOk ¶

GetIdentitiesOk returns a tuple with the Identities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetName ¶

GetName returns the Name field value

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetNameOk ¶

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetPermissions ¶

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetPermissionsOk ¶

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetPrivate ¶

GetPrivate returns the Private field value if set, zero value otherwise.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) GetPrivateOk ¶

GetPrivateOk returns a tuple with the Private field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) HasIdentities ¶

HasIdentities returns a boolean if a field has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) HasPermissions ¶

HasPermissions returns a boolean if a field has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) HasPrivate ¶

HasPrivate returns a boolean if a field has been set.

func (ModelsSecuritySecurityRolesSecurityRoleCreationRequest) MarshalJSON ¶

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) SetDescription ¶

SetDescription sets field value

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) SetIdentities ¶

SetIdentities gets a reference to the given []ModelsSecurityIdentitiesSecurityIdentityIdentifier and assigns it to the Identities field.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) SetName ¶

SetName sets field value

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) SetPermissions ¶

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) SetPrivate ¶

SetPrivate gets a reference to the given bool and assigns it to the Private field.

func (ModelsSecuritySecurityRolesSecurityRoleCreationRequest) ToMap ¶

func (*ModelsSecuritySecurityRolesSecurityRoleCreationRequest) UnmarshalJSON ¶

func (o *ModelsSecuritySecurityRolesSecurityRoleCreationRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSecuritySecurityRolesSecurityRoleResponseBase ¶

type ModelsSecuritySecurityRolesSecurityRoleResponseBase struct {
	// The name of the created role
	Name *string `json:"Name,omitempty"`
	// The permissions included in the created security role
	Permissions          []string `json:"Permissions,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSecuritySecurityRolesSecurityRoleResponseBase struct for ModelsSecuritySecurityRolesSecurityRoleResponseBase

func NewModelsSecuritySecurityRolesSecurityRoleResponseBase ¶

func NewModelsSecuritySecurityRolesSecurityRoleResponseBase() *ModelsSecuritySecurityRolesSecurityRoleResponseBase

NewModelsSecuritySecurityRolesSecurityRoleResponseBase instantiates a new ModelsSecuritySecurityRolesSecurityRoleResponseBase 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 NewModelsSecuritySecurityRolesSecurityRoleResponseBaseWithDefaults ¶

func NewModelsSecuritySecurityRolesSecurityRoleResponseBaseWithDefaults() *ModelsSecuritySecurityRolesSecurityRoleResponseBase

NewModelsSecuritySecurityRolesSecurityRoleResponseBaseWithDefaults instantiates a new ModelsSecuritySecurityRolesSecurityRoleResponseBase 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 (*ModelsSecuritySecurityRolesSecurityRoleResponseBase) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsSecuritySecurityRolesSecurityRoleResponseBase) 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 (*ModelsSecuritySecurityRolesSecurityRoleResponseBase) GetPermissions ¶

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*ModelsSecuritySecurityRolesSecurityRoleResponseBase) GetPermissionsOk ¶

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleResponseBase) HasName ¶

HasName returns a boolean if a field has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleResponseBase) HasPermissions ¶

HasPermissions returns a boolean if a field has been set.

func (ModelsSecuritySecurityRolesSecurityRoleResponseBase) MarshalJSON ¶

func (*ModelsSecuritySecurityRolesSecurityRoleResponseBase) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsSecuritySecurityRolesSecurityRoleResponseBase) SetPermissions ¶

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (ModelsSecuritySecurityRolesSecurityRoleResponseBase) ToMap ¶

func (*ModelsSecuritySecurityRolesSecurityRoleResponseBase) UnmarshalJSON ¶

func (o *ModelsSecuritySecurityRolesSecurityRoleResponseBase) UnmarshalJSON(bytes []byte) (err error)

type ModelsSecuritySecurityRolesSecurityRoleUpdateRequest ¶

type ModelsSecuritySecurityRolesSecurityRoleUpdateRequest struct {
	// The Id of the security role to update
	Id int32 `json:"Id"`
	// The name of the security role to update
	Name string `json:"Name"`
	// The description to be used on the updated security role
	Description string `json:"Description"`
	// Whether or not the security role should be enabled
	Enabled *bool `json:"Enabled,omitempty"`
	// Whether or not the security role should be private
	Private *bool `json:"Private,omitempty"`
	// The permissions to include in the role. These must be supplied in the format \"Area:Permission\"
	Permissions []string `json:"Permissions,omitempty"`
	// The Keyfactor identities to assign to the updated role
	Identities           []ModelsSecurityIdentitiesSecurityIdentityIdentifier `json:"Identities,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSecuritySecurityRolesSecurityRoleUpdateRequest struct for ModelsSecuritySecurityRolesSecurityRoleUpdateRequest

func NewModelsSecuritySecurityRolesSecurityRoleUpdateRequest ¶

func NewModelsSecuritySecurityRolesSecurityRoleUpdateRequest(id int32, name string, description string) *ModelsSecuritySecurityRolesSecurityRoleUpdateRequest

NewModelsSecuritySecurityRolesSecurityRoleUpdateRequest instantiates a new ModelsSecuritySecurityRolesSecurityRoleUpdateRequest 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 NewModelsSecuritySecurityRolesSecurityRoleUpdateRequestWithDefaults ¶

func NewModelsSecuritySecurityRolesSecurityRoleUpdateRequestWithDefaults() *ModelsSecuritySecurityRolesSecurityRoleUpdateRequest

NewModelsSecuritySecurityRolesSecurityRoleUpdateRequestWithDefaults instantiates a new ModelsSecuritySecurityRolesSecurityRoleUpdateRequest 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 (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetDescription ¶

GetDescription returns the Description field value

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetDescriptionOk ¶

GetDescriptionOk returns a tuple with the Description field value and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetEnabled ¶

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetEnabledOk ¶

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetId ¶

GetId returns the Id field value

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetIdOk ¶

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetIdentities ¶

GetIdentities returns the Identities field value if set, zero value otherwise.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetIdentitiesOk ¶

GetIdentitiesOk returns a tuple with the Identities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetName ¶

GetName returns the Name field value

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetNameOk ¶

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetPermissions ¶

GetPermissions returns the Permissions field value if set, zero value otherwise.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetPermissionsOk ¶

GetPermissionsOk returns a tuple with the Permissions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetPrivate ¶

GetPrivate returns the Private field value if set, zero value otherwise.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) GetPrivateOk ¶

GetPrivateOk returns a tuple with the Private field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) HasEnabled ¶

HasEnabled returns a boolean if a field has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) HasIdentities ¶

HasIdentities returns a boolean if a field has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) HasPermissions ¶

HasPermissions returns a boolean if a field has been set.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) HasPrivate ¶

HasPrivate returns a boolean if a field has been set.

func (ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) MarshalJSON ¶

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) SetDescription ¶

SetDescription sets field value

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) SetEnabled ¶

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) SetId ¶

SetId sets field value

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) SetIdentities ¶

SetIdentities gets a reference to the given []ModelsSecurityIdentitiesSecurityIdentityIdentifier and assigns it to the Identities field.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) SetName ¶

SetName sets field value

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) SetPermissions ¶

SetPermissions gets a reference to the given []string and assigns it to the Permissions field.

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) SetPrivate ¶

SetPrivate gets a reference to the given bool and assigns it to the Private field.

func (ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) ToMap ¶

func (*ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) UnmarshalJSON ¶

func (o *ModelsSecuritySecurityRolesSecurityRoleUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsSubjectAlternativeName ¶

type ModelsSubjectAlternativeName struct {
	Id                   *int32  `json:"Id,omitempty"`
	Value                *string `json:"Value,omitempty"`
	Type                 *int32  `json:"Type,omitempty"`
	ValueHash            *string `json:"ValueHash,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsSubjectAlternativeName struct for ModelsSubjectAlternativeName

func NewModelsSubjectAlternativeName ¶

func NewModelsSubjectAlternativeName() *ModelsSubjectAlternativeName

NewModelsSubjectAlternativeName instantiates a new ModelsSubjectAlternativeName 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 NewModelsSubjectAlternativeNameWithDefaults ¶

func NewModelsSubjectAlternativeNameWithDefaults() *ModelsSubjectAlternativeName

NewModelsSubjectAlternativeNameWithDefaults instantiates a new ModelsSubjectAlternativeName 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 (*ModelsSubjectAlternativeName) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsSubjectAlternativeName) GetIdOk ¶

func (o *ModelsSubjectAlternativeName) 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 (*ModelsSubjectAlternativeName) GetType ¶

func (o *ModelsSubjectAlternativeName) GetType() int32

GetType returns the Type field value if set, zero value otherwise.

func (*ModelsSubjectAlternativeName) GetTypeOk ¶

func (o *ModelsSubjectAlternativeName) 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 (*ModelsSubjectAlternativeName) GetValue ¶

func (o *ModelsSubjectAlternativeName) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*ModelsSubjectAlternativeName) GetValueHash ¶

func (o *ModelsSubjectAlternativeName) GetValueHash() string

GetValueHash returns the ValueHash field value if set, zero value otherwise.

func (*ModelsSubjectAlternativeName) GetValueHashOk ¶

func (o *ModelsSubjectAlternativeName) GetValueHashOk() (*string, bool)

GetValueHashOk returns a tuple with the ValueHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsSubjectAlternativeName) GetValueOk ¶

func (o *ModelsSubjectAlternativeName) 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 (*ModelsSubjectAlternativeName) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsSubjectAlternativeName) HasType ¶

func (o *ModelsSubjectAlternativeName) HasType() bool

HasType returns a boolean if a field has been set.

func (*ModelsSubjectAlternativeName) HasValue ¶

func (o *ModelsSubjectAlternativeName) HasValue() bool

HasValue returns a boolean if a field has been set.

func (*ModelsSubjectAlternativeName) HasValueHash ¶

func (o *ModelsSubjectAlternativeName) HasValueHash() bool

HasValueHash returns a boolean if a field has been set.

func (ModelsSubjectAlternativeName) MarshalJSON ¶

func (o ModelsSubjectAlternativeName) MarshalJSON() ([]byte, error)

func (*ModelsSubjectAlternativeName) SetId ¶

func (o *ModelsSubjectAlternativeName) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsSubjectAlternativeName) SetType ¶

func (o *ModelsSubjectAlternativeName) SetType(v int32)

SetType gets a reference to the given int32 and assigns it to the Type field.

func (*ModelsSubjectAlternativeName) SetValue ¶

func (o *ModelsSubjectAlternativeName) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

func (*ModelsSubjectAlternativeName) SetValueHash ¶

func (o *ModelsSubjectAlternativeName) SetValueHash(v string)

SetValueHash gets a reference to the given string and assigns it to the ValueHash field.

func (ModelsSubjectAlternativeName) ToMap ¶

func (o ModelsSubjectAlternativeName) ToMap() (map[string]interface{}, error)

func (*ModelsSubjectAlternativeName) UnmarshalJSON ¶

func (o *ModelsSubjectAlternativeName) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateCollectionRetrievalResponse ¶

type ModelsTemplateCollectionRetrievalResponse struct {
	Id                     *int32                                                                  `json:"Id,omitempty"`
	CommonName             *string                                                                 `json:"CommonName,omitempty"`
	TemplateName           *string                                                                 `json:"TemplateName,omitempty"`
	Oid                    *string                                                                 `json:"Oid,omitempty"`
	KeySize                *string                                                                 `json:"KeySize,omitempty"`
	KeyType                *string                                                                 `json:"KeyType,omitempty"`
	ForestRoot             *string                                                                 `json:"ForestRoot,omitempty"`
	ConfigurationTenant    *string                                                                 `json:"ConfigurationTenant,omitempty"`
	FriendlyName           *string                                                                 `json:"FriendlyName,omitempty"`
	KeyRetention           *int32                                                                  `json:"KeyRetention,omitempty"`
	KeyRetentionDays       *int32                                                                  `json:"KeyRetentionDays,omitempty"`
	KeyArchival            *bool                                                                   `json:"KeyArchival,omitempty"`
	EnrollmentFields       []ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel `json:"EnrollmentFields,omitempty"`
	AllowedEnrollmentTypes *int32                                                                  `json:"AllowedEnrollmentTypes,omitempty"`
	TemplateRegexes        []ModelsTemplateCollectionRetrievalResponseTemplateRegexModel           `json:"TemplateRegexes,omitempty"`
	UseAllowedRequesters   *bool                                                                   `json:"UseAllowedRequesters,omitempty"`
	AllowedRequesters      []string                                                                `json:"AllowedRequesters,omitempty"`
	DisplayName            *string                                                                 `json:"DisplayName,omitempty"`
	RequiresApproval       *bool                                                                   `json:"RequiresApproval,omitempty"`
	KeyUsage               *int32                                                                  `json:"KeyUsage,omitempty"`
	ExtendedKeyUsages      []ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel        `json:"ExtendedKeyUsages,omitempty"`
	AdditionalProperties   map[string]interface{}
}

ModelsTemplateCollectionRetrievalResponse struct for ModelsTemplateCollectionRetrievalResponse

func NewModelsTemplateCollectionRetrievalResponse ¶

func NewModelsTemplateCollectionRetrievalResponse() *ModelsTemplateCollectionRetrievalResponse

NewModelsTemplateCollectionRetrievalResponse instantiates a new ModelsTemplateCollectionRetrievalResponse 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 NewModelsTemplateCollectionRetrievalResponseWithDefaults ¶

func NewModelsTemplateCollectionRetrievalResponseWithDefaults() *ModelsTemplateCollectionRetrievalResponse

NewModelsTemplateCollectionRetrievalResponseWithDefaults instantiates a new ModelsTemplateCollectionRetrievalResponse 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 (*ModelsTemplateCollectionRetrievalResponse) GetAllowedEnrollmentTypes ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetAllowedEnrollmentTypes() int32

GetAllowedEnrollmentTypes returns the AllowedEnrollmentTypes field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetAllowedEnrollmentTypesOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetAllowedEnrollmentTypesOk() (*int32, bool)

GetAllowedEnrollmentTypesOk returns a tuple with the AllowedEnrollmentTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetAllowedRequesters ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetAllowedRequesters() []string

GetAllowedRequesters returns the AllowedRequesters field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetAllowedRequestersOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetAllowedRequestersOk() ([]string, bool)

GetAllowedRequestersOk returns a tuple with the AllowedRequesters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetCommonName ¶

GetCommonName returns the CommonName field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetCommonNameOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetCommonNameOk() (*string, bool)

GetCommonNameOk returns a tuple with the CommonName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetConfigurationTenant ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetConfigurationTenant() string

GetConfigurationTenant returns the ConfigurationTenant field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetConfigurationTenantOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetConfigurationTenantOk() (*string, bool)

GetConfigurationTenantOk returns a tuple with the ConfigurationTenant field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetDisplayNameOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetEnrollmentFields ¶

GetEnrollmentFields returns the EnrollmentFields field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetEnrollmentFieldsOk ¶

GetEnrollmentFieldsOk returns a tuple with the EnrollmentFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetExtendedKeyUsages ¶

GetExtendedKeyUsages returns the ExtendedKeyUsages field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetExtendedKeyUsagesOk ¶

GetExtendedKeyUsagesOk returns a tuple with the ExtendedKeyUsages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetForestRoot ¶

GetForestRoot returns the ForestRoot field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetForestRootOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetForestRootOk() (*string, bool)

GetForestRootOk returns a tuple with the ForestRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetFriendlyName ¶

GetFriendlyName returns the FriendlyName field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetFriendlyNameOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetFriendlyNameOk() (*string, bool)

GetFriendlyNameOk returns a tuple with the FriendlyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetIdOk ¶

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 (*ModelsTemplateCollectionRetrievalResponse) GetKeyArchival ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetKeyArchival() bool

GetKeyArchival returns the KeyArchival field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetKeyArchivalOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetKeyArchivalOk() (*bool, bool)

GetKeyArchivalOk returns a tuple with the KeyArchival field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetKeyRetention ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetKeyRetention() int32

GetKeyRetention returns the KeyRetention field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetKeyRetentionDays ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetKeyRetentionDays() int32

GetKeyRetentionDays returns the KeyRetentionDays field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetKeyRetentionDaysOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetKeyRetentionDaysOk() (*int32, bool)

GetKeyRetentionDaysOk returns a tuple with the KeyRetentionDays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetKeyRetentionOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetKeyRetentionOk() (*int32, bool)

GetKeyRetentionOk returns a tuple with the KeyRetention field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetKeySize ¶

GetKeySize returns the KeySize field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetKeySizeOk ¶

GetKeySizeOk returns a tuple with the KeySize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetKeyType ¶

GetKeyType returns the KeyType field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetKeyTypeOk ¶

GetKeyTypeOk returns a tuple with the KeyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetKeyUsage ¶

GetKeyUsage returns the KeyUsage field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetKeyUsageOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetKeyUsageOk() (*int32, bool)

GetKeyUsageOk returns a tuple with the KeyUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetOid ¶

GetOid returns the Oid field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetOidOk ¶

GetOidOk returns a tuple with the Oid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetRequiresApproval ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetRequiresApproval() bool

GetRequiresApproval returns the RequiresApproval field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetRequiresApprovalOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetRequiresApprovalOk() (*bool, bool)

GetRequiresApprovalOk returns a tuple with the RequiresApproval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetTemplateName ¶

GetTemplateName returns the TemplateName field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetTemplateNameOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetTemplateNameOk() (*string, bool)

GetTemplateNameOk returns a tuple with the TemplateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetTemplateRegexes ¶

GetTemplateRegexes returns the TemplateRegexes field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetTemplateRegexesOk ¶

GetTemplateRegexesOk returns a tuple with the TemplateRegexes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) GetUseAllowedRequesters ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetUseAllowedRequesters() bool

GetUseAllowedRequesters returns the UseAllowedRequesters field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponse) GetUseAllowedRequestersOk ¶

func (o *ModelsTemplateCollectionRetrievalResponse) GetUseAllowedRequestersOk() (*bool, bool)

GetUseAllowedRequestersOk returns a tuple with the UseAllowedRequesters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasAllowedEnrollmentTypes ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasAllowedEnrollmentTypes() bool

HasAllowedEnrollmentTypes returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasAllowedRequesters ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasAllowedRequesters() bool

HasAllowedRequesters returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasCommonName ¶

HasCommonName returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasConfigurationTenant ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasConfigurationTenant() bool

HasConfigurationTenant returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasDisplayName ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasEnrollmentFields ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasEnrollmentFields() bool

HasEnrollmentFields returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasExtendedKeyUsages ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasExtendedKeyUsages() bool

HasExtendedKeyUsages returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasForestRoot ¶

HasForestRoot returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasFriendlyName ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasFriendlyName() bool

HasFriendlyName returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasKeyArchival ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasKeyArchival() bool

HasKeyArchival returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasKeyRetention ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasKeyRetention() bool

HasKeyRetention returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasKeyRetentionDays ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasKeyRetentionDays() bool

HasKeyRetentionDays returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasKeySize ¶

HasKeySize returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasKeyType ¶

HasKeyType returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasKeyUsage ¶

HasKeyUsage returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasOid ¶

HasOid returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasRequiresApproval ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasRequiresApproval() bool

HasRequiresApproval returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasTemplateName ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasTemplateName() bool

HasTemplateName returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasTemplateRegexes ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasTemplateRegexes() bool

HasTemplateRegexes returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponse) HasUseAllowedRequesters ¶

func (o *ModelsTemplateCollectionRetrievalResponse) HasUseAllowedRequesters() bool

HasUseAllowedRequesters returns a boolean if a field has been set.

func (ModelsTemplateCollectionRetrievalResponse) MarshalJSON ¶

func (*ModelsTemplateCollectionRetrievalResponse) SetAllowedEnrollmentTypes ¶

func (o *ModelsTemplateCollectionRetrievalResponse) SetAllowedEnrollmentTypes(v int32)

SetAllowedEnrollmentTypes gets a reference to the given int32 and assigns it to the AllowedEnrollmentTypes field.

func (*ModelsTemplateCollectionRetrievalResponse) SetAllowedRequesters ¶

func (o *ModelsTemplateCollectionRetrievalResponse) SetAllowedRequesters(v []string)

SetAllowedRequesters gets a reference to the given []string and assigns it to the AllowedRequesters field.

func (*ModelsTemplateCollectionRetrievalResponse) SetCommonName ¶

SetCommonName gets a reference to the given string and assigns it to the CommonName field.

func (*ModelsTemplateCollectionRetrievalResponse) SetConfigurationTenant ¶

func (o *ModelsTemplateCollectionRetrievalResponse) SetConfigurationTenant(v string)

SetConfigurationTenant gets a reference to the given string and assigns it to the ConfigurationTenant field.

func (*ModelsTemplateCollectionRetrievalResponse) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsTemplateCollectionRetrievalResponse) SetEnrollmentFields ¶

SetEnrollmentFields gets a reference to the given []ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel and assigns it to the EnrollmentFields field.

func (*ModelsTemplateCollectionRetrievalResponse) SetExtendedKeyUsages ¶

SetExtendedKeyUsages gets a reference to the given []ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel and assigns it to the ExtendedKeyUsages field.

func (*ModelsTemplateCollectionRetrievalResponse) SetForestRoot ¶

SetForestRoot gets a reference to the given string and assigns it to the ForestRoot field.

func (*ModelsTemplateCollectionRetrievalResponse) SetFriendlyName ¶

func (o *ModelsTemplateCollectionRetrievalResponse) SetFriendlyName(v string)

SetFriendlyName gets a reference to the given string and assigns it to the FriendlyName field.

func (*ModelsTemplateCollectionRetrievalResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateCollectionRetrievalResponse) SetKeyArchival ¶

func (o *ModelsTemplateCollectionRetrievalResponse) SetKeyArchival(v bool)

SetKeyArchival gets a reference to the given bool and assigns it to the KeyArchival field.

func (*ModelsTemplateCollectionRetrievalResponse) SetKeyRetention ¶

func (o *ModelsTemplateCollectionRetrievalResponse) SetKeyRetention(v int32)

SetKeyRetention gets a reference to the given int32 and assigns it to the KeyRetention field.

func (*ModelsTemplateCollectionRetrievalResponse) SetKeyRetentionDays ¶

func (o *ModelsTemplateCollectionRetrievalResponse) SetKeyRetentionDays(v int32)

SetKeyRetentionDays gets a reference to the given int32 and assigns it to the KeyRetentionDays field.

func (*ModelsTemplateCollectionRetrievalResponse) SetKeySize ¶

SetKeySize gets a reference to the given string and assigns it to the KeySize field.

func (*ModelsTemplateCollectionRetrievalResponse) SetKeyType ¶

SetKeyType gets a reference to the given string and assigns it to the KeyType field.

func (*ModelsTemplateCollectionRetrievalResponse) SetKeyUsage ¶

SetKeyUsage gets a reference to the given int32 and assigns it to the KeyUsage field.

func (*ModelsTemplateCollectionRetrievalResponse) SetOid ¶

SetOid gets a reference to the given string and assigns it to the Oid field.

func (*ModelsTemplateCollectionRetrievalResponse) SetRequiresApproval ¶

func (o *ModelsTemplateCollectionRetrievalResponse) SetRequiresApproval(v bool)

SetRequiresApproval gets a reference to the given bool and assigns it to the RequiresApproval field.

func (*ModelsTemplateCollectionRetrievalResponse) SetTemplateName ¶

func (o *ModelsTemplateCollectionRetrievalResponse) SetTemplateName(v string)

SetTemplateName gets a reference to the given string and assigns it to the TemplateName field.

func (*ModelsTemplateCollectionRetrievalResponse) SetTemplateRegexes ¶

SetTemplateRegexes gets a reference to the given []ModelsTemplateCollectionRetrievalResponseTemplateRegexModel and assigns it to the TemplateRegexes field.

func (*ModelsTemplateCollectionRetrievalResponse) SetUseAllowedRequesters ¶

func (o *ModelsTemplateCollectionRetrievalResponse) SetUseAllowedRequesters(v bool)

SetUseAllowedRequesters gets a reference to the given bool and assigns it to the UseAllowedRequesters field.

func (ModelsTemplateCollectionRetrievalResponse) ToMap ¶

func (o ModelsTemplateCollectionRetrievalResponse) ToMap() (map[string]interface{}, error)

func (*ModelsTemplateCollectionRetrievalResponse) UnmarshalJSON ¶

func (o *ModelsTemplateCollectionRetrievalResponse) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel ¶

type ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel struct {
	Id                   *int32  `json:"Id,omitempty"`
	Oid                  *string `json:"Oid,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel struct for ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel

func NewModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel ¶

func NewModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel() *ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel

NewModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel instantiates a new ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel 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 NewModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModelWithDefaults ¶

func NewModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModelWithDefaults() *ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel

NewModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModelWithDefaults instantiates a new ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel 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 (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) GetIdOk ¶

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 (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) GetOid ¶

GetOid returns the Oid field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) GetOidOk ¶

GetOidOk returns a tuple with the Oid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) HasOid ¶

HasOid returns a boolean if a field has been set.

func (ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) MarshalJSON ¶

func (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) SetOid ¶

SetOid gets a reference to the given string and assigns it to the Oid field.

func (ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) ToMap ¶

func (*ModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) UnmarshalJSON ¶

type ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel ¶

type ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel struct {
	Id                   *int32   `json:"Id,omitempty"`
	Name                 *string  `json:"Name,omitempty"`
	Options              []string `json:"Options,omitempty"`
	DataType             *int32   `json:"DataType,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel struct for ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel

func NewModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel ¶

func NewModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel() *ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel

NewModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel instantiates a new ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel 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 NewModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModelWithDefaults ¶

func NewModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModelWithDefaults() *ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel

NewModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModelWithDefaults instantiates a new ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel 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 (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) GetDataType ¶

GetDataType returns the DataType field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) GetDataTypeOk ¶

GetDataTypeOk returns a tuple with the DataType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) GetIdOk ¶

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 (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) 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 (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) GetOptions ¶

GetOptions returns the Options field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) GetOptionsOk ¶

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) HasDataType ¶

HasDataType returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) HasName ¶

HasName returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) HasOptions ¶

HasOptions returns a boolean if a field has been set.

func (ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) MarshalJSON ¶

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) SetDataType ¶

SetDataType gets a reference to the given int32 and assigns it to the DataType field.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) SetOptions ¶

SetOptions gets a reference to the given []string and assigns it to the Options field.

func (ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) ToMap ¶

func (*ModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) UnmarshalJSON ¶

type ModelsTemplateCollectionRetrievalResponseTemplateRegexModel ¶

type ModelsTemplateCollectionRetrievalResponseTemplateRegexModel struct {
	TemplateId           *int32  `json:"TemplateId,omitempty"`
	SubjectPart          *string `json:"SubjectPart,omitempty"`
	Regex                *string `json:"Regex,omitempty"`
	Error                *string `json:"Error,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateCollectionRetrievalResponseTemplateRegexModel struct for ModelsTemplateCollectionRetrievalResponseTemplateRegexModel

func NewModelsTemplateCollectionRetrievalResponseTemplateRegexModel ¶

func NewModelsTemplateCollectionRetrievalResponseTemplateRegexModel() *ModelsTemplateCollectionRetrievalResponseTemplateRegexModel

NewModelsTemplateCollectionRetrievalResponseTemplateRegexModel instantiates a new ModelsTemplateCollectionRetrievalResponseTemplateRegexModel 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 NewModelsTemplateCollectionRetrievalResponseTemplateRegexModelWithDefaults ¶

func NewModelsTemplateCollectionRetrievalResponseTemplateRegexModelWithDefaults() *ModelsTemplateCollectionRetrievalResponseTemplateRegexModel

NewModelsTemplateCollectionRetrievalResponseTemplateRegexModelWithDefaults instantiates a new ModelsTemplateCollectionRetrievalResponseTemplateRegexModel 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 (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) GetRegex ¶

GetRegex returns the Regex field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) GetRegexOk ¶

GetRegexOk returns a tuple with the Regex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) GetSubjectPartOk ¶

GetSubjectPartOk returns a tuple with the SubjectPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) GetTemplateId ¶

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) GetTemplateIdOk ¶

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) HasError ¶

HasError returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) HasRegex ¶

HasRegex returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) HasSubjectPart ¶

HasSubjectPart returns a boolean if a field has been set.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) HasTemplateId ¶

HasTemplateId returns a boolean if a field has been set.

func (ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) MarshalJSON ¶

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) SetError ¶

SetError gets a reference to the given string and assigns it to the Error field.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) SetRegex ¶

SetRegex gets a reference to the given string and assigns it to the Regex field.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) SetSubjectPart ¶

SetSubjectPart gets a reference to the given string and assigns it to the SubjectPart field.

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) SetTemplateId ¶

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) ToMap ¶

func (*ModelsTemplateCollectionRetrievalResponseTemplateRegexModel) UnmarshalJSON ¶

type ModelsTemplateEnrollmentField ¶

type ModelsTemplateEnrollmentField struct {
	Id                   *int32   `json:"Id,omitempty"`
	Name                 *string  `json:"Name,omitempty"`
	Options              []string `json:"Options,omitempty"`
	DataType             *int32   `json:"DataType,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateEnrollmentField struct for ModelsTemplateEnrollmentField

func NewModelsTemplateEnrollmentField ¶

func NewModelsTemplateEnrollmentField() *ModelsTemplateEnrollmentField

NewModelsTemplateEnrollmentField instantiates a new ModelsTemplateEnrollmentField 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 NewModelsTemplateEnrollmentFieldWithDefaults ¶

func NewModelsTemplateEnrollmentFieldWithDefaults() *ModelsTemplateEnrollmentField

NewModelsTemplateEnrollmentFieldWithDefaults instantiates a new ModelsTemplateEnrollmentField 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 (*ModelsTemplateEnrollmentField) GetDataType ¶

func (o *ModelsTemplateEnrollmentField) GetDataType() int32

GetDataType returns the DataType field value if set, zero value otherwise.

func (*ModelsTemplateEnrollmentField) GetDataTypeOk ¶

func (o *ModelsTemplateEnrollmentField) GetDataTypeOk() (*int32, bool)

GetDataTypeOk returns a tuple with the DataType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateEnrollmentField) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateEnrollmentField) GetIdOk ¶

func (o *ModelsTemplateEnrollmentField) 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 (*ModelsTemplateEnrollmentField) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsTemplateEnrollmentField) GetNameOk ¶

func (o *ModelsTemplateEnrollmentField) 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 (*ModelsTemplateEnrollmentField) GetOptions ¶

func (o *ModelsTemplateEnrollmentField) GetOptions() []string

GetOptions returns the Options field value if set, zero value otherwise.

func (*ModelsTemplateEnrollmentField) GetOptionsOk ¶

func (o *ModelsTemplateEnrollmentField) GetOptionsOk() ([]string, bool)

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateEnrollmentField) HasDataType ¶

func (o *ModelsTemplateEnrollmentField) HasDataType() bool

HasDataType returns a boolean if a field has been set.

func (*ModelsTemplateEnrollmentField) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsTemplateEnrollmentField) HasName ¶

func (o *ModelsTemplateEnrollmentField) HasName() bool

HasName returns a boolean if a field has been set.

func (*ModelsTemplateEnrollmentField) HasOptions ¶

func (o *ModelsTemplateEnrollmentField) HasOptions() bool

HasOptions returns a boolean if a field has been set.

func (ModelsTemplateEnrollmentField) MarshalJSON ¶

func (o ModelsTemplateEnrollmentField) MarshalJSON() ([]byte, error)

func (*ModelsTemplateEnrollmentField) SetDataType ¶

func (o *ModelsTemplateEnrollmentField) SetDataType(v int32)

SetDataType gets a reference to the given int32 and assigns it to the DataType field.

func (*ModelsTemplateEnrollmentField) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateEnrollmentField) SetName ¶

func (o *ModelsTemplateEnrollmentField) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsTemplateEnrollmentField) SetOptions ¶

func (o *ModelsTemplateEnrollmentField) SetOptions(v []string)

SetOptions gets a reference to the given []string and assigns it to the Options field.

func (ModelsTemplateEnrollmentField) ToMap ¶

func (o ModelsTemplateEnrollmentField) ToMap() (map[string]interface{}, error)

func (*ModelsTemplateEnrollmentField) UnmarshalJSON ¶

func (o *ModelsTemplateEnrollmentField) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateMetadataField ¶

type ModelsTemplateMetadataField struct {
	Id                   *int32  `json:"Id,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	MetadataId           *int32  `json:"MetadataId,omitempty"`
	Validation           *string `json:"Validation,omitempty"`
	Enrollment           *int32  `json:"Enrollment,omitempty"`
	Message              *string `json:"Message,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateMetadataField struct for ModelsTemplateMetadataField

func NewModelsTemplateMetadataField ¶

func NewModelsTemplateMetadataField() *ModelsTemplateMetadataField

NewModelsTemplateMetadataField instantiates a new ModelsTemplateMetadataField 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 NewModelsTemplateMetadataFieldWithDefaults ¶

func NewModelsTemplateMetadataFieldWithDefaults() *ModelsTemplateMetadataField

NewModelsTemplateMetadataFieldWithDefaults instantiates a new ModelsTemplateMetadataField 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 (*ModelsTemplateMetadataField) GetDefaultValue ¶

func (o *ModelsTemplateMetadataField) GetDefaultValue() string

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*ModelsTemplateMetadataField) GetDefaultValueOk ¶

func (o *ModelsTemplateMetadataField) GetDefaultValueOk() (*string, bool)

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateMetadataField) GetEnrollment ¶

func (o *ModelsTemplateMetadataField) GetEnrollment() int32

GetEnrollment returns the Enrollment field value if set, zero value otherwise.

func (*ModelsTemplateMetadataField) GetEnrollmentOk ¶

func (o *ModelsTemplateMetadataField) GetEnrollmentOk() (*int32, bool)

GetEnrollmentOk returns a tuple with the Enrollment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateMetadataField) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateMetadataField) GetIdOk ¶

func (o *ModelsTemplateMetadataField) 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 (*ModelsTemplateMetadataField) GetMessage ¶

func (o *ModelsTemplateMetadataField) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ModelsTemplateMetadataField) GetMessageOk ¶

func (o *ModelsTemplateMetadataField) 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 (*ModelsTemplateMetadataField) GetMetadataId ¶

func (o *ModelsTemplateMetadataField) GetMetadataId() int32

GetMetadataId returns the MetadataId field value if set, zero value otherwise.

func (*ModelsTemplateMetadataField) GetMetadataIdOk ¶

func (o *ModelsTemplateMetadataField) GetMetadataIdOk() (*int32, bool)

GetMetadataIdOk returns a tuple with the MetadataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateMetadataField) GetValidation ¶

func (o *ModelsTemplateMetadataField) GetValidation() string

GetValidation returns the Validation field value if set, zero value otherwise.

func (*ModelsTemplateMetadataField) GetValidationOk ¶

func (o *ModelsTemplateMetadataField) GetValidationOk() (*string, bool)

GetValidationOk returns a tuple with the Validation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateMetadataField) HasDefaultValue ¶

func (o *ModelsTemplateMetadataField) HasDefaultValue() bool

HasDefaultValue returns a boolean if a field has been set.

func (*ModelsTemplateMetadataField) HasEnrollment ¶

func (o *ModelsTemplateMetadataField) HasEnrollment() bool

HasEnrollment returns a boolean if a field has been set.

func (*ModelsTemplateMetadataField) HasId ¶

func (o *ModelsTemplateMetadataField) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsTemplateMetadataField) HasMessage ¶

func (o *ModelsTemplateMetadataField) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ModelsTemplateMetadataField) HasMetadataId ¶

func (o *ModelsTemplateMetadataField) HasMetadataId() bool

HasMetadataId returns a boolean if a field has been set.

func (*ModelsTemplateMetadataField) HasValidation ¶

func (o *ModelsTemplateMetadataField) HasValidation() bool

HasValidation returns a boolean if a field has been set.

func (ModelsTemplateMetadataField) MarshalJSON ¶

func (o ModelsTemplateMetadataField) MarshalJSON() ([]byte, error)

func (*ModelsTemplateMetadataField) SetDefaultValue ¶

func (o *ModelsTemplateMetadataField) SetDefaultValue(v string)

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*ModelsTemplateMetadataField) SetEnrollment ¶

func (o *ModelsTemplateMetadataField) SetEnrollment(v int32)

SetEnrollment gets a reference to the given int32 and assigns it to the Enrollment field.

func (*ModelsTemplateMetadataField) SetId ¶

func (o *ModelsTemplateMetadataField) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateMetadataField) SetMessage ¶

func (o *ModelsTemplateMetadataField) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ModelsTemplateMetadataField) SetMetadataId ¶

func (o *ModelsTemplateMetadataField) SetMetadataId(v int32)

SetMetadataId gets a reference to the given int32 and assigns it to the MetadataId field.

func (*ModelsTemplateMetadataField) SetValidation ¶

func (o *ModelsTemplateMetadataField) SetValidation(v string)

SetValidation gets a reference to the given string and assigns it to the Validation field.

func (ModelsTemplateMetadataField) ToMap ¶

func (o ModelsTemplateMetadataField) ToMap() (map[string]interface{}, error)

func (*ModelsTemplateMetadataField) UnmarshalJSON ¶

func (o *ModelsTemplateMetadataField) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateRegex ¶

type ModelsTemplateRegex struct {
	TemplateId           *int32  `json:"TemplateId,omitempty"`
	SubjectPart          *string `json:"SubjectPart,omitempty"`
	Regex                *string `json:"Regex,omitempty"`
	Error                *string `json:"Error,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateRegex struct for ModelsTemplateRegex

func NewModelsTemplateRegex ¶

func NewModelsTemplateRegex() *ModelsTemplateRegex

NewModelsTemplateRegex instantiates a new ModelsTemplateRegex 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 NewModelsTemplateRegexWithDefaults ¶

func NewModelsTemplateRegexWithDefaults() *ModelsTemplateRegex

NewModelsTemplateRegexWithDefaults instantiates a new ModelsTemplateRegex 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 (*ModelsTemplateRegex) GetError ¶

func (o *ModelsTemplateRegex) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ModelsTemplateRegex) GetErrorOk ¶

func (o *ModelsTemplateRegex) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRegex) GetRegex ¶

func (o *ModelsTemplateRegex) GetRegex() string

GetRegex returns the Regex field value if set, zero value otherwise.

func (*ModelsTemplateRegex) GetRegexOk ¶

func (o *ModelsTemplateRegex) GetRegexOk() (*string, bool)

GetRegexOk returns a tuple with the Regex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRegex) GetSubjectPart ¶

func (o *ModelsTemplateRegex) GetSubjectPart() string

GetSubjectPart returns the SubjectPart field value if set, zero value otherwise.

func (*ModelsTemplateRegex) GetSubjectPartOk ¶

func (o *ModelsTemplateRegex) GetSubjectPartOk() (*string, bool)

GetSubjectPartOk returns a tuple with the SubjectPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRegex) GetTemplateId ¶

func (o *ModelsTemplateRegex) GetTemplateId() int32

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ModelsTemplateRegex) GetTemplateIdOk ¶

func (o *ModelsTemplateRegex) GetTemplateIdOk() (*int32, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRegex) HasError ¶

func (o *ModelsTemplateRegex) HasError() bool

HasError returns a boolean if a field has been set.

func (*ModelsTemplateRegex) HasRegex ¶

func (o *ModelsTemplateRegex) HasRegex() bool

HasRegex returns a boolean if a field has been set.

func (*ModelsTemplateRegex) HasSubjectPart ¶

func (o *ModelsTemplateRegex) HasSubjectPart() bool

HasSubjectPart returns a boolean if a field has been set.

func (*ModelsTemplateRegex) HasTemplateId ¶

func (o *ModelsTemplateRegex) HasTemplateId() bool

HasTemplateId returns a boolean if a field has been set.

func (ModelsTemplateRegex) MarshalJSON ¶

func (o ModelsTemplateRegex) MarshalJSON() ([]byte, error)

func (*ModelsTemplateRegex) SetError ¶

func (o *ModelsTemplateRegex) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*ModelsTemplateRegex) SetRegex ¶

func (o *ModelsTemplateRegex) SetRegex(v string)

SetRegex gets a reference to the given string and assigns it to the Regex field.

func (*ModelsTemplateRegex) SetSubjectPart ¶

func (o *ModelsTemplateRegex) SetSubjectPart(v string)

SetSubjectPart gets a reference to the given string and assigns it to the SubjectPart field.

func (*ModelsTemplateRegex) SetTemplateId ¶

func (o *ModelsTemplateRegex) SetTemplateId(v int32)

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (ModelsTemplateRegex) ToMap ¶

func (o ModelsTemplateRegex) ToMap() (map[string]interface{}, error)

func (*ModelsTemplateRegex) UnmarshalJSON ¶

func (o *ModelsTemplateRegex) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateRetrievalResponse ¶

type ModelsTemplateRetrievalResponse struct {
	Id                     *int32                                                        `json:"Id,omitempty"`
	CommonName             *string                                                       `json:"CommonName,omitempty"`
	TemplateName           *string                                                       `json:"TemplateName,omitempty"`
	Oid                    *string                                                       `json:"Oid,omitempty"`
	KeySize                *string                                                       `json:"KeySize,omitempty"`
	KeyType                *string                                                       `json:"KeyType,omitempty"`
	ForestRoot             *string                                                       `json:"ForestRoot,omitempty"`
	ConfigurationTenant    *string                                                       `json:"ConfigurationTenant,omitempty"`
	FriendlyName           *string                                                       `json:"FriendlyName,omitempty"`
	KeyRetention           *int32                                                        `json:"KeyRetention,omitempty"`
	KeyRetentionDays       *int32                                                        `json:"KeyRetentionDays,omitempty"`
	KeyArchival            *bool                                                         `json:"KeyArchival,omitempty"`
	EnrollmentFields       []ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel `json:"EnrollmentFields,omitempty"`
	MetadataFields         []ModelsTemplateRetrievalResponseTemplateMetadataFieldModel   `json:"MetadataFields,omitempty"`
	AllowedEnrollmentTypes *int32                                                        `json:"AllowedEnrollmentTypes,omitempty"`
	TemplateRegexes        []ModelsTemplateRetrievalResponseTemplateRegexModel           `json:"TemplateRegexes,omitempty"`
	TemplateDefaults       []ModelsTemplateRetrievalResponseTemplateDefaultModel         `json:"TemplateDefaults,omitempty"`
	TemplatePolicy         *ModelsTemplateRetrievalResponseTemplatePolicyModel           `json:"TemplatePolicy,omitempty"`
	UseAllowedRequesters   *bool                                                         `json:"UseAllowedRequesters,omitempty"`
	AllowedRequesters      []string                                                      `json:"AllowedRequesters,omitempty"`
	DisplayName            *string                                                       `json:"DisplayName,omitempty"`
	RFCEnforcement         *bool                                                         `json:"RFCEnforcement,omitempty"`
	RequiresApproval       *bool                                                         `json:"RequiresApproval,omitempty"`
	KeyUsage               *int32                                                        `json:"KeyUsage,omitempty"`
	ExtendedKeyUsages      []ModelsTemplateRetrievalResponseExtendedKeyUsageModel        `json:"ExtendedKeyUsages,omitempty"`
	Curve                  NullableString                                                `json:"Curve,omitempty"`
	AdditionalProperties   map[string]interface{}
}

ModelsTemplateRetrievalResponse struct for ModelsTemplateRetrievalResponse

func NewModelsTemplateRetrievalResponse ¶

func NewModelsTemplateRetrievalResponse() *ModelsTemplateRetrievalResponse

NewModelsTemplateRetrievalResponse instantiates a new ModelsTemplateRetrievalResponse 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 NewModelsTemplateRetrievalResponseWithDefaults ¶

func NewModelsTemplateRetrievalResponseWithDefaults() *ModelsTemplateRetrievalResponse

NewModelsTemplateRetrievalResponseWithDefaults instantiates a new ModelsTemplateRetrievalResponse 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 (*ModelsTemplateRetrievalResponse) GetAllowedEnrollmentTypes ¶

func (o *ModelsTemplateRetrievalResponse) GetAllowedEnrollmentTypes() int32

GetAllowedEnrollmentTypes returns the AllowedEnrollmentTypes field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetAllowedEnrollmentTypesOk ¶

func (o *ModelsTemplateRetrievalResponse) GetAllowedEnrollmentTypesOk() (*int32, bool)

GetAllowedEnrollmentTypesOk returns a tuple with the AllowedEnrollmentTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetAllowedRequesters ¶

func (o *ModelsTemplateRetrievalResponse) GetAllowedRequesters() []string

GetAllowedRequesters returns the AllowedRequesters field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetAllowedRequestersOk ¶

func (o *ModelsTemplateRetrievalResponse) GetAllowedRequestersOk() ([]string, bool)

GetAllowedRequestersOk returns a tuple with the AllowedRequesters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetCommonName ¶

func (o *ModelsTemplateRetrievalResponse) GetCommonName() string

GetCommonName returns the CommonName field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetCommonNameOk ¶

func (o *ModelsTemplateRetrievalResponse) GetCommonNameOk() (*string, bool)

GetCommonNameOk returns a tuple with the CommonName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetConfigurationTenant ¶

func (o *ModelsTemplateRetrievalResponse) GetConfigurationTenant() string

GetConfigurationTenant returns the ConfigurationTenant field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetConfigurationTenantOk ¶

func (o *ModelsTemplateRetrievalResponse) GetConfigurationTenantOk() (*string, bool)

GetConfigurationTenantOk returns a tuple with the ConfigurationTenant field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetCurve ¶

GetCurve returns the Curve field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsTemplateRetrievalResponse) GetCurveOk ¶

func (o *ModelsTemplateRetrievalResponse) GetCurveOk() (*string, bool)

GetCurveOk returns a tuple with the Curve field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsTemplateRetrievalResponse) GetDisplayName ¶

func (o *ModelsTemplateRetrievalResponse) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetDisplayNameOk ¶

func (o *ModelsTemplateRetrievalResponse) GetDisplayNameOk() (*string, bool)

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetEnrollmentFields ¶

GetEnrollmentFields returns the EnrollmentFields field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetEnrollmentFieldsOk ¶

GetEnrollmentFieldsOk returns a tuple with the EnrollmentFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetExtendedKeyUsages ¶

GetExtendedKeyUsages returns the ExtendedKeyUsages field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetExtendedKeyUsagesOk ¶

GetExtendedKeyUsagesOk returns a tuple with the ExtendedKeyUsages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetForestRoot ¶

func (o *ModelsTemplateRetrievalResponse) GetForestRoot() string

GetForestRoot returns the ForestRoot field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetForestRootOk ¶

func (o *ModelsTemplateRetrievalResponse) GetForestRootOk() (*string, bool)

GetForestRootOk returns a tuple with the ForestRoot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetFriendlyName ¶

func (o *ModelsTemplateRetrievalResponse) GetFriendlyName() string

GetFriendlyName returns the FriendlyName field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetFriendlyNameOk ¶

func (o *ModelsTemplateRetrievalResponse) GetFriendlyNameOk() (*string, bool)

GetFriendlyNameOk returns a tuple with the FriendlyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetIdOk ¶

func (o *ModelsTemplateRetrievalResponse) 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 (*ModelsTemplateRetrievalResponse) GetKeyArchival ¶

func (o *ModelsTemplateRetrievalResponse) GetKeyArchival() bool

GetKeyArchival returns the KeyArchival field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetKeyArchivalOk ¶

func (o *ModelsTemplateRetrievalResponse) GetKeyArchivalOk() (*bool, bool)

GetKeyArchivalOk returns a tuple with the KeyArchival field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetKeyRetention ¶

func (o *ModelsTemplateRetrievalResponse) GetKeyRetention() int32

GetKeyRetention returns the KeyRetention field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetKeyRetentionDays ¶

func (o *ModelsTemplateRetrievalResponse) GetKeyRetentionDays() int32

GetKeyRetentionDays returns the KeyRetentionDays field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetKeyRetentionDaysOk ¶

func (o *ModelsTemplateRetrievalResponse) GetKeyRetentionDaysOk() (*int32, bool)

GetKeyRetentionDaysOk returns a tuple with the KeyRetentionDays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetKeyRetentionOk ¶

func (o *ModelsTemplateRetrievalResponse) GetKeyRetentionOk() (*int32, bool)

GetKeyRetentionOk returns a tuple with the KeyRetention field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetKeySize ¶

func (o *ModelsTemplateRetrievalResponse) GetKeySize() string

GetKeySize returns the KeySize field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetKeySizeOk ¶

func (o *ModelsTemplateRetrievalResponse) GetKeySizeOk() (*string, bool)

GetKeySizeOk returns a tuple with the KeySize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetKeyType ¶

func (o *ModelsTemplateRetrievalResponse) GetKeyType() string

GetKeyType returns the KeyType field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetKeyTypeOk ¶

func (o *ModelsTemplateRetrievalResponse) GetKeyTypeOk() (*string, bool)

GetKeyTypeOk returns a tuple with the KeyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetKeyUsage ¶

func (o *ModelsTemplateRetrievalResponse) GetKeyUsage() int32

GetKeyUsage returns the KeyUsage field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetKeyUsageOk ¶

func (o *ModelsTemplateRetrievalResponse) GetKeyUsageOk() (*int32, bool)

GetKeyUsageOk returns a tuple with the KeyUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetMetadataFields ¶

GetMetadataFields returns the MetadataFields field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetMetadataFieldsOk ¶

GetMetadataFieldsOk returns a tuple with the MetadataFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetOid ¶

GetOid returns the Oid field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetOidOk ¶

func (o *ModelsTemplateRetrievalResponse) GetOidOk() (*string, bool)

GetOidOk returns a tuple with the Oid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetRFCEnforcement ¶

func (o *ModelsTemplateRetrievalResponse) GetRFCEnforcement() bool

GetRFCEnforcement returns the RFCEnforcement field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetRFCEnforcementOk ¶

func (o *ModelsTemplateRetrievalResponse) GetRFCEnforcementOk() (*bool, bool)

GetRFCEnforcementOk returns a tuple with the RFCEnforcement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetRequiresApproval ¶

func (o *ModelsTemplateRetrievalResponse) GetRequiresApproval() bool

GetRequiresApproval returns the RequiresApproval field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetRequiresApprovalOk ¶

func (o *ModelsTemplateRetrievalResponse) GetRequiresApprovalOk() (*bool, bool)

GetRequiresApprovalOk returns a tuple with the RequiresApproval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetTemplateDefaults ¶

GetTemplateDefaults returns the TemplateDefaults field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetTemplateDefaultsOk ¶

GetTemplateDefaultsOk returns a tuple with the TemplateDefaults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetTemplateName ¶

func (o *ModelsTemplateRetrievalResponse) GetTemplateName() string

GetTemplateName returns the TemplateName field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetTemplateNameOk ¶

func (o *ModelsTemplateRetrievalResponse) GetTemplateNameOk() (*string, bool)

GetTemplateNameOk returns a tuple with the TemplateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetTemplatePolicy ¶

GetTemplatePolicy returns the TemplatePolicy field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetTemplatePolicyOk ¶

GetTemplatePolicyOk returns a tuple with the TemplatePolicy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetTemplateRegexes ¶

GetTemplateRegexes returns the TemplateRegexes field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetTemplateRegexesOk ¶

GetTemplateRegexesOk returns a tuple with the TemplateRegexes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) GetUseAllowedRequesters ¶

func (o *ModelsTemplateRetrievalResponse) GetUseAllowedRequesters() bool

GetUseAllowedRequesters returns the UseAllowedRequesters field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponse) GetUseAllowedRequestersOk ¶

func (o *ModelsTemplateRetrievalResponse) GetUseAllowedRequestersOk() (*bool, bool)

GetUseAllowedRequestersOk returns a tuple with the UseAllowedRequesters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponse) HasAllowedEnrollmentTypes ¶

func (o *ModelsTemplateRetrievalResponse) HasAllowedEnrollmentTypes() bool

HasAllowedEnrollmentTypes returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasAllowedRequesters ¶

func (o *ModelsTemplateRetrievalResponse) HasAllowedRequesters() bool

HasAllowedRequesters returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasCommonName ¶

func (o *ModelsTemplateRetrievalResponse) HasCommonName() bool

HasCommonName returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasConfigurationTenant ¶

func (o *ModelsTemplateRetrievalResponse) HasConfigurationTenant() bool

HasConfigurationTenant returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasCurve ¶

func (o *ModelsTemplateRetrievalResponse) HasCurve() bool

HasCurve returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasDisplayName ¶

func (o *ModelsTemplateRetrievalResponse) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasEnrollmentFields ¶

func (o *ModelsTemplateRetrievalResponse) HasEnrollmentFields() bool

HasEnrollmentFields returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasExtendedKeyUsages ¶

func (o *ModelsTemplateRetrievalResponse) HasExtendedKeyUsages() bool

HasExtendedKeyUsages returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasForestRoot ¶

func (o *ModelsTemplateRetrievalResponse) HasForestRoot() bool

HasForestRoot returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasFriendlyName ¶

func (o *ModelsTemplateRetrievalResponse) HasFriendlyName() bool

HasFriendlyName returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasKeyArchival ¶

func (o *ModelsTemplateRetrievalResponse) HasKeyArchival() bool

HasKeyArchival returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasKeyRetention ¶

func (o *ModelsTemplateRetrievalResponse) HasKeyRetention() bool

HasKeyRetention returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasKeyRetentionDays ¶

func (o *ModelsTemplateRetrievalResponse) HasKeyRetentionDays() bool

HasKeyRetentionDays returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasKeySize ¶

func (o *ModelsTemplateRetrievalResponse) HasKeySize() bool

HasKeySize returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasKeyType ¶

func (o *ModelsTemplateRetrievalResponse) HasKeyType() bool

HasKeyType returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasKeyUsage ¶

func (o *ModelsTemplateRetrievalResponse) HasKeyUsage() bool

HasKeyUsage returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasMetadataFields ¶

func (o *ModelsTemplateRetrievalResponse) HasMetadataFields() bool

HasMetadataFields returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasOid ¶

HasOid returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasRFCEnforcement ¶

func (o *ModelsTemplateRetrievalResponse) HasRFCEnforcement() bool

HasRFCEnforcement returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasRequiresApproval ¶

func (o *ModelsTemplateRetrievalResponse) HasRequiresApproval() bool

HasRequiresApproval returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasTemplateDefaults ¶

func (o *ModelsTemplateRetrievalResponse) HasTemplateDefaults() bool

HasTemplateDefaults returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasTemplateName ¶

func (o *ModelsTemplateRetrievalResponse) HasTemplateName() bool

HasTemplateName returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasTemplatePolicy ¶

func (o *ModelsTemplateRetrievalResponse) HasTemplatePolicy() bool

HasTemplatePolicy returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasTemplateRegexes ¶

func (o *ModelsTemplateRetrievalResponse) HasTemplateRegexes() bool

HasTemplateRegexes returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponse) HasUseAllowedRequesters ¶

func (o *ModelsTemplateRetrievalResponse) HasUseAllowedRequesters() bool

HasUseAllowedRequesters returns a boolean if a field has been set.

func (ModelsTemplateRetrievalResponse) MarshalJSON ¶

func (o ModelsTemplateRetrievalResponse) MarshalJSON() ([]byte, error)

func (*ModelsTemplateRetrievalResponse) SetAllowedEnrollmentTypes ¶

func (o *ModelsTemplateRetrievalResponse) SetAllowedEnrollmentTypes(v int32)

SetAllowedEnrollmentTypes gets a reference to the given int32 and assigns it to the AllowedEnrollmentTypes field.

func (*ModelsTemplateRetrievalResponse) SetAllowedRequesters ¶

func (o *ModelsTemplateRetrievalResponse) SetAllowedRequesters(v []string)

SetAllowedRequesters gets a reference to the given []string and assigns it to the AllowedRequesters field.

func (*ModelsTemplateRetrievalResponse) SetCommonName ¶

func (o *ModelsTemplateRetrievalResponse) SetCommonName(v string)

SetCommonName gets a reference to the given string and assigns it to the CommonName field.

func (*ModelsTemplateRetrievalResponse) SetConfigurationTenant ¶

func (o *ModelsTemplateRetrievalResponse) SetConfigurationTenant(v string)

SetConfigurationTenant gets a reference to the given string and assigns it to the ConfigurationTenant field.

func (*ModelsTemplateRetrievalResponse) SetCurve ¶

func (o *ModelsTemplateRetrievalResponse) SetCurve(v string)

SetCurve gets a reference to the given NullableString and assigns it to the Curve field.

func (*ModelsTemplateRetrievalResponse) SetCurveNil ¶

func (o *ModelsTemplateRetrievalResponse) SetCurveNil()

SetCurveNil sets the value for Curve to be an explicit nil

func (*ModelsTemplateRetrievalResponse) SetDisplayName ¶

func (o *ModelsTemplateRetrievalResponse) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsTemplateRetrievalResponse) SetEnrollmentFields ¶

SetEnrollmentFields gets a reference to the given []ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel and assigns it to the EnrollmentFields field.

func (*ModelsTemplateRetrievalResponse) SetExtendedKeyUsages ¶

SetExtendedKeyUsages gets a reference to the given []ModelsTemplateRetrievalResponseExtendedKeyUsageModel and assigns it to the ExtendedKeyUsages field.

func (*ModelsTemplateRetrievalResponse) SetForestRoot ¶

func (o *ModelsTemplateRetrievalResponse) SetForestRoot(v string)

SetForestRoot gets a reference to the given string and assigns it to the ForestRoot field.

func (*ModelsTemplateRetrievalResponse) SetFriendlyName ¶

func (o *ModelsTemplateRetrievalResponse) SetFriendlyName(v string)

SetFriendlyName gets a reference to the given string and assigns it to the FriendlyName field.

func (*ModelsTemplateRetrievalResponse) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateRetrievalResponse) SetKeyArchival ¶

func (o *ModelsTemplateRetrievalResponse) SetKeyArchival(v bool)

SetKeyArchival gets a reference to the given bool and assigns it to the KeyArchival field.

func (*ModelsTemplateRetrievalResponse) SetKeyRetention ¶

func (o *ModelsTemplateRetrievalResponse) SetKeyRetention(v int32)

SetKeyRetention gets a reference to the given int32 and assigns it to the KeyRetention field.

func (*ModelsTemplateRetrievalResponse) SetKeyRetentionDays ¶

func (o *ModelsTemplateRetrievalResponse) SetKeyRetentionDays(v int32)

SetKeyRetentionDays gets a reference to the given int32 and assigns it to the KeyRetentionDays field.

func (*ModelsTemplateRetrievalResponse) SetKeySize ¶

func (o *ModelsTemplateRetrievalResponse) SetKeySize(v string)

SetKeySize gets a reference to the given string and assigns it to the KeySize field.

func (*ModelsTemplateRetrievalResponse) SetKeyType ¶

func (o *ModelsTemplateRetrievalResponse) SetKeyType(v string)

SetKeyType gets a reference to the given string and assigns it to the KeyType field.

func (*ModelsTemplateRetrievalResponse) SetKeyUsage ¶

func (o *ModelsTemplateRetrievalResponse) SetKeyUsage(v int32)

SetKeyUsage gets a reference to the given int32 and assigns it to the KeyUsage field.

func (*ModelsTemplateRetrievalResponse) SetMetadataFields ¶

SetMetadataFields gets a reference to the given []ModelsTemplateRetrievalResponseTemplateMetadataFieldModel and assigns it to the MetadataFields field.

func (*ModelsTemplateRetrievalResponse) SetOid ¶

SetOid gets a reference to the given string and assigns it to the Oid field.

func (*ModelsTemplateRetrievalResponse) SetRFCEnforcement ¶

func (o *ModelsTemplateRetrievalResponse) SetRFCEnforcement(v bool)

SetRFCEnforcement gets a reference to the given bool and assigns it to the RFCEnforcement field.

func (*ModelsTemplateRetrievalResponse) SetRequiresApproval ¶

func (o *ModelsTemplateRetrievalResponse) SetRequiresApproval(v bool)

SetRequiresApproval gets a reference to the given bool and assigns it to the RequiresApproval field.

func (*ModelsTemplateRetrievalResponse) SetTemplateDefaults ¶

SetTemplateDefaults gets a reference to the given []ModelsTemplateRetrievalResponseTemplateDefaultModel and assigns it to the TemplateDefaults field.

func (*ModelsTemplateRetrievalResponse) SetTemplateName ¶

func (o *ModelsTemplateRetrievalResponse) SetTemplateName(v string)

SetTemplateName gets a reference to the given string and assigns it to the TemplateName field.

func (*ModelsTemplateRetrievalResponse) SetTemplatePolicy ¶

SetTemplatePolicy gets a reference to the given ModelsTemplateRetrievalResponseTemplatePolicyModel and assigns it to the TemplatePolicy field.

func (*ModelsTemplateRetrievalResponse) SetTemplateRegexes ¶

SetTemplateRegexes gets a reference to the given []ModelsTemplateRetrievalResponseTemplateRegexModel and assigns it to the TemplateRegexes field.

func (*ModelsTemplateRetrievalResponse) SetUseAllowedRequesters ¶

func (o *ModelsTemplateRetrievalResponse) SetUseAllowedRequesters(v bool)

SetUseAllowedRequesters gets a reference to the given bool and assigns it to the UseAllowedRequesters field.

func (ModelsTemplateRetrievalResponse) ToMap ¶

func (o ModelsTemplateRetrievalResponse) ToMap() (map[string]interface{}, error)

func (*ModelsTemplateRetrievalResponse) UnmarshalJSON ¶

func (o *ModelsTemplateRetrievalResponse) UnmarshalJSON(bytes []byte) (err error)

func (*ModelsTemplateRetrievalResponse) UnsetCurve ¶

func (o *ModelsTemplateRetrievalResponse) UnsetCurve()

UnsetCurve ensures that no value is present for Curve, not even an explicit nil

type ModelsTemplateRetrievalResponseExtendedKeyUsageModel ¶

type ModelsTemplateRetrievalResponseExtendedKeyUsageModel struct {
	Id                   *int32  `json:"Id,omitempty"`
	Oid                  *string `json:"Oid,omitempty"`
	DisplayName          *string `json:"DisplayName,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateRetrievalResponseExtendedKeyUsageModel struct for ModelsTemplateRetrievalResponseExtendedKeyUsageModel

func NewModelsTemplateRetrievalResponseExtendedKeyUsageModel ¶

func NewModelsTemplateRetrievalResponseExtendedKeyUsageModel() *ModelsTemplateRetrievalResponseExtendedKeyUsageModel

NewModelsTemplateRetrievalResponseExtendedKeyUsageModel instantiates a new ModelsTemplateRetrievalResponseExtendedKeyUsageModel 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 NewModelsTemplateRetrievalResponseExtendedKeyUsageModelWithDefaults ¶

func NewModelsTemplateRetrievalResponseExtendedKeyUsageModelWithDefaults() *ModelsTemplateRetrievalResponseExtendedKeyUsageModel

NewModelsTemplateRetrievalResponseExtendedKeyUsageModelWithDefaults instantiates a new ModelsTemplateRetrievalResponseExtendedKeyUsageModel 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 (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) GetDisplayName ¶

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) GetDisplayNameOk ¶

GetDisplayNameOk returns a tuple with the DisplayName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) GetIdOk ¶

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 (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) GetOid ¶

GetOid returns the Oid field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) GetOidOk ¶

GetOidOk returns a tuple with the Oid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) HasDisplayName ¶

HasDisplayName returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) HasOid ¶

HasOid returns a boolean if a field has been set.

func (ModelsTemplateRetrievalResponseExtendedKeyUsageModel) MarshalJSON ¶

func (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) SetDisplayName ¶

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) SetOid ¶

SetOid gets a reference to the given string and assigns it to the Oid field.

func (ModelsTemplateRetrievalResponseExtendedKeyUsageModel) ToMap ¶

func (*ModelsTemplateRetrievalResponseExtendedKeyUsageModel) UnmarshalJSON ¶

func (o *ModelsTemplateRetrievalResponseExtendedKeyUsageModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateRetrievalResponseTemplateDefaultModel ¶

type ModelsTemplateRetrievalResponseTemplateDefaultModel struct {
	SubjectPart          *string `json:"SubjectPart,omitempty"`
	Value                *string `json:"Value,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateRetrievalResponseTemplateDefaultModel struct for ModelsTemplateRetrievalResponseTemplateDefaultModel

func NewModelsTemplateRetrievalResponseTemplateDefaultModel ¶

func NewModelsTemplateRetrievalResponseTemplateDefaultModel() *ModelsTemplateRetrievalResponseTemplateDefaultModel

NewModelsTemplateRetrievalResponseTemplateDefaultModel instantiates a new ModelsTemplateRetrievalResponseTemplateDefaultModel 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 NewModelsTemplateRetrievalResponseTemplateDefaultModelWithDefaults ¶

func NewModelsTemplateRetrievalResponseTemplateDefaultModelWithDefaults() *ModelsTemplateRetrievalResponseTemplateDefaultModel

NewModelsTemplateRetrievalResponseTemplateDefaultModelWithDefaults instantiates a new ModelsTemplateRetrievalResponseTemplateDefaultModel 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 (*ModelsTemplateRetrievalResponseTemplateDefaultModel) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateDefaultModel) GetSubjectPartOk ¶

GetSubjectPartOk returns a tuple with the SubjectPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplateDefaultModel) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateDefaultModel) 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 (*ModelsTemplateRetrievalResponseTemplateDefaultModel) HasSubjectPart ¶

HasSubjectPart returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateDefaultModel) HasValue ¶

HasValue returns a boolean if a field has been set.

func (ModelsTemplateRetrievalResponseTemplateDefaultModel) MarshalJSON ¶

func (*ModelsTemplateRetrievalResponseTemplateDefaultModel) SetSubjectPart ¶

SetSubjectPart gets a reference to the given string and assigns it to the SubjectPart field.

func (*ModelsTemplateRetrievalResponseTemplateDefaultModel) SetValue ¶

SetValue gets a reference to the given string and assigns it to the Value field.

func (ModelsTemplateRetrievalResponseTemplateDefaultModel) ToMap ¶

func (*ModelsTemplateRetrievalResponseTemplateDefaultModel) UnmarshalJSON ¶

func (o *ModelsTemplateRetrievalResponseTemplateDefaultModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel ¶

type ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel struct {
	Id                   *int32   `json:"Id,omitempty"`
	Name                 *string  `json:"Name,omitempty"`
	Options              []string `json:"Options,omitempty"`
	DataType             *int32   `json:"DataType,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel struct for ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel

func NewModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel ¶

func NewModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel() *ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel

NewModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel instantiates a new ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel 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 NewModelsTemplateRetrievalResponseTemplateEnrollmentFieldModelWithDefaults ¶

func NewModelsTemplateRetrievalResponseTemplateEnrollmentFieldModelWithDefaults() *ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel

NewModelsTemplateRetrievalResponseTemplateEnrollmentFieldModelWithDefaults instantiates a new ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel 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 (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) GetDataType ¶

GetDataType returns the DataType field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) GetDataTypeOk ¶

GetDataTypeOk returns a tuple with the DataType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) GetIdOk ¶

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 (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) 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 (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) GetOptions ¶

GetOptions returns the Options field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) GetOptionsOk ¶

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) HasDataType ¶

HasDataType returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) HasName ¶

HasName returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) HasOptions ¶

HasOptions returns a boolean if a field has been set.

func (ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) MarshalJSON ¶

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) SetDataType ¶

SetDataType gets a reference to the given int32 and assigns it to the DataType field.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) SetOptions ¶

SetOptions gets a reference to the given []string and assigns it to the Options field.

func (ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) ToMap ¶

func (*ModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) UnmarshalJSON ¶

type ModelsTemplateRetrievalResponseTemplateMetadataFieldModel ¶

type ModelsTemplateRetrievalResponseTemplateMetadataFieldModel struct {
	Id                   *int32  `json:"Id,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	MetadataId           *int32  `json:"MetadataId,omitempty"`
	Validation           *string `json:"Validation,omitempty"`
	Enrollment           *int32  `json:"Enrollment,omitempty"`
	Message              *string `json:"Message,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateRetrievalResponseTemplateMetadataFieldModel struct for ModelsTemplateRetrievalResponseTemplateMetadataFieldModel

func NewModelsTemplateRetrievalResponseTemplateMetadataFieldModel ¶

func NewModelsTemplateRetrievalResponseTemplateMetadataFieldModel() *ModelsTemplateRetrievalResponseTemplateMetadataFieldModel

NewModelsTemplateRetrievalResponseTemplateMetadataFieldModel instantiates a new ModelsTemplateRetrievalResponseTemplateMetadataFieldModel 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 NewModelsTemplateRetrievalResponseTemplateMetadataFieldModelWithDefaults ¶

func NewModelsTemplateRetrievalResponseTemplateMetadataFieldModelWithDefaults() *ModelsTemplateRetrievalResponseTemplateMetadataFieldModel

NewModelsTemplateRetrievalResponseTemplateMetadataFieldModelWithDefaults instantiates a new ModelsTemplateRetrievalResponseTemplateMetadataFieldModel 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 (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetDefaultValue ¶

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetDefaultValueOk ¶

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetEnrollment ¶

GetEnrollment returns the Enrollment field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetEnrollmentOk ¶

GetEnrollmentOk returns a tuple with the Enrollment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetIdOk ¶

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 (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetMessageOk ¶

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 (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetMetadataId ¶

GetMetadataId returns the MetadataId field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetMetadataIdOk ¶

GetMetadataIdOk returns a tuple with the MetadataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetValidation ¶

GetValidation returns the Validation field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) GetValidationOk ¶

GetValidationOk returns a tuple with the Validation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) HasDefaultValue ¶

HasDefaultValue returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) HasEnrollment ¶

HasEnrollment returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) HasMetadataId ¶

HasMetadataId returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) HasValidation ¶

HasValidation returns a boolean if a field has been set.

func (ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) MarshalJSON ¶

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) SetDefaultValue ¶

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) SetEnrollment ¶

SetEnrollment gets a reference to the given int32 and assigns it to the Enrollment field.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) SetMetadataId ¶

SetMetadataId gets a reference to the given int32 and assigns it to the MetadataId field.

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) SetValidation ¶

SetValidation gets a reference to the given string and assigns it to the Validation field.

func (ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) ToMap ¶

func (*ModelsTemplateRetrievalResponseTemplateMetadataFieldModel) UnmarshalJSON ¶

type ModelsTemplateRetrievalResponseTemplatePolicyModel ¶

type ModelsTemplateRetrievalResponseTemplatePolicyModel struct {
	TemplateId           *int32   `json:"TemplateId,omitempty"`
	RSAValidKeySizes     []int32  `json:"RSAValidKeySizes,omitempty"`
	ECCValidCurves       []string `json:"ECCValidCurves,omitempty"`
	AllowKeyReuse        *bool    `json:"AllowKeyReuse,omitempty"`
	AllowWildcards       *bool    `json:"AllowWildcards,omitempty"`
	RFCEnforcement       *bool    `json:"RFCEnforcement,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateRetrievalResponseTemplatePolicyModel struct for ModelsTemplateRetrievalResponseTemplatePolicyModel

func NewModelsTemplateRetrievalResponseTemplatePolicyModel ¶

func NewModelsTemplateRetrievalResponseTemplatePolicyModel() *ModelsTemplateRetrievalResponseTemplatePolicyModel

NewModelsTemplateRetrievalResponseTemplatePolicyModel instantiates a new ModelsTemplateRetrievalResponseTemplatePolicyModel 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 NewModelsTemplateRetrievalResponseTemplatePolicyModelWithDefaults ¶

func NewModelsTemplateRetrievalResponseTemplatePolicyModelWithDefaults() *ModelsTemplateRetrievalResponseTemplatePolicyModel

NewModelsTemplateRetrievalResponseTemplatePolicyModelWithDefaults instantiates a new ModelsTemplateRetrievalResponseTemplatePolicyModel 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 (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetAllowKeyReuse ¶

GetAllowKeyReuse returns the AllowKeyReuse field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetAllowKeyReuseOk ¶

func (o *ModelsTemplateRetrievalResponseTemplatePolicyModel) GetAllowKeyReuseOk() (*bool, bool)

GetAllowKeyReuseOk returns a tuple with the AllowKeyReuse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetAllowWildcards ¶

GetAllowWildcards returns the AllowWildcards field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetAllowWildcardsOk ¶

func (o *ModelsTemplateRetrievalResponseTemplatePolicyModel) GetAllowWildcardsOk() (*bool, bool)

GetAllowWildcardsOk returns a tuple with the AllowWildcards field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetECCValidCurves ¶

GetECCValidCurves returns the ECCValidCurves field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetECCValidCurvesOk ¶

func (o *ModelsTemplateRetrievalResponseTemplatePolicyModel) GetECCValidCurvesOk() ([]string, bool)

GetECCValidCurvesOk returns a tuple with the ECCValidCurves field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetRFCEnforcement ¶

GetRFCEnforcement returns the RFCEnforcement field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetRFCEnforcementOk ¶

func (o *ModelsTemplateRetrievalResponseTemplatePolicyModel) GetRFCEnforcementOk() (*bool, bool)

GetRFCEnforcementOk returns a tuple with the RFCEnforcement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetRSAValidKeySizes ¶

func (o *ModelsTemplateRetrievalResponseTemplatePolicyModel) GetRSAValidKeySizes() []int32

GetRSAValidKeySizes returns the RSAValidKeySizes field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetRSAValidKeySizesOk ¶

func (o *ModelsTemplateRetrievalResponseTemplatePolicyModel) GetRSAValidKeySizesOk() ([]int32, bool)

GetRSAValidKeySizesOk returns a tuple with the RSAValidKeySizes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetTemplateId ¶

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) GetTemplateIdOk ¶

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) HasAllowKeyReuse ¶

HasAllowKeyReuse returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) HasAllowWildcards ¶

HasAllowWildcards returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) HasECCValidCurves ¶

HasECCValidCurves returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) HasRFCEnforcement ¶

HasRFCEnforcement returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) HasRSAValidKeySizes ¶

HasRSAValidKeySizes returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) HasTemplateId ¶

HasTemplateId returns a boolean if a field has been set.

func (ModelsTemplateRetrievalResponseTemplatePolicyModel) MarshalJSON ¶

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) SetAllowKeyReuse ¶

SetAllowKeyReuse gets a reference to the given bool and assigns it to the AllowKeyReuse field.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) SetAllowWildcards ¶

SetAllowWildcards gets a reference to the given bool and assigns it to the AllowWildcards field.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) SetECCValidCurves ¶

SetECCValidCurves gets a reference to the given []string and assigns it to the ECCValidCurves field.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) SetRFCEnforcement ¶

SetRFCEnforcement gets a reference to the given bool and assigns it to the RFCEnforcement field.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) SetRSAValidKeySizes ¶

func (o *ModelsTemplateRetrievalResponseTemplatePolicyModel) SetRSAValidKeySizes(v []int32)

SetRSAValidKeySizes gets a reference to the given []int32 and assigns it to the RSAValidKeySizes field.

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) SetTemplateId ¶

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (ModelsTemplateRetrievalResponseTemplatePolicyModel) ToMap ¶

func (*ModelsTemplateRetrievalResponseTemplatePolicyModel) UnmarshalJSON ¶

func (o *ModelsTemplateRetrievalResponseTemplatePolicyModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateRetrievalResponseTemplateRegexModel ¶

type ModelsTemplateRetrievalResponseTemplateRegexModel struct {
	TemplateId           *int32  `json:"TemplateId,omitempty"`
	SubjectPart          *string `json:"SubjectPart,omitempty"`
	Regex                *string `json:"Regex,omitempty"`
	Error                *string `json:"Error,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateRetrievalResponseTemplateRegexModel struct for ModelsTemplateRetrievalResponseTemplateRegexModel

func NewModelsTemplateRetrievalResponseTemplateRegexModel ¶

func NewModelsTemplateRetrievalResponseTemplateRegexModel() *ModelsTemplateRetrievalResponseTemplateRegexModel

NewModelsTemplateRetrievalResponseTemplateRegexModel instantiates a new ModelsTemplateRetrievalResponseTemplateRegexModel 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 NewModelsTemplateRetrievalResponseTemplateRegexModelWithDefaults ¶

func NewModelsTemplateRetrievalResponseTemplateRegexModelWithDefaults() *ModelsTemplateRetrievalResponseTemplateRegexModel

NewModelsTemplateRetrievalResponseTemplateRegexModelWithDefaults instantiates a new ModelsTemplateRetrievalResponseTemplateRegexModel 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 (*ModelsTemplateRetrievalResponseTemplateRegexModel) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) GetRegex ¶

GetRegex returns the Regex field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) GetRegexOk ¶

GetRegexOk returns a tuple with the Regex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) GetSubjectPartOk ¶

GetSubjectPartOk returns a tuple with the SubjectPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) GetTemplateId ¶

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) GetTemplateIdOk ¶

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) HasError ¶

HasError returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) HasRegex ¶

HasRegex returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) HasSubjectPart ¶

HasSubjectPart returns a boolean if a field has been set.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) HasTemplateId ¶

HasTemplateId returns a boolean if a field has been set.

func (ModelsTemplateRetrievalResponseTemplateRegexModel) MarshalJSON ¶

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) SetError ¶

SetError gets a reference to the given string and assigns it to the Error field.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) SetRegex ¶

SetRegex gets a reference to the given string and assigns it to the Regex field.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) SetSubjectPart ¶

SetSubjectPart gets a reference to the given string and assigns it to the SubjectPart field.

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) SetTemplateId ¶

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (ModelsTemplateRetrievalResponseTemplateRegexModel) ToMap ¶

func (o ModelsTemplateRetrievalResponseTemplateRegexModel) ToMap() (map[string]interface{}, error)

func (*ModelsTemplateRetrievalResponseTemplateRegexModel) UnmarshalJSON ¶

func (o *ModelsTemplateRetrievalResponseTemplateRegexModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateUpdateRequest ¶

type ModelsTemplateUpdateRequest struct {
	Id                     *int32                                                    `json:"Id,omitempty"`
	KeySize                *string                                                   `json:"KeySize,omitempty"`
	KeyType                *string                                                   `json:"KeyType,omitempty"`
	FriendlyName           *string                                                   `json:"FriendlyName,omitempty"`
	KeyRetention           *int32                                                    `json:"KeyRetention,omitempty"`
	KeyRetentionDays       *int32                                                    `json:"KeyRetentionDays,omitempty"`
	KeyArchival            *bool                                                     `json:"KeyArchival,omitempty"`
	EnrollmentFields       []ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel `json:"EnrollmentFields,omitempty"`
	MetadataFields         []ModelsTemplateUpdateRequestTemplateMetadataFieldModel   `json:"MetadataFields,omitempty"`
	AllowedEnrollmentTypes *int32                                                    `json:"AllowedEnrollmentTypes,omitempty"`
	TemplateRegexes        []ModelsTemplateUpdateRequestTemplateRegexModel           `json:"TemplateRegexes,omitempty"`
	TemplateDefaults       []ModelsTemplateUpdateRequestTemplateDefaultModel         `json:"TemplateDefaults,omitempty"`
	TemplatePolicy         *ModelsTemplateUpdateRequestTemplatePolicyModel           `json:"TemplatePolicy,omitempty"`
	UseAllowedRequesters   *bool                                                     `json:"UseAllowedRequesters,omitempty"`
	AllowedRequesters      []string                                                  `json:"AllowedRequesters,omitempty"`
	RequiresApproval       *bool                                                     `json:"RequiresApproval,omitempty"`
	KeyUsage               *int32                                                    `json:"KeyUsage,omitempty"`
	AdditionalProperties   map[string]interface{}
}

ModelsTemplateUpdateRequest struct for ModelsTemplateUpdateRequest

func NewModelsTemplateUpdateRequest ¶

func NewModelsTemplateUpdateRequest() *ModelsTemplateUpdateRequest

NewModelsTemplateUpdateRequest instantiates a new ModelsTemplateUpdateRequest 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 NewModelsTemplateUpdateRequestWithDefaults ¶

func NewModelsTemplateUpdateRequestWithDefaults() *ModelsTemplateUpdateRequest

NewModelsTemplateUpdateRequestWithDefaults instantiates a new ModelsTemplateUpdateRequest 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 (*ModelsTemplateUpdateRequest) GetAllowedEnrollmentTypes ¶

func (o *ModelsTemplateUpdateRequest) GetAllowedEnrollmentTypes() int32

GetAllowedEnrollmentTypes returns the AllowedEnrollmentTypes field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetAllowedEnrollmentTypesOk ¶

func (o *ModelsTemplateUpdateRequest) GetAllowedEnrollmentTypesOk() (*int32, bool)

GetAllowedEnrollmentTypesOk returns a tuple with the AllowedEnrollmentTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetAllowedRequesters ¶

func (o *ModelsTemplateUpdateRequest) GetAllowedRequesters() []string

GetAllowedRequesters returns the AllowedRequesters field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetAllowedRequestersOk ¶

func (o *ModelsTemplateUpdateRequest) GetAllowedRequestersOk() ([]string, bool)

GetAllowedRequestersOk returns a tuple with the AllowedRequesters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetEnrollmentFields ¶

GetEnrollmentFields returns the EnrollmentFields field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetEnrollmentFieldsOk ¶

GetEnrollmentFieldsOk returns a tuple with the EnrollmentFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetFriendlyName ¶

func (o *ModelsTemplateUpdateRequest) GetFriendlyName() string

GetFriendlyName returns the FriendlyName field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetFriendlyNameOk ¶

func (o *ModelsTemplateUpdateRequest) GetFriendlyNameOk() (*string, bool)

GetFriendlyNameOk returns a tuple with the FriendlyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetIdOk ¶

func (o *ModelsTemplateUpdateRequest) 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 (*ModelsTemplateUpdateRequest) GetKeyArchival ¶

func (o *ModelsTemplateUpdateRequest) GetKeyArchival() bool

GetKeyArchival returns the KeyArchival field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetKeyArchivalOk ¶

func (o *ModelsTemplateUpdateRequest) GetKeyArchivalOk() (*bool, bool)

GetKeyArchivalOk returns a tuple with the KeyArchival field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetKeyRetention ¶

func (o *ModelsTemplateUpdateRequest) GetKeyRetention() int32

GetKeyRetention returns the KeyRetention field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetKeyRetentionDays ¶

func (o *ModelsTemplateUpdateRequest) GetKeyRetentionDays() int32

GetKeyRetentionDays returns the KeyRetentionDays field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetKeyRetentionDaysOk ¶

func (o *ModelsTemplateUpdateRequest) GetKeyRetentionDaysOk() (*int32, bool)

GetKeyRetentionDaysOk returns a tuple with the KeyRetentionDays field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetKeyRetentionOk ¶

func (o *ModelsTemplateUpdateRequest) GetKeyRetentionOk() (*int32, bool)

GetKeyRetentionOk returns a tuple with the KeyRetention field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetKeySize ¶

func (o *ModelsTemplateUpdateRequest) GetKeySize() string

GetKeySize returns the KeySize field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetKeySizeOk ¶

func (o *ModelsTemplateUpdateRequest) GetKeySizeOk() (*string, bool)

GetKeySizeOk returns a tuple with the KeySize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetKeyType ¶

func (o *ModelsTemplateUpdateRequest) GetKeyType() string

GetKeyType returns the KeyType field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetKeyTypeOk ¶

func (o *ModelsTemplateUpdateRequest) GetKeyTypeOk() (*string, bool)

GetKeyTypeOk returns a tuple with the KeyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetKeyUsage ¶

func (o *ModelsTemplateUpdateRequest) GetKeyUsage() int32

GetKeyUsage returns the KeyUsage field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetKeyUsageOk ¶

func (o *ModelsTemplateUpdateRequest) GetKeyUsageOk() (*int32, bool)

GetKeyUsageOk returns a tuple with the KeyUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetMetadataFields ¶

GetMetadataFields returns the MetadataFields field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetMetadataFieldsOk ¶

GetMetadataFieldsOk returns a tuple with the MetadataFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetRequiresApproval ¶

func (o *ModelsTemplateUpdateRequest) GetRequiresApproval() bool

GetRequiresApproval returns the RequiresApproval field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetRequiresApprovalOk ¶

func (o *ModelsTemplateUpdateRequest) GetRequiresApprovalOk() (*bool, bool)

GetRequiresApprovalOk returns a tuple with the RequiresApproval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetTemplateDefaults ¶

GetTemplateDefaults returns the TemplateDefaults field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetTemplateDefaultsOk ¶

GetTemplateDefaultsOk returns a tuple with the TemplateDefaults field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetTemplatePolicy ¶

GetTemplatePolicy returns the TemplatePolicy field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetTemplatePolicyOk ¶

GetTemplatePolicyOk returns a tuple with the TemplatePolicy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetTemplateRegexes ¶

GetTemplateRegexes returns the TemplateRegexes field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetTemplateRegexesOk ¶

GetTemplateRegexesOk returns a tuple with the TemplateRegexes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) GetUseAllowedRequesters ¶

func (o *ModelsTemplateUpdateRequest) GetUseAllowedRequesters() bool

GetUseAllowedRequesters returns the UseAllowedRequesters field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequest) GetUseAllowedRequestersOk ¶

func (o *ModelsTemplateUpdateRequest) GetUseAllowedRequestersOk() (*bool, bool)

GetUseAllowedRequestersOk returns a tuple with the UseAllowedRequesters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequest) HasAllowedEnrollmentTypes ¶

func (o *ModelsTemplateUpdateRequest) HasAllowedEnrollmentTypes() bool

HasAllowedEnrollmentTypes returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasAllowedRequesters ¶

func (o *ModelsTemplateUpdateRequest) HasAllowedRequesters() bool

HasAllowedRequesters returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasEnrollmentFields ¶

func (o *ModelsTemplateUpdateRequest) HasEnrollmentFields() bool

HasEnrollmentFields returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasFriendlyName ¶

func (o *ModelsTemplateUpdateRequest) HasFriendlyName() bool

HasFriendlyName returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasId ¶

func (o *ModelsTemplateUpdateRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasKeyArchival ¶

func (o *ModelsTemplateUpdateRequest) HasKeyArchival() bool

HasKeyArchival returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasKeyRetention ¶

func (o *ModelsTemplateUpdateRequest) HasKeyRetention() bool

HasKeyRetention returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasKeyRetentionDays ¶

func (o *ModelsTemplateUpdateRequest) HasKeyRetentionDays() bool

HasKeyRetentionDays returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasKeySize ¶

func (o *ModelsTemplateUpdateRequest) HasKeySize() bool

HasKeySize returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasKeyType ¶

func (o *ModelsTemplateUpdateRequest) HasKeyType() bool

HasKeyType returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasKeyUsage ¶

func (o *ModelsTemplateUpdateRequest) HasKeyUsage() bool

HasKeyUsage returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasMetadataFields ¶

func (o *ModelsTemplateUpdateRequest) HasMetadataFields() bool

HasMetadataFields returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasRequiresApproval ¶

func (o *ModelsTemplateUpdateRequest) HasRequiresApproval() bool

HasRequiresApproval returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasTemplateDefaults ¶

func (o *ModelsTemplateUpdateRequest) HasTemplateDefaults() bool

HasTemplateDefaults returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasTemplatePolicy ¶

func (o *ModelsTemplateUpdateRequest) HasTemplatePolicy() bool

HasTemplatePolicy returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasTemplateRegexes ¶

func (o *ModelsTemplateUpdateRequest) HasTemplateRegexes() bool

HasTemplateRegexes returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequest) HasUseAllowedRequesters ¶

func (o *ModelsTemplateUpdateRequest) HasUseAllowedRequesters() bool

HasUseAllowedRequesters returns a boolean if a field has been set.

func (ModelsTemplateUpdateRequest) MarshalJSON ¶

func (o ModelsTemplateUpdateRequest) MarshalJSON() ([]byte, error)

func (*ModelsTemplateUpdateRequest) SetAllowedEnrollmentTypes ¶

func (o *ModelsTemplateUpdateRequest) SetAllowedEnrollmentTypes(v int32)

SetAllowedEnrollmentTypes gets a reference to the given int32 and assigns it to the AllowedEnrollmentTypes field.

func (*ModelsTemplateUpdateRequest) SetAllowedRequesters ¶

func (o *ModelsTemplateUpdateRequest) SetAllowedRequesters(v []string)

SetAllowedRequesters gets a reference to the given []string and assigns it to the AllowedRequesters field.

func (*ModelsTemplateUpdateRequest) SetEnrollmentFields ¶

SetEnrollmentFields gets a reference to the given []ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel and assigns it to the EnrollmentFields field.

func (*ModelsTemplateUpdateRequest) SetFriendlyName ¶

func (o *ModelsTemplateUpdateRequest) SetFriendlyName(v string)

SetFriendlyName gets a reference to the given string and assigns it to the FriendlyName field.

func (*ModelsTemplateUpdateRequest) SetId ¶

func (o *ModelsTemplateUpdateRequest) SetId(v int32)

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateUpdateRequest) SetKeyArchival ¶

func (o *ModelsTemplateUpdateRequest) SetKeyArchival(v bool)

SetKeyArchival gets a reference to the given bool and assigns it to the KeyArchival field.

func (*ModelsTemplateUpdateRequest) SetKeyRetention ¶

func (o *ModelsTemplateUpdateRequest) SetKeyRetention(v int32)

SetKeyRetention gets a reference to the given int32 and assigns it to the KeyRetention field.

func (*ModelsTemplateUpdateRequest) SetKeyRetentionDays ¶

func (o *ModelsTemplateUpdateRequest) SetKeyRetentionDays(v int32)

SetKeyRetentionDays gets a reference to the given int32 and assigns it to the KeyRetentionDays field.

func (*ModelsTemplateUpdateRequest) SetKeySize ¶

func (o *ModelsTemplateUpdateRequest) SetKeySize(v string)

SetKeySize gets a reference to the given string and assigns it to the KeySize field.

func (*ModelsTemplateUpdateRequest) SetKeyType ¶

func (o *ModelsTemplateUpdateRequest) SetKeyType(v string)

SetKeyType gets a reference to the given string and assigns it to the KeyType field.

func (*ModelsTemplateUpdateRequest) SetKeyUsage ¶

func (o *ModelsTemplateUpdateRequest) SetKeyUsage(v int32)

SetKeyUsage gets a reference to the given int32 and assigns it to the KeyUsage field.

func (*ModelsTemplateUpdateRequest) SetMetadataFields ¶

SetMetadataFields gets a reference to the given []ModelsTemplateUpdateRequestTemplateMetadataFieldModel and assigns it to the MetadataFields field.

func (*ModelsTemplateUpdateRequest) SetRequiresApproval ¶

func (o *ModelsTemplateUpdateRequest) SetRequiresApproval(v bool)

SetRequiresApproval gets a reference to the given bool and assigns it to the RequiresApproval field.

func (*ModelsTemplateUpdateRequest) SetTemplateDefaults ¶

SetTemplateDefaults gets a reference to the given []ModelsTemplateUpdateRequestTemplateDefaultModel and assigns it to the TemplateDefaults field.

func (*ModelsTemplateUpdateRequest) SetTemplatePolicy ¶

SetTemplatePolicy gets a reference to the given ModelsTemplateUpdateRequestTemplatePolicyModel and assigns it to the TemplatePolicy field.

func (*ModelsTemplateUpdateRequest) SetTemplateRegexes ¶

SetTemplateRegexes gets a reference to the given []ModelsTemplateUpdateRequestTemplateRegexModel and assigns it to the TemplateRegexes field.

func (*ModelsTemplateUpdateRequest) SetUseAllowedRequesters ¶

func (o *ModelsTemplateUpdateRequest) SetUseAllowedRequesters(v bool)

SetUseAllowedRequesters gets a reference to the given bool and assigns it to the UseAllowedRequesters field.

func (ModelsTemplateUpdateRequest) ToMap ¶

func (o ModelsTemplateUpdateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsTemplateUpdateRequest) UnmarshalJSON ¶

func (o *ModelsTemplateUpdateRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateUpdateRequestTemplateDefaultModel ¶

type ModelsTemplateUpdateRequestTemplateDefaultModel struct {
	SubjectPart          *string `json:"SubjectPart,omitempty"`
	Value                *string `json:"Value,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateUpdateRequestTemplateDefaultModel struct for ModelsTemplateUpdateRequestTemplateDefaultModel

func NewModelsTemplateUpdateRequestTemplateDefaultModel ¶

func NewModelsTemplateUpdateRequestTemplateDefaultModel() *ModelsTemplateUpdateRequestTemplateDefaultModel

NewModelsTemplateUpdateRequestTemplateDefaultModel instantiates a new ModelsTemplateUpdateRequestTemplateDefaultModel 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 NewModelsTemplateUpdateRequestTemplateDefaultModelWithDefaults ¶

func NewModelsTemplateUpdateRequestTemplateDefaultModelWithDefaults() *ModelsTemplateUpdateRequestTemplateDefaultModel

NewModelsTemplateUpdateRequestTemplateDefaultModelWithDefaults instantiates a new ModelsTemplateUpdateRequestTemplateDefaultModel 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 (*ModelsTemplateUpdateRequestTemplateDefaultModel) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateDefaultModel) GetSubjectPartOk ¶

GetSubjectPartOk returns a tuple with the SubjectPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplateDefaultModel) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateDefaultModel) 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 (*ModelsTemplateUpdateRequestTemplateDefaultModel) HasSubjectPart ¶

HasSubjectPart returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateDefaultModel) HasValue ¶

HasValue returns a boolean if a field has been set.

func (ModelsTemplateUpdateRequestTemplateDefaultModel) MarshalJSON ¶

func (*ModelsTemplateUpdateRequestTemplateDefaultModel) SetSubjectPart ¶

SetSubjectPart gets a reference to the given string and assigns it to the SubjectPart field.

func (*ModelsTemplateUpdateRequestTemplateDefaultModel) SetValue ¶

SetValue gets a reference to the given string and assigns it to the Value field.

func (ModelsTemplateUpdateRequestTemplateDefaultModel) ToMap ¶

func (o ModelsTemplateUpdateRequestTemplateDefaultModel) ToMap() (map[string]interface{}, error)

func (*ModelsTemplateUpdateRequestTemplateDefaultModel) UnmarshalJSON ¶

func (o *ModelsTemplateUpdateRequestTemplateDefaultModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel ¶

type ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel struct {
	Id                   *int32   `json:"Id,omitempty"`
	Name                 *string  `json:"Name,omitempty"`
	Options              []string `json:"Options,omitempty"`
	DataType             *int32   `json:"DataType,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel struct for ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel

func NewModelsTemplateUpdateRequestTemplateEnrollmentFieldModel ¶

func NewModelsTemplateUpdateRequestTemplateEnrollmentFieldModel() *ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel

NewModelsTemplateUpdateRequestTemplateEnrollmentFieldModel instantiates a new ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel 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 NewModelsTemplateUpdateRequestTemplateEnrollmentFieldModelWithDefaults ¶

func NewModelsTemplateUpdateRequestTemplateEnrollmentFieldModelWithDefaults() *ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel

NewModelsTemplateUpdateRequestTemplateEnrollmentFieldModelWithDefaults instantiates a new ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel 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 (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) GetDataType ¶

GetDataType returns the DataType field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) GetDataTypeOk ¶

GetDataTypeOk returns a tuple with the DataType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) GetIdOk ¶

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 (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) 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 (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) GetOptions ¶

GetOptions returns the Options field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) GetOptionsOk ¶

GetOptionsOk returns a tuple with the Options field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) HasDataType ¶

HasDataType returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) HasName ¶

HasName returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) HasOptions ¶

HasOptions returns a boolean if a field has been set.

func (ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) MarshalJSON ¶

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) SetDataType ¶

SetDataType gets a reference to the given int32 and assigns it to the DataType field.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) SetOptions ¶

SetOptions gets a reference to the given []string and assigns it to the Options field.

func (ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) ToMap ¶

func (*ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) UnmarshalJSON ¶

func (o *ModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateUpdateRequestTemplateMetadataFieldModel ¶

type ModelsTemplateUpdateRequestTemplateMetadataFieldModel struct {
	Id                   *int32  `json:"Id,omitempty"`
	DefaultValue         *string `json:"DefaultValue,omitempty"`
	MetadataId           *int32  `json:"MetadataId,omitempty"`
	Validation           *string `json:"Validation,omitempty"`
	Enrollment           *int32  `json:"Enrollment,omitempty"`
	Message              *string `json:"Message,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateUpdateRequestTemplateMetadataFieldModel struct for ModelsTemplateUpdateRequestTemplateMetadataFieldModel

func NewModelsTemplateUpdateRequestTemplateMetadataFieldModel ¶

func NewModelsTemplateUpdateRequestTemplateMetadataFieldModel() *ModelsTemplateUpdateRequestTemplateMetadataFieldModel

NewModelsTemplateUpdateRequestTemplateMetadataFieldModel instantiates a new ModelsTemplateUpdateRequestTemplateMetadataFieldModel 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 NewModelsTemplateUpdateRequestTemplateMetadataFieldModelWithDefaults ¶

func NewModelsTemplateUpdateRequestTemplateMetadataFieldModelWithDefaults() *ModelsTemplateUpdateRequestTemplateMetadataFieldModel

NewModelsTemplateUpdateRequestTemplateMetadataFieldModelWithDefaults instantiates a new ModelsTemplateUpdateRequestTemplateMetadataFieldModel 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 (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetDefaultValue ¶

GetDefaultValue returns the DefaultValue field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetDefaultValueOk ¶

GetDefaultValueOk returns a tuple with the DefaultValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetEnrollment ¶

GetEnrollment returns the Enrollment field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetEnrollmentOk ¶

GetEnrollmentOk returns a tuple with the Enrollment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetIdOk ¶

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 (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetMessage ¶

GetMessage returns the Message field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetMessageOk ¶

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 (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetMetadataId ¶

GetMetadataId returns the MetadataId field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetMetadataIdOk ¶

GetMetadataIdOk returns a tuple with the MetadataId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetValidation ¶

GetValidation returns the Validation field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) GetValidationOk ¶

GetValidationOk returns a tuple with the Validation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) HasDefaultValue ¶

HasDefaultValue returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) HasEnrollment ¶

HasEnrollment returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) HasMessage ¶

HasMessage returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) HasMetadataId ¶

HasMetadataId returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) HasValidation ¶

HasValidation returns a boolean if a field has been set.

func (ModelsTemplateUpdateRequestTemplateMetadataFieldModel) MarshalJSON ¶

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) SetDefaultValue ¶

SetDefaultValue gets a reference to the given string and assigns it to the DefaultValue field.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) SetEnrollment ¶

SetEnrollment gets a reference to the given int32 and assigns it to the Enrollment field.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) SetMessage ¶

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) SetMetadataId ¶

SetMetadataId gets a reference to the given int32 and assigns it to the MetadataId field.

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) SetValidation ¶

SetValidation gets a reference to the given string and assigns it to the Validation field.

func (ModelsTemplateUpdateRequestTemplateMetadataFieldModel) ToMap ¶

func (*ModelsTemplateUpdateRequestTemplateMetadataFieldModel) UnmarshalJSON ¶

func (o *ModelsTemplateUpdateRequestTemplateMetadataFieldModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateUpdateRequestTemplatePolicyModel ¶

type ModelsTemplateUpdateRequestTemplatePolicyModel struct {
	TemplateId           *int32   `json:"TemplateId,omitempty"`
	RSAValidKeySizes     []int32  `json:"RSAValidKeySizes,omitempty"`
	ECCValidCurves       []string `json:"ECCValidCurves,omitempty"`
	AllowKeyReuse        *bool    `json:"AllowKeyReuse,omitempty"`
	AllowWildcards       *bool    `json:"AllowWildcards,omitempty"`
	RFCEnforcement       *bool    `json:"RFCEnforcement,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateUpdateRequestTemplatePolicyModel struct for ModelsTemplateUpdateRequestTemplatePolicyModel

func NewModelsTemplateUpdateRequestTemplatePolicyModel ¶

func NewModelsTemplateUpdateRequestTemplatePolicyModel() *ModelsTemplateUpdateRequestTemplatePolicyModel

NewModelsTemplateUpdateRequestTemplatePolicyModel instantiates a new ModelsTemplateUpdateRequestTemplatePolicyModel 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 NewModelsTemplateUpdateRequestTemplatePolicyModelWithDefaults ¶

func NewModelsTemplateUpdateRequestTemplatePolicyModelWithDefaults() *ModelsTemplateUpdateRequestTemplatePolicyModel

NewModelsTemplateUpdateRequestTemplatePolicyModelWithDefaults instantiates a new ModelsTemplateUpdateRequestTemplatePolicyModel 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 (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetAllowKeyReuse ¶

GetAllowKeyReuse returns the AllowKeyReuse field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetAllowKeyReuseOk ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) GetAllowKeyReuseOk() (*bool, bool)

GetAllowKeyReuseOk returns a tuple with the AllowKeyReuse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetAllowWildcards ¶

GetAllowWildcards returns the AllowWildcards field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetAllowWildcardsOk ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) GetAllowWildcardsOk() (*bool, bool)

GetAllowWildcardsOk returns a tuple with the AllowWildcards field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetECCValidCurves ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) GetECCValidCurves() []string

GetECCValidCurves returns the ECCValidCurves field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetECCValidCurvesOk ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) GetECCValidCurvesOk() ([]string, bool)

GetECCValidCurvesOk returns a tuple with the ECCValidCurves field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetRFCEnforcement ¶

GetRFCEnforcement returns the RFCEnforcement field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetRFCEnforcementOk ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) GetRFCEnforcementOk() (*bool, bool)

GetRFCEnforcementOk returns a tuple with the RFCEnforcement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetRSAValidKeySizes ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) GetRSAValidKeySizes() []int32

GetRSAValidKeySizes returns the RSAValidKeySizes field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetRSAValidKeySizesOk ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) GetRSAValidKeySizesOk() ([]int32, bool)

GetRSAValidKeySizesOk returns a tuple with the RSAValidKeySizes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetTemplateId ¶

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) GetTemplateIdOk ¶

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) HasAllowKeyReuse ¶

HasAllowKeyReuse returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) HasAllowWildcards ¶

HasAllowWildcards returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) HasECCValidCurves ¶

HasECCValidCurves returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) HasRFCEnforcement ¶

HasRFCEnforcement returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) HasRSAValidKeySizes ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) HasRSAValidKeySizes() bool

HasRSAValidKeySizes returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) HasTemplateId ¶

HasTemplateId returns a boolean if a field has been set.

func (ModelsTemplateUpdateRequestTemplatePolicyModel) MarshalJSON ¶

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) SetAllowKeyReuse ¶

SetAllowKeyReuse gets a reference to the given bool and assigns it to the AllowKeyReuse field.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) SetAllowWildcards ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) SetAllowWildcards(v bool)

SetAllowWildcards gets a reference to the given bool and assigns it to the AllowWildcards field.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) SetECCValidCurves ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) SetECCValidCurves(v []string)

SetECCValidCurves gets a reference to the given []string and assigns it to the ECCValidCurves field.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) SetRFCEnforcement ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) SetRFCEnforcement(v bool)

SetRFCEnforcement gets a reference to the given bool and assigns it to the RFCEnforcement field.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) SetRSAValidKeySizes ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) SetRSAValidKeySizes(v []int32)

SetRSAValidKeySizes gets a reference to the given []int32 and assigns it to the RSAValidKeySizes field.

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) SetTemplateId ¶

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (ModelsTemplateUpdateRequestTemplatePolicyModel) ToMap ¶

func (o ModelsTemplateUpdateRequestTemplatePolicyModel) ToMap() (map[string]interface{}, error)

func (*ModelsTemplateUpdateRequestTemplatePolicyModel) UnmarshalJSON ¶

func (o *ModelsTemplateUpdateRequestTemplatePolicyModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsTemplateUpdateRequestTemplateRegexModel ¶

type ModelsTemplateUpdateRequestTemplateRegexModel struct {
	TemplateId           *int32  `json:"TemplateId,omitempty"`
	SubjectPart          *string `json:"SubjectPart,omitempty"`
	Regex                *string `json:"Regex,omitempty"`
	Error                *string `json:"Error,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsTemplateUpdateRequestTemplateRegexModel struct for ModelsTemplateUpdateRequestTemplateRegexModel

func NewModelsTemplateUpdateRequestTemplateRegexModel ¶

func NewModelsTemplateUpdateRequestTemplateRegexModel() *ModelsTemplateUpdateRequestTemplateRegexModel

NewModelsTemplateUpdateRequestTemplateRegexModel instantiates a new ModelsTemplateUpdateRequestTemplateRegexModel 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 NewModelsTemplateUpdateRequestTemplateRegexModelWithDefaults ¶

func NewModelsTemplateUpdateRequestTemplateRegexModelWithDefaults() *ModelsTemplateUpdateRequestTemplateRegexModel

NewModelsTemplateUpdateRequestTemplateRegexModelWithDefaults instantiates a new ModelsTemplateUpdateRequestTemplateRegexModel 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 (*ModelsTemplateUpdateRequestTemplateRegexModel) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) GetRegex ¶

GetRegex returns the Regex field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) GetRegexOk ¶

GetRegexOk returns a tuple with the Regex field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) GetSubjectPart ¶

GetSubjectPart returns the SubjectPart field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) GetSubjectPartOk ¶

func (o *ModelsTemplateUpdateRequestTemplateRegexModel) GetSubjectPartOk() (*string, bool)

GetSubjectPartOk returns a tuple with the SubjectPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) GetTemplateId ¶

GetTemplateId returns the TemplateId field value if set, zero value otherwise.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) GetTemplateIdOk ¶

func (o *ModelsTemplateUpdateRequestTemplateRegexModel) GetTemplateIdOk() (*int32, bool)

GetTemplateIdOk returns a tuple with the TemplateId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) HasError ¶

HasError returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) HasRegex ¶

HasRegex returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) HasSubjectPart ¶

HasSubjectPart returns a boolean if a field has been set.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) HasTemplateId ¶

HasTemplateId returns a boolean if a field has been set.

func (ModelsTemplateUpdateRequestTemplateRegexModel) MarshalJSON ¶

func (*ModelsTemplateUpdateRequestTemplateRegexModel) SetError ¶

SetError gets a reference to the given string and assigns it to the Error field.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) SetRegex ¶

SetRegex gets a reference to the given string and assigns it to the Regex field.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) SetSubjectPart ¶

SetSubjectPart gets a reference to the given string and assigns it to the SubjectPart field.

func (*ModelsTemplateUpdateRequestTemplateRegexModel) SetTemplateId ¶

SetTemplateId gets a reference to the given int32 and assigns it to the TemplateId field.

func (ModelsTemplateUpdateRequestTemplateRegexModel) ToMap ¶

func (o ModelsTemplateUpdateRequestTemplateRegexModel) ToMap() (map[string]interface{}, error)

func (*ModelsTemplateUpdateRequestTemplateRegexModel) UnmarshalJSON ¶

func (o *ModelsTemplateUpdateRequestTemplateRegexModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsWorkflowApproveDenyResult ¶

type ModelsWorkflowApproveDenyResult struct {
	Failures             []ModelsWorkflowProcessedCertificateRequest `json:"Failures,omitempty"`
	Denials              []ModelsWorkflowProcessedCertificateRequest `json:"Denials,omitempty"`
	Successes            []ModelsWorkflowProcessedCertificateRequest `json:"Successes,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsWorkflowApproveDenyResult struct for ModelsWorkflowApproveDenyResult

func NewModelsWorkflowApproveDenyResult ¶

func NewModelsWorkflowApproveDenyResult() *ModelsWorkflowApproveDenyResult

NewModelsWorkflowApproveDenyResult instantiates a new ModelsWorkflowApproveDenyResult 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 NewModelsWorkflowApproveDenyResultWithDefaults ¶

func NewModelsWorkflowApproveDenyResultWithDefaults() *ModelsWorkflowApproveDenyResult

NewModelsWorkflowApproveDenyResultWithDefaults instantiates a new ModelsWorkflowApproveDenyResult 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 (*ModelsWorkflowApproveDenyResult) GetDenials ¶

GetDenials returns the Denials field value if set, zero value otherwise.

func (*ModelsWorkflowApproveDenyResult) GetDenialsOk ¶

GetDenialsOk returns a tuple with the Denials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowApproveDenyResult) GetFailures ¶

GetFailures returns the Failures field value if set, zero value otherwise.

func (*ModelsWorkflowApproveDenyResult) GetFailuresOk ¶

GetFailuresOk returns a tuple with the Failures field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowApproveDenyResult) GetSuccesses ¶

GetSuccesses returns the Successes field value if set, zero value otherwise.

func (*ModelsWorkflowApproveDenyResult) GetSuccessesOk ¶

GetSuccessesOk returns a tuple with the Successes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowApproveDenyResult) HasDenials ¶

func (o *ModelsWorkflowApproveDenyResult) HasDenials() bool

HasDenials returns a boolean if a field has been set.

func (*ModelsWorkflowApproveDenyResult) HasFailures ¶

func (o *ModelsWorkflowApproveDenyResult) HasFailures() bool

HasFailures returns a boolean if a field has been set.

func (*ModelsWorkflowApproveDenyResult) HasSuccesses ¶

func (o *ModelsWorkflowApproveDenyResult) HasSuccesses() bool

HasSuccesses returns a boolean if a field has been set.

func (ModelsWorkflowApproveDenyResult) MarshalJSON ¶

func (o ModelsWorkflowApproveDenyResult) MarshalJSON() ([]byte, error)

func (*ModelsWorkflowApproveDenyResult) SetDenials ¶

SetDenials gets a reference to the given []ModelsWorkflowProcessedCertificateRequest and assigns it to the Denials field.

func (*ModelsWorkflowApproveDenyResult) SetFailures ¶

SetFailures gets a reference to the given []ModelsWorkflowProcessedCertificateRequest and assigns it to the Failures field.

func (*ModelsWorkflowApproveDenyResult) SetSuccesses ¶

SetSuccesses gets a reference to the given []ModelsWorkflowProcessedCertificateRequest and assigns it to the Successes field.

func (ModelsWorkflowApproveDenyResult) ToMap ¶

func (o ModelsWorkflowApproveDenyResult) ToMap() (map[string]interface{}, error)

func (*ModelsWorkflowApproveDenyResult) UnmarshalJSON ¶

func (o *ModelsWorkflowApproveDenyResult) UnmarshalJSON(bytes []byte) (err error)

type ModelsWorkflowCertificateRequestCertStoreModel ¶

type ModelsWorkflowCertificateRequestCertStoreModel struct {
	EntryName            *string `json:"EntryName,omitempty"`
	ClientMachine        *string `json:"ClientMachine,omitempty"`
	StorePath            *string `json:"StorePath,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsWorkflowCertificateRequestCertStoreModel struct for ModelsWorkflowCertificateRequestCertStoreModel

func NewModelsWorkflowCertificateRequestCertStoreModel ¶

func NewModelsWorkflowCertificateRequestCertStoreModel() *ModelsWorkflowCertificateRequestCertStoreModel

NewModelsWorkflowCertificateRequestCertStoreModel instantiates a new ModelsWorkflowCertificateRequestCertStoreModel 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 NewModelsWorkflowCertificateRequestCertStoreModelWithDefaults ¶

func NewModelsWorkflowCertificateRequestCertStoreModelWithDefaults() *ModelsWorkflowCertificateRequestCertStoreModel

NewModelsWorkflowCertificateRequestCertStoreModelWithDefaults instantiates a new ModelsWorkflowCertificateRequestCertStoreModel 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 (*ModelsWorkflowCertificateRequestCertStoreModel) GetClientMachine ¶

GetClientMachine returns the ClientMachine field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestCertStoreModel) GetClientMachineOk ¶

func (o *ModelsWorkflowCertificateRequestCertStoreModel) GetClientMachineOk() (*string, bool)

GetClientMachineOk returns a tuple with the ClientMachine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestCertStoreModel) GetEntryName ¶

GetEntryName returns the EntryName field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestCertStoreModel) GetEntryNameOk ¶

GetEntryNameOk returns a tuple with the EntryName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestCertStoreModel) GetStorePath ¶

GetStorePath returns the StorePath field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestCertStoreModel) GetStorePathOk ¶

GetStorePathOk returns a tuple with the StorePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestCertStoreModel) HasClientMachine ¶

HasClientMachine returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestCertStoreModel) HasEntryName ¶

HasEntryName returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestCertStoreModel) HasStorePath ¶

HasStorePath returns a boolean if a field has been set.

func (ModelsWorkflowCertificateRequestCertStoreModel) MarshalJSON ¶

func (*ModelsWorkflowCertificateRequestCertStoreModel) SetClientMachine ¶

SetClientMachine gets a reference to the given string and assigns it to the ClientMachine field.

func (*ModelsWorkflowCertificateRequestCertStoreModel) SetEntryName ¶

SetEntryName gets a reference to the given string and assigns it to the EntryName field.

func (*ModelsWorkflowCertificateRequestCertStoreModel) SetStorePath ¶

SetStorePath gets a reference to the given string and assigns it to the StorePath field.

func (ModelsWorkflowCertificateRequestCertStoreModel) ToMap ¶

func (o ModelsWorkflowCertificateRequestCertStoreModel) ToMap() (map[string]interface{}, error)

func (*ModelsWorkflowCertificateRequestCertStoreModel) UnmarshalJSON ¶

func (o *ModelsWorkflowCertificateRequestCertStoreModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsWorkflowCertificateRequestDetailsModel ¶

type ModelsWorkflowCertificateRequestDetailsModel struct {
	DenialComment        *string                                          `json:"DenialComment,omitempty"`
	KeyLength            *string                                          `json:"KeyLength,omitempty"`
	SANs                 []string                                         `json:"SANs,omitempty"`
	CertStores           []ModelsWorkflowCertificateRequestCertStoreModel `json:"CertStores,omitempty"`
	Curve                NullableString                                   `json:"Curve,omitempty"`
	Id                   *int32                                           `json:"Id,omitempty"`
	CARequestId          *string                                          `json:"CARequestId,omitempty"`
	CommonName           *string                                          `json:"CommonName,omitempty"`
	DistinguishedName    *string                                          `json:"DistinguishedName,omitempty"`
	SubmissionDate       *time.Time                                       `json:"SubmissionDate,omitempty"`
	CertificateAuthority *string                                          `json:"CertificateAuthority,omitempty"`
	Template             *string                                          `json:"Template,omitempty"`
	Requester            *string                                          `json:"Requester,omitempty"`
	State                *int32                                           `json:"State,omitempty"`
	StateString          *string                                          `json:"StateString,omitempty"`
	Metadata             *map[string]string                               `json:"Metadata,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsWorkflowCertificateRequestDetailsModel struct for ModelsWorkflowCertificateRequestDetailsModel

func NewModelsWorkflowCertificateRequestDetailsModel ¶

func NewModelsWorkflowCertificateRequestDetailsModel() *ModelsWorkflowCertificateRequestDetailsModel

NewModelsWorkflowCertificateRequestDetailsModel instantiates a new ModelsWorkflowCertificateRequestDetailsModel 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 NewModelsWorkflowCertificateRequestDetailsModelWithDefaults ¶

func NewModelsWorkflowCertificateRequestDetailsModelWithDefaults() *ModelsWorkflowCertificateRequestDetailsModel

NewModelsWorkflowCertificateRequestDetailsModelWithDefaults instantiates a new ModelsWorkflowCertificateRequestDetailsModel 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 (*ModelsWorkflowCertificateRequestDetailsModel) GetCARequestId ¶

GetCARequestId returns the CARequestId field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetCARequestIdOk ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) GetCARequestIdOk() (*string, bool)

GetCARequestIdOk returns a tuple with the CARequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetCertStores ¶

GetCertStores returns the CertStores field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetCertStoresOk ¶

GetCertStoresOk returns a tuple with the CertStores field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetCertificateAuthority ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) GetCertificateAuthority() string

GetCertificateAuthority returns the CertificateAuthority field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetCertificateAuthorityOk ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) GetCertificateAuthorityOk() (*string, bool)

GetCertificateAuthorityOk returns a tuple with the CertificateAuthority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetCommonName ¶

GetCommonName returns the CommonName field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetCommonNameOk ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) GetCommonNameOk() (*string, bool)

GetCommonNameOk returns a tuple with the CommonName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetCurve ¶

GetCurve returns the Curve field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ModelsWorkflowCertificateRequestDetailsModel) GetCurveOk ¶

GetCurveOk returns a tuple with the Curve field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ModelsWorkflowCertificateRequestDetailsModel) GetDenialComment ¶

GetDenialComment returns the DenialComment field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetDenialCommentOk ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) GetDenialCommentOk() (*string, bool)

GetDenialCommentOk returns a tuple with the DenialComment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetDistinguishedName ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) GetDistinguishedName() string

GetDistinguishedName returns the DistinguishedName field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetDistinguishedNameOk ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) GetDistinguishedNameOk() (*string, bool)

GetDistinguishedNameOk returns a tuple with the DistinguishedName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetIdOk ¶

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 (*ModelsWorkflowCertificateRequestDetailsModel) GetKeyLength ¶

GetKeyLength returns the KeyLength field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetKeyLengthOk ¶

GetKeyLengthOk returns a tuple with the KeyLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetMetadataOk ¶

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetRequester ¶

GetRequester returns the Requester field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetRequesterOk ¶

GetRequesterOk returns a tuple with the Requester field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetSANs ¶

GetSANs returns the SANs field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetSANsOk ¶

GetSANsOk returns a tuple with the SANs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetState ¶

GetState returns the State field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetStateOk ¶

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetStateString ¶

GetStateString returns the StateString field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetStateStringOk ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) GetStateStringOk() (*string, bool)

GetStateStringOk returns a tuple with the StateString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetSubmissionDate ¶

GetSubmissionDate returns the SubmissionDate field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetSubmissionDateOk ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) GetSubmissionDateOk() (*time.Time, bool)

GetSubmissionDateOk returns a tuple with the SubmissionDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestDetailsModel) GetTemplateOk ¶

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasCARequestId ¶

HasCARequestId returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasCertStores ¶

HasCertStores returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasCertificateAuthority ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) HasCertificateAuthority() bool

HasCertificateAuthority returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasCommonName ¶

HasCommonName returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasCurve ¶

HasCurve returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasDenialComment ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) HasDenialComment() bool

HasDenialComment returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasDistinguishedName ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) HasDistinguishedName() bool

HasDistinguishedName returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasKeyLength ¶

HasKeyLength returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasMetadata ¶

HasMetadata returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasRequester ¶

HasRequester returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasSANs ¶

HasSANs returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasState ¶

HasState returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasStateString ¶

HasStateString returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasSubmissionDate ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) HasSubmissionDate() bool

HasSubmissionDate returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestDetailsModel) HasTemplate ¶

HasTemplate returns a boolean if a field has been set.

func (ModelsWorkflowCertificateRequestDetailsModel) MarshalJSON ¶

func (*ModelsWorkflowCertificateRequestDetailsModel) SetCARequestId ¶

SetCARequestId gets a reference to the given string and assigns it to the CARequestId field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetCertStores ¶

SetCertStores gets a reference to the given []ModelsWorkflowCertificateRequestCertStoreModel and assigns it to the CertStores field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetCertificateAuthority ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) SetCertificateAuthority(v string)

SetCertificateAuthority gets a reference to the given string and assigns it to the CertificateAuthority field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetCommonName ¶

SetCommonName gets a reference to the given string and assigns it to the CommonName field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetCurve ¶

SetCurve gets a reference to the given NullableString and assigns it to the Curve field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetCurveNil ¶

SetCurveNil sets the value for Curve to be an explicit nil

func (*ModelsWorkflowCertificateRequestDetailsModel) SetDenialComment ¶

SetDenialComment gets a reference to the given string and assigns it to the DenialComment field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetDistinguishedName ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) SetDistinguishedName(v string)

SetDistinguishedName gets a reference to the given string and assigns it to the DistinguishedName field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetKeyLength ¶

SetKeyLength gets a reference to the given string and assigns it to the KeyLength field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetMetadata ¶

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetRequester ¶

SetRequester gets a reference to the given string and assigns it to the Requester field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetSANs ¶

SetSANs gets a reference to the given []string and assigns it to the SANs field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetState ¶

SetState gets a reference to the given int32 and assigns it to the State field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetStateString ¶

SetStateString gets a reference to the given string and assigns it to the StateString field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetSubmissionDate ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) SetSubmissionDate(v time.Time)

SetSubmissionDate gets a reference to the given time.Time and assigns it to the SubmissionDate field.

func (*ModelsWorkflowCertificateRequestDetailsModel) SetTemplate ¶

SetTemplate gets a reference to the given string and assigns it to the Template field.

func (ModelsWorkflowCertificateRequestDetailsModel) ToMap ¶

func (o ModelsWorkflowCertificateRequestDetailsModel) ToMap() (map[string]interface{}, error)

func (*ModelsWorkflowCertificateRequestDetailsModel) UnmarshalJSON ¶

func (o *ModelsWorkflowCertificateRequestDetailsModel) UnmarshalJSON(bytes []byte) (err error)

func (*ModelsWorkflowCertificateRequestDetailsModel) UnsetCurve ¶

UnsetCurve ensures that no value is present for Curve, not even an explicit nil

type ModelsWorkflowCertificateRequestModel ¶

type ModelsWorkflowCertificateRequestModel struct {
	Id                   *int32             `json:"Id,omitempty"`
	CARequestId          *string            `json:"CARequestId,omitempty"`
	CommonName           *string            `json:"CommonName,omitempty"`
	DistinguishedName    *string            `json:"DistinguishedName,omitempty"`
	SubmissionDate       *time.Time         `json:"SubmissionDate,omitempty"`
	CertificateAuthority *string            `json:"CertificateAuthority,omitempty"`
	Template             *string            `json:"Template,omitempty"`
	Requester            *string            `json:"Requester,omitempty"`
	State                *int32             `json:"State,omitempty"`
	StateString          *string            `json:"StateString,omitempty"`
	Metadata             *map[string]string `json:"Metadata,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsWorkflowCertificateRequestModel struct for ModelsWorkflowCertificateRequestModel

func NewModelsWorkflowCertificateRequestModel ¶

func NewModelsWorkflowCertificateRequestModel() *ModelsWorkflowCertificateRequestModel

NewModelsWorkflowCertificateRequestModel instantiates a new ModelsWorkflowCertificateRequestModel 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 NewModelsWorkflowCertificateRequestModelWithDefaults ¶

func NewModelsWorkflowCertificateRequestModelWithDefaults() *ModelsWorkflowCertificateRequestModel

NewModelsWorkflowCertificateRequestModelWithDefaults instantiates a new ModelsWorkflowCertificateRequestModel 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 (*ModelsWorkflowCertificateRequestModel) GetCARequestId ¶

func (o *ModelsWorkflowCertificateRequestModel) GetCARequestId() string

GetCARequestId returns the CARequestId field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestModel) GetCARequestIdOk ¶

func (o *ModelsWorkflowCertificateRequestModel) GetCARequestIdOk() (*string, bool)

GetCARequestIdOk returns a tuple with the CARequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestModel) GetCertificateAuthority ¶

func (o *ModelsWorkflowCertificateRequestModel) GetCertificateAuthority() string

GetCertificateAuthority returns the CertificateAuthority field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestModel) GetCertificateAuthorityOk ¶

func (o *ModelsWorkflowCertificateRequestModel) GetCertificateAuthorityOk() (*string, bool)

GetCertificateAuthorityOk returns a tuple with the CertificateAuthority field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestModel) GetCommonName ¶

func (o *ModelsWorkflowCertificateRequestModel) GetCommonName() string

GetCommonName returns the CommonName field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestModel) GetCommonNameOk ¶

func (o *ModelsWorkflowCertificateRequestModel) GetCommonNameOk() (*string, bool)

GetCommonNameOk returns a tuple with the CommonName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestModel) GetDistinguishedName ¶

func (o *ModelsWorkflowCertificateRequestModel) GetDistinguishedName() string

GetDistinguishedName returns the DistinguishedName field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestModel) GetDistinguishedNameOk ¶

func (o *ModelsWorkflowCertificateRequestModel) GetDistinguishedNameOk() (*string, bool)

GetDistinguishedNameOk returns a tuple with the DistinguishedName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestModel) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestModel) GetIdOk ¶

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 (*ModelsWorkflowCertificateRequestModel) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestModel) GetMetadataOk ¶

func (o *ModelsWorkflowCertificateRequestModel) GetMetadataOk() (*map[string]string, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestModel) GetRequester ¶

GetRequester returns the Requester field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestModel) GetRequesterOk ¶

func (o *ModelsWorkflowCertificateRequestModel) GetRequesterOk() (*string, bool)

GetRequesterOk returns a tuple with the Requester field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestModel) GetState ¶

GetState returns the State field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestModel) GetStateOk ¶

func (o *ModelsWorkflowCertificateRequestModel) GetStateOk() (*int32, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestModel) GetStateString ¶

func (o *ModelsWorkflowCertificateRequestModel) GetStateString() string

GetStateString returns the StateString field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestModel) GetStateStringOk ¶

func (o *ModelsWorkflowCertificateRequestModel) GetStateStringOk() (*string, bool)

GetStateStringOk returns a tuple with the StateString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestModel) GetSubmissionDate ¶

func (o *ModelsWorkflowCertificateRequestModel) GetSubmissionDate() time.Time

GetSubmissionDate returns the SubmissionDate field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestModel) GetSubmissionDateOk ¶

func (o *ModelsWorkflowCertificateRequestModel) GetSubmissionDateOk() (*time.Time, bool)

GetSubmissionDateOk returns a tuple with the SubmissionDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestModel) GetTemplate ¶

GetTemplate returns the Template field value if set, zero value otherwise.

func (*ModelsWorkflowCertificateRequestModel) GetTemplateOk ¶

func (o *ModelsWorkflowCertificateRequestModel) GetTemplateOk() (*string, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowCertificateRequestModel) HasCARequestId ¶

func (o *ModelsWorkflowCertificateRequestModel) HasCARequestId() bool

HasCARequestId returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestModel) HasCertificateAuthority ¶

func (o *ModelsWorkflowCertificateRequestModel) HasCertificateAuthority() bool

HasCertificateAuthority returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestModel) HasCommonName ¶

func (o *ModelsWorkflowCertificateRequestModel) HasCommonName() bool

HasCommonName returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestModel) HasDistinguishedName ¶

func (o *ModelsWorkflowCertificateRequestModel) HasDistinguishedName() bool

HasDistinguishedName returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestModel) HasId ¶

HasId returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestModel) HasMetadata ¶

HasMetadata returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestModel) HasRequester ¶

func (o *ModelsWorkflowCertificateRequestModel) HasRequester() bool

HasRequester returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestModel) HasState ¶

HasState returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestModel) HasStateString ¶

func (o *ModelsWorkflowCertificateRequestModel) HasStateString() bool

HasStateString returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestModel) HasSubmissionDate ¶

func (o *ModelsWorkflowCertificateRequestModel) HasSubmissionDate() bool

HasSubmissionDate returns a boolean if a field has been set.

func (*ModelsWorkflowCertificateRequestModel) HasTemplate ¶

HasTemplate returns a boolean if a field has been set.

func (ModelsWorkflowCertificateRequestModel) MarshalJSON ¶

func (o ModelsWorkflowCertificateRequestModel) MarshalJSON() ([]byte, error)

func (*ModelsWorkflowCertificateRequestModel) SetCARequestId ¶

func (o *ModelsWorkflowCertificateRequestModel) SetCARequestId(v string)

SetCARequestId gets a reference to the given string and assigns it to the CARequestId field.

func (*ModelsWorkflowCertificateRequestModel) SetCertificateAuthority ¶

func (o *ModelsWorkflowCertificateRequestModel) SetCertificateAuthority(v string)

SetCertificateAuthority gets a reference to the given string and assigns it to the CertificateAuthority field.

func (*ModelsWorkflowCertificateRequestModel) SetCommonName ¶

func (o *ModelsWorkflowCertificateRequestModel) SetCommonName(v string)

SetCommonName gets a reference to the given string and assigns it to the CommonName field.

func (*ModelsWorkflowCertificateRequestModel) SetDistinguishedName ¶

func (o *ModelsWorkflowCertificateRequestModel) SetDistinguishedName(v string)

SetDistinguishedName gets a reference to the given string and assigns it to the DistinguishedName field.

func (*ModelsWorkflowCertificateRequestModel) SetId ¶

SetId gets a reference to the given int32 and assigns it to the Id field.

func (*ModelsWorkflowCertificateRequestModel) SetMetadata ¶

func (o *ModelsWorkflowCertificateRequestModel) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*ModelsWorkflowCertificateRequestModel) SetRequester ¶

func (o *ModelsWorkflowCertificateRequestModel) SetRequester(v string)

SetRequester gets a reference to the given string and assigns it to the Requester field.

func (*ModelsWorkflowCertificateRequestModel) SetState ¶

SetState gets a reference to the given int32 and assigns it to the State field.

func (*ModelsWorkflowCertificateRequestModel) SetStateString ¶

func (o *ModelsWorkflowCertificateRequestModel) SetStateString(v string)

SetStateString gets a reference to the given string and assigns it to the StateString field.

func (*ModelsWorkflowCertificateRequestModel) SetSubmissionDate ¶

func (o *ModelsWorkflowCertificateRequestModel) SetSubmissionDate(v time.Time)

SetSubmissionDate gets a reference to the given time.Time and assigns it to the SubmissionDate field.

func (*ModelsWorkflowCertificateRequestModel) SetTemplate ¶

SetTemplate gets a reference to the given string and assigns it to the Template field.

func (ModelsWorkflowCertificateRequestModel) ToMap ¶

func (o ModelsWorkflowCertificateRequestModel) ToMap() (map[string]interface{}, error)

func (*ModelsWorkflowCertificateRequestModel) UnmarshalJSON ¶

func (o *ModelsWorkflowCertificateRequestModel) UnmarshalJSON(bytes []byte) (err error)

type ModelsWorkflowDenialRequest ¶

type ModelsWorkflowDenialRequest struct {
	Comment               *string `json:"Comment,omitempty"`
	CertificateRequestIds []int32 `json:"CertificateRequestIds,omitempty"`
	AdditionalProperties  map[string]interface{}
}

ModelsWorkflowDenialRequest struct for ModelsWorkflowDenialRequest

func NewModelsWorkflowDenialRequest ¶

func NewModelsWorkflowDenialRequest() *ModelsWorkflowDenialRequest

NewModelsWorkflowDenialRequest instantiates a new ModelsWorkflowDenialRequest 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 NewModelsWorkflowDenialRequestWithDefaults ¶

func NewModelsWorkflowDenialRequestWithDefaults() *ModelsWorkflowDenialRequest

NewModelsWorkflowDenialRequestWithDefaults instantiates a new ModelsWorkflowDenialRequest 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 (*ModelsWorkflowDenialRequest) GetCertificateRequestIds ¶

func (o *ModelsWorkflowDenialRequest) GetCertificateRequestIds() []int32

GetCertificateRequestIds returns the CertificateRequestIds field value if set, zero value otherwise.

func (*ModelsWorkflowDenialRequest) GetCertificateRequestIdsOk ¶

func (o *ModelsWorkflowDenialRequest) GetCertificateRequestIdsOk() ([]int32, bool)

GetCertificateRequestIdsOk returns a tuple with the CertificateRequestIds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowDenialRequest) GetComment ¶

func (o *ModelsWorkflowDenialRequest) GetComment() string

GetComment returns the Comment field value if set, zero value otherwise.

func (*ModelsWorkflowDenialRequest) GetCommentOk ¶

func (o *ModelsWorkflowDenialRequest) GetCommentOk() (*string, bool)

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowDenialRequest) HasCertificateRequestIds ¶

func (o *ModelsWorkflowDenialRequest) HasCertificateRequestIds() bool

HasCertificateRequestIds returns a boolean if a field has been set.

func (*ModelsWorkflowDenialRequest) HasComment ¶

func (o *ModelsWorkflowDenialRequest) HasComment() bool

HasComment returns a boolean if a field has been set.

func (ModelsWorkflowDenialRequest) MarshalJSON ¶

func (o ModelsWorkflowDenialRequest) MarshalJSON() ([]byte, error)

func (*ModelsWorkflowDenialRequest) SetCertificateRequestIds ¶

func (o *ModelsWorkflowDenialRequest) SetCertificateRequestIds(v []int32)

SetCertificateRequestIds gets a reference to the given []int32 and assigns it to the CertificateRequestIds field.

func (*ModelsWorkflowDenialRequest) SetComment ¶

func (o *ModelsWorkflowDenialRequest) SetComment(v string)

SetComment gets a reference to the given string and assigns it to the Comment field.

func (ModelsWorkflowDenialRequest) ToMap ¶

func (o ModelsWorkflowDenialRequest) ToMap() (map[string]interface{}, error)

func (*ModelsWorkflowDenialRequest) UnmarshalJSON ¶

func (o *ModelsWorkflowDenialRequest) UnmarshalJSON(bytes []byte) (err error)

type ModelsWorkflowProcessedCertificateRequest ¶

type ModelsWorkflowProcessedCertificateRequest struct {
	CARowId              *int32  `json:"CARowId,omitempty"`
	CARequestId          *string `json:"CARequestId,omitempty"`
	CAHost               *string `json:"CAHost,omitempty"`
	CALogicalName        *string `json:"CALogicalName,omitempty"`
	KeyfactorRequestId   *int32  `json:"KeyfactorRequestId,omitempty"`
	Comment              *string `json:"Comment,omitempty"`
	AdditionalProperties map[string]interface{}
}

ModelsWorkflowProcessedCertificateRequest struct for ModelsWorkflowProcessedCertificateRequest

func NewModelsWorkflowProcessedCertificateRequest ¶

func NewModelsWorkflowProcessedCertificateRequest() *ModelsWorkflowProcessedCertificateRequest

NewModelsWorkflowProcessedCertificateRequest instantiates a new ModelsWorkflowProcessedCertificateRequest 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 NewModelsWorkflowProcessedCertificateRequestWithDefaults ¶

func NewModelsWorkflowProcessedCertificateRequestWithDefaults() *ModelsWorkflowProcessedCertificateRequest

NewModelsWorkflowProcessedCertificateRequestWithDefaults instantiates a new ModelsWorkflowProcessedCertificateRequest 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 (*ModelsWorkflowProcessedCertificateRequest) GetCAHost ¶

GetCAHost returns the CAHost field value if set, zero value otherwise.

func (*ModelsWorkflowProcessedCertificateRequest) GetCAHostOk ¶

GetCAHostOk returns a tuple with the CAHost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowProcessedCertificateRequest) GetCALogicalName ¶

func (o *ModelsWorkflowProcessedCertificateRequest) GetCALogicalName() string

GetCALogicalName returns the CALogicalName field value if set, zero value otherwise.

func (*ModelsWorkflowProcessedCertificateRequest) GetCALogicalNameOk ¶

func (o *ModelsWorkflowProcessedCertificateRequest) GetCALogicalNameOk() (*string, bool)

GetCALogicalNameOk returns a tuple with the CALogicalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowProcessedCertificateRequest) GetCARequestId ¶

GetCARequestId returns the CARequestId field value if set, zero value otherwise.

func (*ModelsWorkflowProcessedCertificateRequest) GetCARequestIdOk ¶

func (o *ModelsWorkflowProcessedCertificateRequest) GetCARequestIdOk() (*string, bool)

GetCARequestIdOk returns a tuple with the CARequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowProcessedCertificateRequest) GetCARowId ¶

GetCARowId returns the CARowId field value if set, zero value otherwise.

func (*ModelsWorkflowProcessedCertificateRequest) GetCARowIdOk ¶

GetCARowIdOk returns a tuple with the CARowId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowProcessedCertificateRequest) GetComment ¶

GetComment returns the Comment field value if set, zero value otherwise.

func (*ModelsWorkflowProcessedCertificateRequest) GetCommentOk ¶

GetCommentOk returns a tuple with the Comment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowProcessedCertificateRequest) GetKeyfactorRequestId ¶

func (o *ModelsWorkflowProcessedCertificateRequest) GetKeyfactorRequestId() int32

GetKeyfactorRequestId returns the KeyfactorRequestId field value if set, zero value otherwise.

func (*ModelsWorkflowProcessedCertificateRequest) GetKeyfactorRequestIdOk ¶

func (o *ModelsWorkflowProcessedCertificateRequest) GetKeyfactorRequestIdOk() (*int32, bool)

GetKeyfactorRequestIdOk returns a tuple with the KeyfactorRequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ModelsWorkflowProcessedCertificateRequest) HasCAHost ¶

HasCAHost returns a boolean if a field has been set.

func (*ModelsWorkflowProcessedCertificateRequest) HasCALogicalName ¶

func (o *ModelsWorkflowProcessedCertificateRequest) HasCALogicalName() bool

HasCALogicalName returns a boolean if a field has been set.

func (*ModelsWorkflowProcessedCertificateRequest) HasCARequestId ¶

func (o *ModelsWorkflowProcessedCertificateRequest) HasCARequestId() bool

HasCARequestId returns a boolean if a field has been set.

func (*ModelsWorkflowProcessedCertificateRequest) HasCARowId ¶

HasCARowId returns a boolean if a field has been set.

func (*ModelsWorkflowProcessedCertificateRequest) HasComment ¶

HasComment returns a boolean if a field has been set.

func (*ModelsWorkflowProcessedCertificateRequest) HasKeyfactorRequestId ¶

func (o *ModelsWorkflowProcessedCertificateRequest) HasKeyfactorRequestId() bool

HasKeyfactorRequestId returns a boolean if a field has been set.

func (ModelsWorkflowProcessedCertificateRequest) MarshalJSON ¶

func (*ModelsWorkflowProcessedCertificateRequest) SetCAHost ¶

SetCAHost gets a reference to the given string and assigns it to the CAHost field.

func (*ModelsWorkflowProcessedCertificateRequest) SetCALogicalName ¶

func (o *ModelsWorkflowProcessedCertificateRequest) SetCALogicalName(v string)

SetCALogicalName gets a reference to the given string and assigns it to the CALogicalName field.

func (*ModelsWorkflowProcessedCertificateRequest) SetCARequestId ¶

SetCARequestId gets a reference to the given string and assigns it to the CARequestId field.

func (*ModelsWorkflowProcessedCertificateRequest) SetCARowId ¶

SetCARowId gets a reference to the given int32 and assigns it to the CARowId field.

func (*ModelsWorkflowProcessedCertificateRequest) SetComment ¶

SetComment gets a reference to the given string and assigns it to the Comment field.

func (*ModelsWorkflowProcessedCertificateRequest) SetKeyfactorRequestId ¶

func (o *ModelsWorkflowProcessedCertificateRequest) SetKeyfactorRequestId(v int32)

SetKeyfactorRequestId gets a reference to the given int32 and assigns it to the KeyfactorRequestId field.

func (ModelsWorkflowProcessedCertificateRequest) ToMap ¶

func (o ModelsWorkflowProcessedCertificateRequest) ToMap() (map[string]interface{}, error)

func (*ModelsWorkflowProcessedCertificateRequest) UnmarshalJSON ¶

func (o *ModelsWorkflowProcessedCertificateRequest) UnmarshalJSON(bytes []byte) (err error)

type MonitoringApiService ¶

type MonitoringApiService service

MonitoringApiService MonitoringApi service

func (*MonitoringApiService) MonitoringAddRevocationMonitoring ¶

func (a *MonitoringApiService) MonitoringAddRevocationMonitoring(ctx context.Context) ApiMonitoringAddRevocationMonitoringRequest

MonitoringAddRevocationMonitoring Add a revocation monitoring endpoint

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMonitoringAddRevocationMonitoringRequest

func (*MonitoringApiService) MonitoringAddRevocationMonitoringExecute ¶

Execute executes the request

@return KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse

func (*MonitoringApiService) MonitoringDeleteRevocationMonitoring ¶

func (a *MonitoringApiService) MonitoringDeleteRevocationMonitoring(ctx context.Context, id int32) ApiMonitoringDeleteRevocationMonitoringRequest

MonitoringDeleteRevocationMonitoring Delete a revocation monitoring endpoint

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the revocation monitoring endpoint
@return ApiMonitoringDeleteRevocationMonitoringRequest

func (*MonitoringApiService) MonitoringDeleteRevocationMonitoringExecute ¶

func (a *MonitoringApiService) MonitoringDeleteRevocationMonitoringExecute(r ApiMonitoringDeleteRevocationMonitoringRequest) (*http.Response, error)

Execute executes the request

func (*MonitoringApiService) MonitoringEditRevocationMonitoring ¶

func (a *MonitoringApiService) MonitoringEditRevocationMonitoring(ctx context.Context) ApiMonitoringEditRevocationMonitoringRequest

MonitoringEditRevocationMonitoring Edit a revocation monitoring endpoint

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMonitoringEditRevocationMonitoringRequest

func (*MonitoringApiService) MonitoringEditRevocationMonitoringExecute ¶

Execute executes the request

@return KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse

func (*MonitoringApiService) MonitoringGetRevocationMonitoring ¶

func (a *MonitoringApiService) MonitoringGetRevocationMonitoring(ctx context.Context, id int32) ApiMonitoringGetRevocationMonitoringRequest

MonitoringGetRevocationMonitoring Get a revocation monitoring endpoint

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the endpoint to get
@return ApiMonitoringGetRevocationMonitoringRequest

func (*MonitoringApiService) MonitoringGetRevocationMonitoringEndpoints ¶

func (a *MonitoringApiService) MonitoringGetRevocationMonitoringEndpoints(ctx context.Context) ApiMonitoringGetRevocationMonitoringEndpointsRequest

MonitoringGetRevocationMonitoringEndpoints Gets all revocation monitoring endpoints according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMonitoringGetRevocationMonitoringEndpointsRequest

func (*MonitoringApiService) MonitoringGetRevocationMonitoringEndpointsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse

func (*MonitoringApiService) MonitoringGetRevocationMonitoringExecute ¶

Execute executes the request

@return KeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse

func (*MonitoringApiService) MonitoringResolveOCSP ¶

MonitoringResolveOCSP Resolve the Certificate authority given

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMonitoringResolveOCSPRequest

func (*MonitoringApiService) MonitoringResolveOCSPExecute ¶

Execute executes the request

@return KeyfactorApiModelsMonitoringOCSPParametersResponse

func (*MonitoringApiService) MonitoringTestAllRevocationMonitoringAlert ¶

func (a *MonitoringApiService) MonitoringTestAllRevocationMonitoringAlert(ctx context.Context) ApiMonitoringTestAllRevocationMonitoringAlertRequest

MonitoringTestAllRevocationMonitoringAlert Test All Alerts

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMonitoringTestAllRevocationMonitoringAlertRequest

func (*MonitoringApiService) MonitoringTestAllRevocationMonitoringAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse

func (*MonitoringApiService) MonitoringTestRevocationMonitoringAlert ¶

func (a *MonitoringApiService) MonitoringTestRevocationMonitoringAlert(ctx context.Context) ApiMonitoringTestRevocationMonitoringAlertRequest

MonitoringTestRevocationMonitoringAlert Test Alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiMonitoringTestRevocationMonitoringAlertRequest

func (*MonitoringApiService) MonitoringTestRevocationMonitoringAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse

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 NullableCSSCMSDataModelModelsPamProviderTypeParamValue ¶ added in v0.2.0

type NullableCSSCMSDataModelModelsPamProviderTypeParamValue struct {
	// contains filtered or unexported fields
}

func (NullableCSSCMSDataModelModelsPamProviderTypeParamValue) Get ¶ added in v0.2.0

func (NullableCSSCMSDataModelModelsPamProviderTypeParamValue) IsSet ¶ added in v0.2.0

func (NullableCSSCMSDataModelModelsPamProviderTypeParamValue) MarshalJSON ¶ added in v0.2.0

func (*NullableCSSCMSDataModelModelsPamProviderTypeParamValue) Set ¶ added in v0.2.0

func (*NullableCSSCMSDataModelModelsPamProviderTypeParamValue) UnmarshalJSON ¶ added in v0.2.0

func (*NullableCSSCMSDataModelModelsPamProviderTypeParamValue) Unset ¶ added in v0.2.0

type NullableCSSCMSDataModelModelsProvider ¶ added in v0.2.0

type NullableCSSCMSDataModelModelsProvider struct {
	// contains filtered or unexported fields
}

func NewNullableCSSCMSDataModelModelsProvider ¶ added in v0.2.0

func NewNullableCSSCMSDataModelModelsProvider(val *CSSCMSDataModelModelsProvider) *NullableCSSCMSDataModelModelsProvider

func (NullableCSSCMSDataModelModelsProvider) Get ¶ added in v0.2.0

func (NullableCSSCMSDataModelModelsProvider) IsSet ¶ added in v0.2.0

func (NullableCSSCMSDataModelModelsProvider) MarshalJSON ¶ added in v0.2.0

func (v NullableCSSCMSDataModelModelsProvider) MarshalJSON() ([]byte, error)

func (*NullableCSSCMSDataModelModelsProvider) Set ¶ added in v0.2.0

func (*NullableCSSCMSDataModelModelsProvider) UnmarshalJSON ¶ added in v0.2.0

func (v *NullableCSSCMSDataModelModelsProvider) UnmarshalJSON(src []byte) error

func (*NullableCSSCMSDataModelModelsProvider) Unset ¶ added in v0.2.0

type NullableCSSCMSDataModelModelsProviderType ¶ added in v0.2.0

type NullableCSSCMSDataModelModelsProviderType struct {
	// contains filtered or unexported fields
}

func NewNullableCSSCMSDataModelModelsProviderType ¶ added in v0.2.0

func NewNullableCSSCMSDataModelModelsProviderType(val *CSSCMSDataModelModelsProviderType) *NullableCSSCMSDataModelModelsProviderType

func (NullableCSSCMSDataModelModelsProviderType) Get ¶ added in v0.2.0

func (NullableCSSCMSDataModelModelsProviderType) IsSet ¶ added in v0.2.0

func (NullableCSSCMSDataModelModelsProviderType) MarshalJSON ¶ added in v0.2.0

func (*NullableCSSCMSDataModelModelsProviderType) Set ¶ added in v0.2.0

func (*NullableCSSCMSDataModelModelsProviderType) UnmarshalJSON ¶ added in v0.2.0

func (v *NullableCSSCMSDataModelModelsProviderType) UnmarshalJSON(src []byte) error

func (*NullableCSSCMSDataModelModelsProviderType) Unset ¶ added in v0.2.0

type NullableCSSCMSDataModelModelsProviderTypeParam ¶ added in v0.2.0

type NullableCSSCMSDataModelModelsProviderTypeParam struct {
	// contains filtered or unexported fields
}

func (NullableCSSCMSDataModelModelsProviderTypeParam) Get ¶ added in v0.2.0

func (NullableCSSCMSDataModelModelsProviderTypeParam) IsSet ¶ added in v0.2.0

func (NullableCSSCMSDataModelModelsProviderTypeParam) MarshalJSON ¶ added in v0.2.0

func (*NullableCSSCMSDataModelModelsProviderTypeParam) Set ¶ added in v0.2.0

func (*NullableCSSCMSDataModelModelsProviderTypeParam) UnmarshalJSON ¶ added in v0.2.0

func (*NullableCSSCMSDataModelModelsProviderTypeParam) Unset ¶ added in v0.2.0

type NullableCoreModelsEnrollmentEnrollmentCA ¶

type NullableCoreModelsEnrollmentEnrollmentCA struct {
	// contains filtered or unexported fields
}

func (NullableCoreModelsEnrollmentEnrollmentCA) Get ¶

func (NullableCoreModelsEnrollmentEnrollmentCA) IsSet ¶

func (NullableCoreModelsEnrollmentEnrollmentCA) MarshalJSON ¶

func (*NullableCoreModelsEnrollmentEnrollmentCA) Set ¶

func (*NullableCoreModelsEnrollmentEnrollmentCA) UnmarshalJSON ¶

func (v *NullableCoreModelsEnrollmentEnrollmentCA) UnmarshalJSON(src []byte) error

func (*NullableCoreModelsEnrollmentEnrollmentCA) Unset ¶

type NullableCoreModelsEnrollmentEnrollmentTemplate ¶

type NullableCoreModelsEnrollmentEnrollmentTemplate struct {
	// contains filtered or unexported fields
}

func (NullableCoreModelsEnrollmentEnrollmentTemplate) Get ¶

func (NullableCoreModelsEnrollmentEnrollmentTemplate) IsSet ¶

func (NullableCoreModelsEnrollmentEnrollmentTemplate) MarshalJSON ¶

func (*NullableCoreModelsEnrollmentEnrollmentTemplate) Set ¶

func (*NullableCoreModelsEnrollmentEnrollmentTemplate) UnmarshalJSON ¶

func (*NullableCoreModelsEnrollmentEnrollmentTemplate) Unset ¶

type NullableCoreModelsEnrollmentEnrollmentTemplateCAResponse ¶

type NullableCoreModelsEnrollmentEnrollmentTemplateCAResponse struct {
	// contains filtered or unexported fields
}

func (NullableCoreModelsEnrollmentEnrollmentTemplateCAResponse) Get ¶

func (NullableCoreModelsEnrollmentEnrollmentTemplateCAResponse) IsSet ¶

func (NullableCoreModelsEnrollmentEnrollmentTemplateCAResponse) MarshalJSON ¶

func (*NullableCoreModelsEnrollmentEnrollmentTemplateCAResponse) Set ¶

func (*NullableCoreModelsEnrollmentEnrollmentTemplateCAResponse) UnmarshalJSON ¶

func (*NullableCoreModelsEnrollmentEnrollmentTemplateCAResponse) 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 NullableKeyfactorAPIModelsEnrollmentEnrollmentManagementResponse ¶

type NullableKeyfactorAPIModelsEnrollmentEnrollmentManagementResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) Get ¶

func (NullableKeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) IsSet ¶

func (NullableKeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) MarshalJSON ¶

func (*NullableKeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) Set ¶

func (*NullableKeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) UnmarshalJSON ¶

func (*NullableKeyfactorAPIModelsEnrollmentEnrollmentManagementResponse) Unset ¶

type NullableKeyfactorAPIModelsSMTPSMTPRequest ¶

type NullableKeyfactorAPIModelsSMTPSMTPRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorAPIModelsSMTPSMTPRequest) Get ¶

func (NullableKeyfactorAPIModelsSMTPSMTPRequest) IsSet ¶

func (NullableKeyfactorAPIModelsSMTPSMTPRequest) MarshalJSON ¶

func (*NullableKeyfactorAPIModelsSMTPSMTPRequest) Set ¶

func (*NullableKeyfactorAPIModelsSMTPSMTPRequest) UnmarshalJSON ¶

func (v *NullableKeyfactorAPIModelsSMTPSMTPRequest) UnmarshalJSON(src []byte) error

func (*NullableKeyfactorAPIModelsSMTPSMTPRequest) Unset ¶

type NullableKeyfactorAPIModelsSMTPSMTPResponse ¶

type NullableKeyfactorAPIModelsSMTPSMTPResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorAPIModelsSMTPSMTPResponse) Get ¶

func (NullableKeyfactorAPIModelsSMTPSMTPResponse) IsSet ¶

func (NullableKeyfactorAPIModelsSMTPSMTPResponse) MarshalJSON ¶

func (*NullableKeyfactorAPIModelsSMTPSMTPResponse) Set ¶

func (*NullableKeyfactorAPIModelsSMTPSMTPResponse) UnmarshalJSON ¶

func (v *NullableKeyfactorAPIModelsSMTPSMTPResponse) UnmarshalJSON(src []byte) error

func (*NullableKeyfactorAPIModelsSMTPSMTPResponse) Unset ¶

type NullableKeyfactorAPIModelsSMTPSMTPTestRequest ¶

type NullableKeyfactorAPIModelsSMTPSMTPTestRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorAPIModelsSMTPSMTPTestRequest) Get ¶

func (NullableKeyfactorAPIModelsSMTPSMTPTestRequest) IsSet ¶

func (NullableKeyfactorAPIModelsSMTPSMTPTestRequest) MarshalJSON ¶

func (*NullableKeyfactorAPIModelsSMTPSMTPTestRequest) Set ¶

func (*NullableKeyfactorAPIModelsSMTPSMTPTestRequest) UnmarshalJSON ¶

func (*NullableKeyfactorAPIModelsSMTPSMTPTestRequest) Unset ¶

type NullableKeyfactorAPIModelsSMTPSMTPTestResponse ¶

type NullableKeyfactorAPIModelsSMTPSMTPTestResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorAPIModelsSMTPSMTPTestResponse) Get ¶

func (NullableKeyfactorAPIModelsSMTPSMTPTestResponse) IsSet ¶

func (NullableKeyfactorAPIModelsSMTPSMTPTestResponse) MarshalJSON ¶

func (*NullableKeyfactorAPIModelsSMTPSMTPTestResponse) Set ¶

func (*NullableKeyfactorAPIModelsSMTPSMTPTestResponse) UnmarshalJSON ¶

func (*NullableKeyfactorAPIModelsSMTPSMTPTestResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse ¶

type NullableKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsAlertCertificateQueryAlertCertificateQueryResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest ¶

type NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse ¶

type NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse ¶

type NullableKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsAlertTemplateAlertTemplateResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest ¶

type NullableKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsDeniedDeniedAlertCreationRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse ¶

type NullableKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsDeniedDeniedAlertDefinitionResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest ¶

type NullableKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsDeniedDeniedAlertUpdateRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertCreationRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertDefinitionResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertResponse ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestAllRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertTestResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest ¶

type NullableKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsExpirationExpirationAlertUpdateRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest ¶

type NullableKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsIssuedIssuedAlertCreationRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse ¶

type NullableKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsIssuedIssuedAlertDefinitionResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest ¶

type NullableKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsIssuedIssuedAlertUpdateRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertCreationRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertDefinitionResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestAllRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertTestResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest ¶

type NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsKeyRotationKeyRotationAlertUpdateRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertCreationRequest ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertCreationRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertResponse ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertTestAllRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertTestRequest ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertTestRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertTestRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertTestRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertTestRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertTestRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertTestRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertTestRequest) Unset ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertTestResponse ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertTestResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertTestResponse) Get ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertTestResponse) IsSet ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertTestResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertTestResponse) Set ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertTestResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertTestResponse) Unset ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest ¶

type NullableKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) Get ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) IsSet ¶

func (NullableKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) Set ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsAlertsPendingPendingAlertUpdateRequest) Unset ¶

type NullableKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse ¶

type NullableKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) Get ¶

func (NullableKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) IsSet ¶

func (NullableKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) Set ¶

func (*NullableKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateAuthoritiesCertificateAuthorityTestResponse) Unset ¶

type NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest ¶

type NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) Get ¶

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) IsSet ¶

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) Set ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCopyRequest) Unset ¶

type NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest ¶

type NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) Get ¶

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) IsSet ¶

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) Set ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionCreateRequest) Unset ¶

type NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse ¶

type NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) Get ¶

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) IsSet ¶

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) Set ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionResponse) Unset ¶

type NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest ¶

type NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) Get ¶

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) IsSet ¶

func (NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) Set ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateCollectionsCertificateCollectionUpdateRequest) Unset ¶

type NullableKeyfactorApiModelsCertificateStoresAddCertificateRequest ¶

type NullableKeyfactorApiModelsCertificateStoresAddCertificateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateStoresAddCertificateRequest) Get ¶

func (NullableKeyfactorApiModelsCertificateStoresAddCertificateRequest) IsSet ¶

func (NullableKeyfactorApiModelsCertificateStoresAddCertificateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresAddCertificateRequest) Set ¶

func (*NullableKeyfactorApiModelsCertificateStoresAddCertificateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresAddCertificateRequest) Unset ¶

type NullableKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest ¶

type NullableKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) Get ¶

func (NullableKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) IsSet ¶

func (NullableKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) Set ¶

func (*NullableKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresCertificateStoreApproveRequest) Unset ¶

type NullableKeyfactorApiModelsCertificateStoresJobHistoryResponse ¶

type NullableKeyfactorApiModelsCertificateStoresJobHistoryResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateStoresJobHistoryResponse) Get ¶

func (NullableKeyfactorApiModelsCertificateStoresJobHistoryResponse) IsSet ¶

func (NullableKeyfactorApiModelsCertificateStoresJobHistoryResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresJobHistoryResponse) Set ¶

func (*NullableKeyfactorApiModelsCertificateStoresJobHistoryResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresJobHistoryResponse) Unset ¶

type NullableKeyfactorApiModelsCertificateStoresReenrollmentRequest ¶

type NullableKeyfactorApiModelsCertificateStoresReenrollmentRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateStoresReenrollmentRequest) Get ¶

func (NullableKeyfactorApiModelsCertificateStoresReenrollmentRequest) IsSet ¶

func (NullableKeyfactorApiModelsCertificateStoresReenrollmentRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresReenrollmentRequest) Set ¶

func (*NullableKeyfactorApiModelsCertificateStoresReenrollmentRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresReenrollmentRequest) Unset ¶

type NullableKeyfactorApiModelsCertificateStoresRemoveCertificateRequest ¶

type NullableKeyfactorApiModelsCertificateStoresRemoveCertificateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateStoresRemoveCertificateRequest) Get ¶

func (NullableKeyfactorApiModelsCertificateStoresRemoveCertificateRequest) IsSet ¶

func (NullableKeyfactorApiModelsCertificateStoresRemoveCertificateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresRemoveCertificateRequest) Set ¶

func (*NullableKeyfactorApiModelsCertificateStoresRemoveCertificateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresRemoveCertificateRequest) Unset ¶

type NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest ¶

type NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) Get ¶

func (NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) IsSet ¶

func (NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) Set ¶

func (*NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeCreationRequest) Unset ¶

type NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse ¶

type NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) Get ¶

func (NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) IsSet ¶

func (NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) Set ¶

func (*NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeResponse) Unset ¶

type NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest ¶

type NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) Get ¶

func (NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) IsSet ¶

func (NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) Set ¶

func (*NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificateStoresTypesCertificateStoreTypeUpdateRequest) Unset ¶

type NullableKeyfactorApiModelsCertificatesAnalyzeCertificateRequest ¶

type NullableKeyfactorApiModelsCertificatesAnalyzeCertificateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificatesAnalyzeCertificateRequest) Get ¶

func (NullableKeyfactorApiModelsCertificatesAnalyzeCertificateRequest) IsSet ¶

func (NullableKeyfactorApiModelsCertificatesAnalyzeCertificateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificatesAnalyzeCertificateRequest) Set ¶

func (*NullableKeyfactorApiModelsCertificatesAnalyzeCertificateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificatesAnalyzeCertificateRequest) Unset ¶

type NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponse ¶

type NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) Get ¶

func (NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) IsSet ¶

func (NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) Set ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponse) Unset ¶

type NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission ¶

type NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) IsSet ¶

func (NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) Set ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateIdentityAuditResponseCertificatePermission) Unset ¶

type NullableKeyfactorApiModelsCertificatesCertificateLocationsResponse ¶

type NullableKeyfactorApiModelsCertificatesCertificateLocationsResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificatesCertificateLocationsResponse) Get ¶

func (NullableKeyfactorApiModelsCertificatesCertificateLocationsResponse) IsSet ¶

func (NullableKeyfactorApiModelsCertificatesCertificateLocationsResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateLocationsResponse) Set ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateLocationsResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateLocationsResponse) Unset ¶

type NullableKeyfactorApiModelsCertificatesCertificateQueryRequest ¶

type NullableKeyfactorApiModelsCertificatesCertificateQueryRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsCertificatesCertificateQueryRequest) Get ¶

func (NullableKeyfactorApiModelsCertificatesCertificateQueryRequest) IsSet ¶

func (NullableKeyfactorApiModelsCertificatesCertificateQueryRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateQueryRequest) Set ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateQueryRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsCertificatesCertificateQueryRequest) Unset ¶

type NullableKeyfactorApiModelsConfigurationTenantConfigurationTenantRequest ¶

type NullableKeyfactorApiModelsConfigurationTenantConfigurationTenantRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) Get ¶

func (NullableKeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) IsSet ¶

func (NullableKeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) Set ¶

func (*NullableKeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsConfigurationTenantConfigurationTenantRequest) Unset ¶

type NullableKeyfactorApiModelsEnrollmentEnrollmentManagementRequest ¶

type NullableKeyfactorApiModelsEnrollmentEnrollmentManagementRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsEnrollmentEnrollmentManagementRequest) Get ¶

func (NullableKeyfactorApiModelsEnrollmentEnrollmentManagementRequest) IsSet ¶

func (NullableKeyfactorApiModelsEnrollmentEnrollmentManagementRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsEnrollmentEnrollmentManagementRequest) Set ¶

func (*NullableKeyfactorApiModelsEnrollmentEnrollmentManagementRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsEnrollmentEnrollmentManagementRequest) Unset ¶

type NullableKeyfactorApiModelsEnrollmentManagementStoreRequest ¶

type NullableKeyfactorApiModelsEnrollmentManagementStoreRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsEnrollmentManagementStoreRequest) Get ¶

func (NullableKeyfactorApiModelsEnrollmentManagementStoreRequest) IsSet ¶

func (NullableKeyfactorApiModelsEnrollmentManagementStoreRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsEnrollmentManagementStoreRequest) Set ¶

func (*NullableKeyfactorApiModelsEnrollmentManagementStoreRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsEnrollmentManagementStoreRequest) Unset ¶

type NullableKeyfactorApiModelsEnrollmentManagementStoreTypeRequest ¶

type NullableKeyfactorApiModelsEnrollmentManagementStoreTypeRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsEnrollmentManagementStoreTypeRequest) Get ¶

func (NullableKeyfactorApiModelsEnrollmentManagementStoreTypeRequest) IsSet ¶

func (NullableKeyfactorApiModelsEnrollmentManagementStoreTypeRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsEnrollmentManagementStoreTypeRequest) Set ¶

func (*NullableKeyfactorApiModelsEnrollmentManagementStoreTypeRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsEnrollmentManagementStoreTypeRequest) Unset ¶

type NullableKeyfactorApiModelsEventHandlerEventHandlerParameterRequest ¶

type NullableKeyfactorApiModelsEventHandlerEventHandlerParameterRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsEventHandlerEventHandlerParameterRequest) Get ¶

func (NullableKeyfactorApiModelsEventHandlerEventHandlerParameterRequest) IsSet ¶

func (NullableKeyfactorApiModelsEventHandlerEventHandlerParameterRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsEventHandlerEventHandlerParameterRequest) Set ¶

func (*NullableKeyfactorApiModelsEventHandlerEventHandlerParameterRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsEventHandlerEventHandlerParameterRequest) Unset ¶

type NullableKeyfactorApiModelsEventHandlerEventHandlerParameterResponse ¶

type NullableKeyfactorApiModelsEventHandlerEventHandlerParameterResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsEventHandlerEventHandlerParameterResponse) Get ¶

func (NullableKeyfactorApiModelsEventHandlerEventHandlerParameterResponse) IsSet ¶

func (NullableKeyfactorApiModelsEventHandlerEventHandlerParameterResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsEventHandlerEventHandlerParameterResponse) Set ¶

func (*NullableKeyfactorApiModelsEventHandlerEventHandlerParameterResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsEventHandlerEventHandlerParameterResponse) Unset ¶

type NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest ¶

type NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) Get ¶

func (NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) IsSet ¶

func (NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) Set ¶

func (*NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerRequest) Unset ¶

type NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse ¶

type NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) Get ¶

func (NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) IsSet ¶

func (NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) Set ¶

func (*NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsEventHandlerRegisteredEventHandlerResponse) Unset ¶

type NullableKeyfactorApiModelsLicenseLicenseResponse ¶

type NullableKeyfactorApiModelsLicenseLicenseResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsLicenseLicenseResponse) Get ¶

func (NullableKeyfactorApiModelsLicenseLicenseResponse) IsSet ¶

func (NullableKeyfactorApiModelsLicenseLicenseResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponse) Set ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponse) Unset ¶

type NullableKeyfactorApiModelsLicenseLicenseResponseLicense ¶

type NullableKeyfactorApiModelsLicenseLicenseResponseLicense struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicense) Get ¶

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicense) IsSet ¶

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicense) MarshalJSON ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicense) Set ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicense) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicense) Unset ¶

type NullableKeyfactorApiModelsLicenseLicenseResponseLicensedCustomer ¶

type NullableKeyfactorApiModelsLicenseLicenseResponseLicensedCustomer struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) Get ¶

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) IsSet ¶

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) MarshalJSON ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) Set ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicensedCustomer) Unset ¶

type NullableKeyfactorApiModelsLicenseLicenseResponseLicensedFeature ¶

type NullableKeyfactorApiModelsLicenseLicenseResponseLicensedFeature struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicensedFeature) Get ¶

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicensedFeature) IsSet ¶

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicensedFeature) MarshalJSON ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicensedFeature) Set ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicensedFeature) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicensedFeature) Unset ¶

type NullableKeyfactorApiModelsLicenseLicenseResponseLicensedProduct ¶

type NullableKeyfactorApiModelsLicenseLicenseResponseLicensedProduct struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicensedProduct) Get ¶

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicensedProduct) IsSet ¶

func (NullableKeyfactorApiModelsLicenseLicenseResponseLicensedProduct) MarshalJSON ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicensedProduct) Set ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicensedProduct) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsLicenseLicenseResponseLicensedProduct) Unset ¶

type NullableKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel ¶

type NullableKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) Get ¶

func (NullableKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) IsSet ¶

func (NullableKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) Set ¶

func (*NullableKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMacEnrollmentMacEnrollmentAPIModel) Unset ¶

type NullableKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest ¶

type NullableKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) Get ¶

func (NullableKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) IsSet ¶

func (NullableKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) Set ¶

func (*NullableKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMetadataFieldMetadataFieldCreateRequest) Unset ¶

type NullableKeyfactorApiModelsMetadataFieldMetadataFieldResponse ¶

type NullableKeyfactorApiModelsMetadataFieldMetadataFieldResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMetadataFieldMetadataFieldResponse) Get ¶

func (NullableKeyfactorApiModelsMetadataFieldMetadataFieldResponse) IsSet ¶

func (NullableKeyfactorApiModelsMetadataFieldMetadataFieldResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMetadataFieldMetadataFieldResponse) Set ¶

func (*NullableKeyfactorApiModelsMetadataFieldMetadataFieldResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMetadataFieldMetadataFieldResponse) Unset ¶

type NullableKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest ¶

type NullableKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) Get ¶

func (NullableKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) IsSet ¶

func (NullableKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) Set ¶

func (*NullableKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMetadataFieldMetadataFieldUpdateRequest) Unset ¶

type NullableKeyfactorApiModelsMonitoringDashboardRequest ¶

type NullableKeyfactorApiModelsMonitoringDashboardRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringDashboardRequest) Get ¶

func (NullableKeyfactorApiModelsMonitoringDashboardRequest) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringDashboardRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringDashboardRequest) Set ¶

func (*NullableKeyfactorApiModelsMonitoringDashboardRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringDashboardRequest) Unset ¶

type NullableKeyfactorApiModelsMonitoringDashboardResponse ¶

type NullableKeyfactorApiModelsMonitoringDashboardResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringDashboardResponse) Get ¶

func (NullableKeyfactorApiModelsMonitoringDashboardResponse) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringDashboardResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringDashboardResponse) Set ¶

func (*NullableKeyfactorApiModelsMonitoringDashboardResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringDashboardResponse) Unset ¶

type NullableKeyfactorApiModelsMonitoringEmailRequest ¶

type NullableKeyfactorApiModelsMonitoringEmailRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringEmailRequest) Get ¶

func (NullableKeyfactorApiModelsMonitoringEmailRequest) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringEmailRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringEmailRequest) Set ¶

func (*NullableKeyfactorApiModelsMonitoringEmailRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringEmailRequest) Unset ¶

type NullableKeyfactorApiModelsMonitoringEmailResponse ¶

type NullableKeyfactorApiModelsMonitoringEmailResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringEmailResponse) Get ¶

func (NullableKeyfactorApiModelsMonitoringEmailResponse) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringEmailResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringEmailResponse) Set ¶

func (*NullableKeyfactorApiModelsMonitoringEmailResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringEmailResponse) Unset ¶

type NullableKeyfactorApiModelsMonitoringOCSPParametersRequest ¶

type NullableKeyfactorApiModelsMonitoringOCSPParametersRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringOCSPParametersRequest) Get ¶

func (NullableKeyfactorApiModelsMonitoringOCSPParametersRequest) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringOCSPParametersRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringOCSPParametersRequest) Set ¶

func (*NullableKeyfactorApiModelsMonitoringOCSPParametersRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringOCSPParametersRequest) Unset ¶

type NullableKeyfactorApiModelsMonitoringOCSPParametersResponse ¶

type NullableKeyfactorApiModelsMonitoringOCSPParametersResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringOCSPParametersResponse) Get ¶

func (NullableKeyfactorApiModelsMonitoringOCSPParametersResponse) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringOCSPParametersResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringOCSPParametersResponse) Set ¶

func (*NullableKeyfactorApiModelsMonitoringOCSPParametersResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringOCSPParametersResponse) Unset ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) Get ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) Set ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestAllRequest) Unset ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) Get ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) Set ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestRequest) Unset ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) Get ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) Set ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringAlertTestResponse) Unset ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) Get ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) Set ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringCreationRequest) Unset ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) Get ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) Set ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringDefinitionResponse) Unset ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest ¶

type NullableKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) Get ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) IsSet ¶

func (NullableKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) Set ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsMonitoringRevocationMonitoringUpdateRequest) Unset ¶

type NullableKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest ¶

type NullableKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) Get ¶

func (NullableKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsAcknowledgeJobRequest) Unset ¶

type NullableKeyfactorApiModelsOrchestratorJobsBulkJobResponse ¶

type NullableKeyfactorApiModelsOrchestratorJobsBulkJobResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorJobsBulkJobResponse) Get ¶

func (NullableKeyfactorApiModelsOrchestratorJobsBulkJobResponse) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorJobsBulkJobResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsBulkJobResponse) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsBulkJobResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsBulkJobResponse) Unset ¶

type NullableKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse ¶

type NullableKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) Get ¶

func (NullableKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse) Unset ¶

type NullableKeyfactorApiModelsOrchestratorJobsJobFieldResponse ¶

type NullableKeyfactorApiModelsOrchestratorJobsJobFieldResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorJobsJobFieldResponse) Get ¶

func (NullableKeyfactorApiModelsOrchestratorJobsJobFieldResponse) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorJobsJobFieldResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobFieldResponse) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobFieldResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobFieldResponse) Unset ¶

type NullableKeyfactorApiModelsOrchestratorJobsJobResponse ¶

type NullableKeyfactorApiModelsOrchestratorJobsJobResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorJobsJobResponse) Get ¶

func (NullableKeyfactorApiModelsOrchestratorJobsJobResponse) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorJobsJobResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobResponse) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobResponse) Unset ¶

type NullableKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse ¶

type NullableKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) Get ¶

func (NullableKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobTypeFieldResponse) Unset ¶

type NullableKeyfactorApiModelsOrchestratorJobsJobTypeResponse ¶

type NullableKeyfactorApiModelsOrchestratorJobsJobTypeResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorJobsJobTypeResponse) Get ¶

func (NullableKeyfactorApiModelsOrchestratorJobsJobTypeResponse) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorJobsJobTypeResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobTypeResponse) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobTypeResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsJobTypeResponse) Unset ¶

type NullableKeyfactorApiModelsOrchestratorJobsRescheduleJobRequest ¶

type NullableKeyfactorApiModelsOrchestratorJobsRescheduleJobRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) Get ¶

func (NullableKeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsRescheduleJobRequest) Unset ¶

type NullableKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest ¶

type NullableKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) Get ¶

func (NullableKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorJobsUnscheduleJobRequest) Unset ¶

type NullableKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse ¶

type NullableKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) Get ¶

func (NullableKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentBlueprintJobsResponse) Unset ¶

type NullableKeyfactorApiModelsOrchestratorsAgentBlueprintResponse ¶

type NullableKeyfactorApiModelsOrchestratorsAgentBlueprintResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorsAgentBlueprintResponse) Get ¶

func (NullableKeyfactorApiModelsOrchestratorsAgentBlueprintResponse) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorsAgentBlueprintResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentBlueprintResponse) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentBlueprintResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentBlueprintResponse) Unset ¶

type NullableKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse ¶

type NullableKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) Get ¶

func (NullableKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentBlueprintStoresResponse) Unset ¶

type NullableKeyfactorApiModelsOrchestratorsAgentResponse ¶

type NullableKeyfactorApiModelsOrchestratorsAgentResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorsAgentResponse) Get ¶

func (NullableKeyfactorApiModelsOrchestratorsAgentResponse) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorsAgentResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentResponse) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsAgentResponse) Unset ¶

type NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest ¶

type NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentRequest) Unset ¶

type NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse ¶

type NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) IsSet ¶

func (NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) Set ¶

func (*NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsOrchestratorsUpdateOrchestratorAuthCertificateReenrollmentResponse) Unset ¶

type NullableKeyfactorApiModelsSecurityRolesAreaPermissionResponse ¶

type NullableKeyfactorApiModelsSecurityRolesAreaPermissionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSecurityRolesAreaPermissionResponse) Get ¶

func (NullableKeyfactorApiModelsSecurityRolesAreaPermissionResponse) IsSet ¶

func (NullableKeyfactorApiModelsSecurityRolesAreaPermissionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesAreaPermissionResponse) Set ¶

func (*NullableKeyfactorApiModelsSecurityRolesAreaPermissionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesAreaPermissionResponse) Unset ¶

type NullableKeyfactorApiModelsSecurityRolesContainerPermissionRequest ¶

type NullableKeyfactorApiModelsSecurityRolesContainerPermissionRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSecurityRolesContainerPermissionRequest) Get ¶

func (NullableKeyfactorApiModelsSecurityRolesContainerPermissionRequest) IsSet ¶

func (NullableKeyfactorApiModelsSecurityRolesContainerPermissionRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesContainerPermissionRequest) Set ¶

func (*NullableKeyfactorApiModelsSecurityRolesContainerPermissionRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesContainerPermissionRequest) Unset ¶

type NullableKeyfactorApiModelsSecurityRolesContainerPermissionResponse ¶

type NullableKeyfactorApiModelsSecurityRolesContainerPermissionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSecurityRolesContainerPermissionResponse) Get ¶

func (NullableKeyfactorApiModelsSecurityRolesContainerPermissionResponse) IsSet ¶

func (NullableKeyfactorApiModelsSecurityRolesContainerPermissionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesContainerPermissionResponse) Set ¶

func (*NullableKeyfactorApiModelsSecurityRolesContainerPermissionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesContainerPermissionResponse) Unset ¶

type NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest ¶

type NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) Get ¶

func (NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) IsSet ¶

func (NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) Set ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionRequest) Unset ¶

type NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse ¶

type NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) IsSet ¶

func (NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) Set ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse) Unset ¶

type NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest ¶

type NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) Get ¶

func (NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) IsSet ¶

func (NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) Set ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionRequest) Unset ¶

type NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse ¶

type NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) Get ¶

func (NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) IsSet ¶

func (NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) Set ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse) Unset ¶

type NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesRequest ¶

type NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) Get ¶

func (NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) IsSet ¶

func (NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) Set ¶

func (*NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesRequest) Unset ¶

type NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesResponse ¶

type NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) Get ¶

func (NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) IsSet ¶

func (NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) Set ¶

func (*NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesRoleIdentitiesResponse) Unset ¶

type NullableKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest ¶

type NullableKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) Get ¶

func (NullableKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) IsSet ¶

func (NullableKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) Set ¶

func (*NullableKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSecurityRolesSecurityRoleCopyRequest) Unset ¶

type NullableKeyfactorApiModelsSslCreateNetworkRequest ¶

type NullableKeyfactorApiModelsSslCreateNetworkRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSslCreateNetworkRequest) Get ¶

func (NullableKeyfactorApiModelsSslCreateNetworkRequest) IsSet ¶

func (NullableKeyfactorApiModelsSslCreateNetworkRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSslCreateNetworkRequest) Set ¶

func (*NullableKeyfactorApiModelsSslCreateNetworkRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSslCreateNetworkRequest) Unset ¶

type NullableKeyfactorApiModelsSslNetworkQueryResponse ¶

type NullableKeyfactorApiModelsSslNetworkQueryResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSslNetworkQueryResponse) Get ¶

func (NullableKeyfactorApiModelsSslNetworkQueryResponse) IsSet ¶

func (NullableKeyfactorApiModelsSslNetworkQueryResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSslNetworkQueryResponse) Set ¶

func (*NullableKeyfactorApiModelsSslNetworkQueryResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSslNetworkQueryResponse) Unset ¶

type NullableKeyfactorApiModelsSslNetworkResponse ¶

type NullableKeyfactorApiModelsSslNetworkResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSslNetworkResponse) Get ¶

func (NullableKeyfactorApiModelsSslNetworkResponse) IsSet ¶

func (NullableKeyfactorApiModelsSslNetworkResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSslNetworkResponse) Set ¶

func (*NullableKeyfactorApiModelsSslNetworkResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSslNetworkResponse) Unset ¶

type NullableKeyfactorApiModelsSslQuietHourRequest ¶

type NullableKeyfactorApiModelsSslQuietHourRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSslQuietHourRequest) Get ¶

func (NullableKeyfactorApiModelsSslQuietHourRequest) IsSet ¶

func (NullableKeyfactorApiModelsSslQuietHourRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSslQuietHourRequest) Set ¶

func (*NullableKeyfactorApiModelsSslQuietHourRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSslQuietHourRequest) Unset ¶

type NullableKeyfactorApiModelsSslQuietHourResponse ¶

type NullableKeyfactorApiModelsSslQuietHourResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSslQuietHourResponse) Get ¶

func (NullableKeyfactorApiModelsSslQuietHourResponse) IsSet ¶

func (NullableKeyfactorApiModelsSslQuietHourResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSslQuietHourResponse) Set ¶

func (*NullableKeyfactorApiModelsSslQuietHourResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSslQuietHourResponse) Unset ¶

type NullableKeyfactorApiModelsSslUpdateNetworkRequest ¶

type NullableKeyfactorApiModelsSslUpdateNetworkRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsSslUpdateNetworkRequest) Get ¶

func (NullableKeyfactorApiModelsSslUpdateNetworkRequest) IsSet ¶

func (NullableKeyfactorApiModelsSslUpdateNetworkRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsSslUpdateNetworkRequest) Set ¶

func (*NullableKeyfactorApiModelsSslUpdateNetworkRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsSslUpdateNetworkRequest) Unset ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) Get ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) Set ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultRequest) Unset ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) Get ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) Set ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateDefaultResponse) Unset ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) Get ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) Set ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyRequest) Unset ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) Get ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) Set ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplatePolicyResponse) Unset ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexRequest ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) Get ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) Set ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexRequest) Unset ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexResponse ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) Get ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) Set ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateRegexResponse) Unset ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) Get ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) Set ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsRequest) Unset ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse ¶

type NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) Get ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) Set ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse) Unset ¶

type NullableKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse ¶

type NullableKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) Get ¶

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) Set ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentDefaultResponse) Unset ¶

type NullableKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse ¶

type NullableKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) Get ¶

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) Set ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentPolicyResponse) Unset ¶

type NullableKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse ¶

type NullableKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) Get ¶

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) Set ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentRegexResponse) Unset ¶

type NullableKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse ¶

type NullableKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) Get ¶

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) Set ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesTemplateEnrollmentSettingsResponse) Unset ¶

type NullableKeyfactorApiModelsTemplatesValidSubjectPartResponse ¶

type NullableKeyfactorApiModelsTemplatesValidSubjectPartResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsTemplatesValidSubjectPartResponse) Get ¶

func (NullableKeyfactorApiModelsTemplatesValidSubjectPartResponse) IsSet ¶

func (NullableKeyfactorApiModelsTemplatesValidSubjectPartResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesValidSubjectPartResponse) Set ¶

func (*NullableKeyfactorApiModelsTemplatesValidSubjectPartResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsTemplatesValidSubjectPartResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsAvailableSignalResponse ¶

type NullableKeyfactorApiModelsWorkflowsAvailableSignalResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsAvailableSignalResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsAvailableSignalResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsAvailableSignalResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsAvailableSignalResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsAvailableSignalResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsAvailableSignalResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsAvailableStepQueryResponse ¶

type NullableKeyfactorApiModelsWorkflowsAvailableStepQueryResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsAvailableStepQueryResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsAvailableStepQueryResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsAvailableStepQueryResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsAvailableStepQueryResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsAvailableStepQueryResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsAvailableStepQueryResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsAvailableStepResponse ¶

type NullableKeyfactorApiModelsWorkflowsAvailableStepResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsAvailableStepResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsAvailableStepResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsAvailableStepResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsAvailableStepResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsAvailableStepResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsAvailableStepResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsConditionConfigurationRequest ¶

type NullableKeyfactorApiModelsWorkflowsConditionConfigurationRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsConditionConfigurationRequest) Get ¶

func (NullableKeyfactorApiModelsWorkflowsConditionConfigurationRequest) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsConditionConfigurationRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsConditionConfigurationRequest) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsConditionConfigurationRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsConditionConfigurationRequest) Unset ¶

type NullableKeyfactorApiModelsWorkflowsConditionConfigurationResponse ¶

type NullableKeyfactorApiModelsWorkflowsConditionConfigurationResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsConditionConfigurationResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsConditionConfigurationResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsConditionConfigurationResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsConditionConfigurationResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsConditionConfigurationResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsConditionConfigurationResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionCreateRequest ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsDefinitionCreateRequest) Get ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionCreateRequest) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionCreateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionCreateRequest) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionCreateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionCreateRequest) Unset ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionQueryResponse ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionQueryResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsDefinitionQueryResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionQueryResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionQueryResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionQueryResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionQueryResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionQueryResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionResponse ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsDefinitionResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionStepRequest ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionStepRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsDefinitionStepRequest) Get ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionStepRequest) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionStepRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionStepRequest) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionStepRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionStepRequest) Unset ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionStepResponse ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionStepResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsDefinitionStepResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionStepResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionStepResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionStepResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionStepResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionStepResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionStepSignalResponse ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionStepSignalResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionStepSignalResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionUpdateRequest ¶

type NullableKeyfactorApiModelsWorkflowsDefinitionUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsDefinitionUpdateRequest) Get ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionUpdateRequest) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsDefinitionUpdateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionUpdateRequest) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionUpdateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsDefinitionUpdateRequest) Unset ¶

type NullableKeyfactorApiModelsWorkflowsInstanceDefinitionResponse ¶

type NullableKeyfactorApiModelsWorkflowsInstanceDefinitionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsInstanceDefinitionResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsInstanceDefinitionResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsInstanceDefinitionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsInstanceDefinitionResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsInstanceDefinitionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsInstanceDefinitionResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsInstanceQueryResponse ¶

type NullableKeyfactorApiModelsWorkflowsInstanceQueryResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsInstanceQueryResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsInstanceQueryResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsInstanceQueryResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsInstanceQueryResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsInstanceQueryResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsInstanceQueryResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsInstanceResponse ¶

type NullableKeyfactorApiModelsWorkflowsInstanceResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsInstanceResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsInstanceResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsInstanceResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsInstanceResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsInstanceResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsInstanceResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsParameterDefinitionResponse ¶

type NullableKeyfactorApiModelsWorkflowsParameterDefinitionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsParameterDefinitionResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsParameterDefinitionResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsParameterDefinitionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsParameterDefinitionResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsParameterDefinitionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsParameterDefinitionResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsSignalConfigurationRequest ¶

type NullableKeyfactorApiModelsWorkflowsSignalConfigurationRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsSignalConfigurationRequest) Get ¶

func (NullableKeyfactorApiModelsWorkflowsSignalConfigurationRequest) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsSignalConfigurationRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsSignalConfigurationRequest) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsSignalConfigurationRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsSignalConfigurationRequest) Unset ¶

type NullableKeyfactorApiModelsWorkflowsSignalDefinitionResponse ¶

type NullableKeyfactorApiModelsWorkflowsSignalDefinitionResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsSignalDefinitionResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsSignalDefinitionResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsSignalDefinitionResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsSignalDefinitionResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsSignalDefinitionResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsSignalDefinitionResponse) Unset ¶

type NullableKeyfactorApiModelsWorkflowsSignalRequest ¶

type NullableKeyfactorApiModelsWorkflowsSignalRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsSignalRequest) Get ¶

func (NullableKeyfactorApiModelsWorkflowsSignalRequest) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsSignalRequest) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsSignalRequest) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsSignalRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsSignalRequest) Unset ¶

type NullableKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse ¶

type NullableKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) Get ¶

func (NullableKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) IsSet ¶

func (NullableKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) MarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) Set ¶

func (*NullableKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse) Unset ¶

type NullableKeyfactorApiPAMProviderTypeCreateRequest ¶

type NullableKeyfactorApiPAMProviderTypeCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiPAMProviderTypeCreateRequest) Get ¶

func (NullableKeyfactorApiPAMProviderTypeCreateRequest) IsSet ¶

func (NullableKeyfactorApiPAMProviderTypeCreateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiPAMProviderTypeCreateRequest) Set ¶

func (*NullableKeyfactorApiPAMProviderTypeCreateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiPAMProviderTypeCreateRequest) Unset ¶

type NullableKeyfactorApiPAMProviderTypeParameterCreateRequest ¶

type NullableKeyfactorApiPAMProviderTypeParameterCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiPAMProviderTypeParameterCreateRequest) Get ¶

func (NullableKeyfactorApiPAMProviderTypeParameterCreateRequest) IsSet ¶

func (NullableKeyfactorApiPAMProviderTypeParameterCreateRequest) MarshalJSON ¶

func (*NullableKeyfactorApiPAMProviderTypeParameterCreateRequest) Set ¶

func (*NullableKeyfactorApiPAMProviderTypeParameterCreateRequest) UnmarshalJSON ¶

func (*NullableKeyfactorApiPAMProviderTypeParameterCreateRequest) Unset ¶

type NullableKeyfactorApiPAMProviderTypeParameterResponse ¶

type NullableKeyfactorApiPAMProviderTypeParameterResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiPAMProviderTypeParameterResponse) Get ¶

func (NullableKeyfactorApiPAMProviderTypeParameterResponse) IsSet ¶

func (NullableKeyfactorApiPAMProviderTypeParameterResponse) MarshalJSON ¶

func (*NullableKeyfactorApiPAMProviderTypeParameterResponse) Set ¶

func (*NullableKeyfactorApiPAMProviderTypeParameterResponse) UnmarshalJSON ¶

func (*NullableKeyfactorApiPAMProviderTypeParameterResponse) Unset ¶

type NullableKeyfactorApiPAMProviderTypeResponse ¶

type NullableKeyfactorApiPAMProviderTypeResponse struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorApiPAMProviderTypeResponse) Get ¶

func (NullableKeyfactorApiPAMProviderTypeResponse) IsSet ¶

func (NullableKeyfactorApiPAMProviderTypeResponse) MarshalJSON ¶

func (*NullableKeyfactorApiPAMProviderTypeResponse) Set ¶

func (*NullableKeyfactorApiPAMProviderTypeResponse) UnmarshalJSON ¶

func (v *NullableKeyfactorApiPAMProviderTypeResponse) UnmarshalJSON(src []byte) error

func (*NullableKeyfactorApiPAMProviderTypeResponse) Unset ¶

type NullableKeyfactorAuditingQueryingAuditLogEntry ¶

type NullableKeyfactorAuditingQueryingAuditLogEntry struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorAuditingQueryingAuditLogEntry) Get ¶

func (NullableKeyfactorAuditingQueryingAuditLogEntry) IsSet ¶

func (NullableKeyfactorAuditingQueryingAuditLogEntry) MarshalJSON ¶

func (*NullableKeyfactorAuditingQueryingAuditLogEntry) Set ¶

func (*NullableKeyfactorAuditingQueryingAuditLogEntry) UnmarshalJSON ¶

func (*NullableKeyfactorAuditingQueryingAuditLogEntry) Unset ¶

type NullableKeyfactorCommonSchedulingKeyfactorSchedule ¶

type NullableKeyfactorCommonSchedulingKeyfactorSchedule struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorCommonSchedulingKeyfactorSchedule) Get ¶

func (NullableKeyfactorCommonSchedulingKeyfactorSchedule) IsSet ¶

func (NullableKeyfactorCommonSchedulingKeyfactorSchedule) MarshalJSON ¶

func (*NullableKeyfactorCommonSchedulingKeyfactorSchedule) Set ¶

func (*NullableKeyfactorCommonSchedulingKeyfactorSchedule) UnmarshalJSON ¶

func (*NullableKeyfactorCommonSchedulingKeyfactorSchedule) Unset ¶

type NullableKeyfactorCommonSchedulingModelsIntervalModel ¶

type NullableKeyfactorCommonSchedulingModelsIntervalModel struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorCommonSchedulingModelsIntervalModel) Get ¶

func (NullableKeyfactorCommonSchedulingModelsIntervalModel) IsSet ¶

func (NullableKeyfactorCommonSchedulingModelsIntervalModel) MarshalJSON ¶

func (*NullableKeyfactorCommonSchedulingModelsIntervalModel) Set ¶

func (*NullableKeyfactorCommonSchedulingModelsIntervalModel) UnmarshalJSON ¶

func (*NullableKeyfactorCommonSchedulingModelsIntervalModel) Unset ¶

type NullableKeyfactorCommonSchedulingModelsMonthlyModel ¶

type NullableKeyfactorCommonSchedulingModelsMonthlyModel struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorCommonSchedulingModelsMonthlyModel) Get ¶

func (NullableKeyfactorCommonSchedulingModelsMonthlyModel) IsSet ¶

func (NullableKeyfactorCommonSchedulingModelsMonthlyModel) MarshalJSON ¶

func (*NullableKeyfactorCommonSchedulingModelsMonthlyModel) Set ¶

func (*NullableKeyfactorCommonSchedulingModelsMonthlyModel) UnmarshalJSON ¶

func (*NullableKeyfactorCommonSchedulingModelsMonthlyModel) Unset ¶

type NullableKeyfactorCommonSchedulingModelsTimeModel ¶

type NullableKeyfactorCommonSchedulingModelsTimeModel struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorCommonSchedulingModelsTimeModel) Get ¶

func (NullableKeyfactorCommonSchedulingModelsTimeModel) IsSet ¶

func (NullableKeyfactorCommonSchedulingModelsTimeModel) MarshalJSON ¶

func (*NullableKeyfactorCommonSchedulingModelsTimeModel) Set ¶

func (*NullableKeyfactorCommonSchedulingModelsTimeModel) UnmarshalJSON ¶

func (*NullableKeyfactorCommonSchedulingModelsTimeModel) Unset ¶

type NullableKeyfactorCommonSchedulingModelsWeeklyModel ¶

type NullableKeyfactorCommonSchedulingModelsWeeklyModel struct {
	// contains filtered or unexported fields
}

func (NullableKeyfactorCommonSchedulingModelsWeeklyModel) Get ¶

func (NullableKeyfactorCommonSchedulingModelsWeeklyModel) IsSet ¶

func (NullableKeyfactorCommonSchedulingModelsWeeklyModel) MarshalJSON ¶

func (*NullableKeyfactorCommonSchedulingModelsWeeklyModel) Set ¶

func (*NullableKeyfactorCommonSchedulingModelsWeeklyModel) UnmarshalJSON ¶

func (*NullableKeyfactorCommonSchedulingModelsWeeklyModel) Unset ¶

type NullableModelsAgentsAgentPool ¶

type NullableModelsAgentsAgentPool struct {
	// contains filtered or unexported fields
}

func (NullableModelsAgentsAgentPool) Get ¶

func (NullableModelsAgentsAgentPool) IsSet ¶

func (NullableModelsAgentsAgentPool) MarshalJSON ¶

func (v NullableModelsAgentsAgentPool) MarshalJSON() ([]byte, error)

func (*NullableModelsAgentsAgentPool) Set ¶

func (*NullableModelsAgentsAgentPool) UnmarshalJSON ¶

func (v *NullableModelsAgentsAgentPool) UnmarshalJSON(src []byte) error

func (*NullableModelsAgentsAgentPool) Unset ¶

func (v *NullableModelsAgentsAgentPool) Unset()

type NullableModelsAgentsAgentPoolAgent ¶

type NullableModelsAgentsAgentPoolAgent struct {
	// contains filtered or unexported fields
}

func (NullableModelsAgentsAgentPoolAgent) Get ¶

func (NullableModelsAgentsAgentPoolAgent) IsSet ¶

func (NullableModelsAgentsAgentPoolAgent) MarshalJSON ¶

func (v NullableModelsAgentsAgentPoolAgent) MarshalJSON() ([]byte, error)

func (*NullableModelsAgentsAgentPoolAgent) Set ¶

func (*NullableModelsAgentsAgentPoolAgent) UnmarshalJSON ¶

func (v *NullableModelsAgentsAgentPoolAgent) UnmarshalJSON(src []byte) error

func (*NullableModelsAgentsAgentPoolAgent) Unset ¶

type NullableModelsCRLRequestModel ¶

type NullableModelsCRLRequestModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsCRLRequestModel) Get ¶

func (NullableModelsCRLRequestModel) IsSet ¶

func (NullableModelsCRLRequestModel) MarshalJSON ¶

func (v NullableModelsCRLRequestModel) MarshalJSON() ([]byte, error)

func (*NullableModelsCRLRequestModel) Set ¶

func (*NullableModelsCRLRequestModel) UnmarshalJSON ¶

func (v *NullableModelsCRLRequestModel) UnmarshalJSON(src []byte) error

func (*NullableModelsCRLRequestModel) Unset ¶

func (v *NullableModelsCRLRequestModel) Unset()

type NullableModelsCSRContents ¶

type NullableModelsCSRContents struct {
	// contains filtered or unexported fields
}

func NewNullableModelsCSRContents ¶

func NewNullableModelsCSRContents(val *ModelsCSRContents) *NullableModelsCSRContents

func (NullableModelsCSRContents) Get ¶

func (NullableModelsCSRContents) IsSet ¶

func (v NullableModelsCSRContents) IsSet() bool

func (NullableModelsCSRContents) MarshalJSON ¶

func (v NullableModelsCSRContents) MarshalJSON() ([]byte, error)

func (*NullableModelsCSRContents) Set ¶

func (*NullableModelsCSRContents) UnmarshalJSON ¶

func (v *NullableModelsCSRContents) UnmarshalJSON(src []byte) error

func (*NullableModelsCSRContents) Unset ¶

func (v *NullableModelsCSRContents) Unset()

type NullableModelsCSRGenerationResponseModel ¶

type NullableModelsCSRGenerationResponseModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsCSRGenerationResponseModel) Get ¶

func (NullableModelsCSRGenerationResponseModel) IsSet ¶

func (NullableModelsCSRGenerationResponseModel) MarshalJSON ¶

func (*NullableModelsCSRGenerationResponseModel) Set ¶

func (*NullableModelsCSRGenerationResponseModel) UnmarshalJSON ¶

func (v *NullableModelsCSRGenerationResponseModel) UnmarshalJSON(src []byte) error

func (*NullableModelsCSRGenerationResponseModel) Unset ¶

type NullableModelsCertStoreLocationsCertificateLocationsGroup ¶

type NullableModelsCertStoreLocationsCertificateLocationsGroup struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertStoreLocationsCertificateLocationsGroup) Get ¶

func (NullableModelsCertStoreLocationsCertificateLocationsGroup) IsSet ¶

func (NullableModelsCertStoreLocationsCertificateLocationsGroup) MarshalJSON ¶

func (*NullableModelsCertStoreLocationsCertificateLocationsGroup) Set ¶

func (*NullableModelsCertStoreLocationsCertificateLocationsGroup) UnmarshalJSON ¶

func (*NullableModelsCertStoreLocationsCertificateLocationsGroup) Unset ¶

type NullableModelsCertStoreLocationsCertificateStoreLocationsDetail ¶

type NullableModelsCertStoreLocationsCertificateStoreLocationsDetail struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertStoreLocationsCertificateStoreLocationsDetail) Get ¶

func (NullableModelsCertStoreLocationsCertificateStoreLocationsDetail) IsSet ¶

func (NullableModelsCertStoreLocationsCertificateStoreLocationsDetail) MarshalJSON ¶

func (*NullableModelsCertStoreLocationsCertificateStoreLocationsDetail) Set ¶

func (*NullableModelsCertStoreLocationsCertificateStoreLocationsDetail) UnmarshalJSON ¶

func (*NullableModelsCertStoreLocationsCertificateStoreLocationsDetail) Unset ¶

type NullableModelsCertStoreNewPasswordRequest ¶

type NullableModelsCertStoreNewPasswordRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertStoreNewPasswordRequest) Get ¶

func (NullableModelsCertStoreNewPasswordRequest) IsSet ¶

func (NullableModelsCertStoreNewPasswordRequest) MarshalJSON ¶

func (*NullableModelsCertStoreNewPasswordRequest) Set ¶

func (*NullableModelsCertStoreNewPasswordRequest) UnmarshalJSON ¶

func (v *NullableModelsCertStoreNewPasswordRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsCertStoreNewPasswordRequest) Unset ¶

type NullableModelsCertStoreTypePasswordOptions ¶

type NullableModelsCertStoreTypePasswordOptions struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertStoreTypePasswordOptions) Get ¶

func (NullableModelsCertStoreTypePasswordOptions) IsSet ¶

func (NullableModelsCertStoreTypePasswordOptions) MarshalJSON ¶

func (*NullableModelsCertStoreTypePasswordOptions) Set ¶

func (*NullableModelsCertStoreTypePasswordOptions) UnmarshalJSON ¶

func (v *NullableModelsCertStoreTypePasswordOptions) UnmarshalJSON(src []byte) error

func (*NullableModelsCertStoreTypePasswordOptions) Unset ¶

type NullableModelsCertStoreTypeSupportedOperations ¶

type NullableModelsCertStoreTypeSupportedOperations struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertStoreTypeSupportedOperations) Get ¶

func (NullableModelsCertStoreTypeSupportedOperations) IsSet ¶

func (NullableModelsCertStoreTypeSupportedOperations) MarshalJSON ¶

func (*NullableModelsCertStoreTypeSupportedOperations) Set ¶

func (*NullableModelsCertStoreTypeSupportedOperations) UnmarshalJSON ¶

func (*NullableModelsCertStoreTypeSupportedOperations) Unset ¶

type NullableModelsCertStoresSchedule ¶

type NullableModelsCertStoresSchedule struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertStoresSchedule) Get ¶

func (NullableModelsCertStoresSchedule) IsSet ¶

func (NullableModelsCertStoresSchedule) MarshalJSON ¶

func (v NullableModelsCertStoresSchedule) MarshalJSON() ([]byte, error)

func (*NullableModelsCertStoresSchedule) Set ¶

func (*NullableModelsCertStoresSchedule) UnmarshalJSON ¶

func (v *NullableModelsCertStoresSchedule) UnmarshalJSON(src []byte) error

func (*NullableModelsCertStoresSchedule) Unset ¶

type NullableModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate ¶

type NullableModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) Get ¶

func (NullableModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) IsSet ¶

func (NullableModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) MarshalJSON ¶

func (*NullableModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) Set ¶

func (*NullableModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) UnmarshalJSON ¶

func (*NullableModelsCertificateAuthoritiesCertificateAuthorityAuthCertificate) Unset ¶

type NullableModelsCertificateAuthoritiesCertificateAuthorityRequest ¶

type NullableModelsCertificateAuthoritiesCertificateAuthorityRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateAuthoritiesCertificateAuthorityRequest) Get ¶

func (NullableModelsCertificateAuthoritiesCertificateAuthorityRequest) IsSet ¶

func (NullableModelsCertificateAuthoritiesCertificateAuthorityRequest) MarshalJSON ¶

func (*NullableModelsCertificateAuthoritiesCertificateAuthorityRequest) Set ¶

func (*NullableModelsCertificateAuthoritiesCertificateAuthorityRequest) UnmarshalJSON ¶

func (*NullableModelsCertificateAuthoritiesCertificateAuthorityRequest) Unset ¶

type NullableModelsCertificateAuthoritiesCertificateAuthorityResponse ¶

type NullableModelsCertificateAuthoritiesCertificateAuthorityResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateAuthoritiesCertificateAuthorityResponse) Get ¶

func (NullableModelsCertificateAuthoritiesCertificateAuthorityResponse) IsSet ¶

func (NullableModelsCertificateAuthoritiesCertificateAuthorityResponse) MarshalJSON ¶

func (*NullableModelsCertificateAuthoritiesCertificateAuthorityResponse) Set ¶

func (*NullableModelsCertificateAuthoritiesCertificateAuthorityResponse) UnmarshalJSON ¶

func (*NullableModelsCertificateAuthoritiesCertificateAuthorityResponse) Unset ¶

type NullableModelsCertificateDetails ¶

type NullableModelsCertificateDetails struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateDetails) Get ¶

func (NullableModelsCertificateDetails) IsSet ¶

func (NullableModelsCertificateDetails) MarshalJSON ¶

func (v NullableModelsCertificateDetails) MarshalJSON() ([]byte, error)

func (*NullableModelsCertificateDetails) Set ¶

func (*NullableModelsCertificateDetails) UnmarshalJSON ¶

func (v *NullableModelsCertificateDetails) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateDetails) Unset ¶

type NullableModelsCertificateDownloadRequest ¶

type NullableModelsCertificateDownloadRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateDownloadRequest) Get ¶

func (NullableModelsCertificateDownloadRequest) IsSet ¶

func (NullableModelsCertificateDownloadRequest) MarshalJSON ¶

func (*NullableModelsCertificateDownloadRequest) Set ¶

func (*NullableModelsCertificateDownloadRequest) UnmarshalJSON ¶

func (v *NullableModelsCertificateDownloadRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateDownloadRequest) Unset ¶

type NullableModelsCertificateDownloadResponse ¶

type NullableModelsCertificateDownloadResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateDownloadResponse) Get ¶

func (NullableModelsCertificateDownloadResponse) IsSet ¶

func (NullableModelsCertificateDownloadResponse) MarshalJSON ¶

func (*NullableModelsCertificateDownloadResponse) Set ¶

func (*NullableModelsCertificateDownloadResponse) UnmarshalJSON ¶

func (v *NullableModelsCertificateDownloadResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateDownloadResponse) Unset ¶

type NullableModelsCertificateImportRequestModel ¶

type NullableModelsCertificateImportRequestModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateImportRequestModel) Get ¶

func (NullableModelsCertificateImportRequestModel) IsSet ¶

func (NullableModelsCertificateImportRequestModel) MarshalJSON ¶

func (*NullableModelsCertificateImportRequestModel) Set ¶

func (*NullableModelsCertificateImportRequestModel) UnmarshalJSON ¶

func (v *NullableModelsCertificateImportRequestModel) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateImportRequestModel) Unset ¶

type NullableModelsCertificateImportResponseModel ¶

type NullableModelsCertificateImportResponseModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateImportResponseModel) Get ¶

func (NullableModelsCertificateImportResponseModel) IsSet ¶

func (NullableModelsCertificateImportResponseModel) MarshalJSON ¶

func (*NullableModelsCertificateImportResponseModel) Set ¶

func (*NullableModelsCertificateImportResponseModel) UnmarshalJSON ¶

func (*NullableModelsCertificateImportResponseModel) Unset ¶

type NullableModelsCertificateLocationSpecifier ¶

type NullableModelsCertificateLocationSpecifier struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateLocationSpecifier) Get ¶

func (NullableModelsCertificateLocationSpecifier) IsSet ¶

func (NullableModelsCertificateLocationSpecifier) MarshalJSON ¶

func (*NullableModelsCertificateLocationSpecifier) Set ¶

func (*NullableModelsCertificateLocationSpecifier) UnmarshalJSON ¶

func (v *NullableModelsCertificateLocationSpecifier) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateLocationSpecifier) Unset ¶

type NullableModelsCertificateQuery ¶

type NullableModelsCertificateQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateQuery) Get ¶

func (NullableModelsCertificateQuery) IsSet ¶

func (NullableModelsCertificateQuery) MarshalJSON ¶

func (v NullableModelsCertificateQuery) MarshalJSON() ([]byte, error)

func (*NullableModelsCertificateQuery) Set ¶

func (*NullableModelsCertificateQuery) UnmarshalJSON ¶

func (v *NullableModelsCertificateQuery) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateQuery) Unset ¶

func (v *NullableModelsCertificateQuery) Unset()

type NullableModelsCertificateRecoveryRequest ¶

type NullableModelsCertificateRecoveryRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateRecoveryRequest) Get ¶

func (NullableModelsCertificateRecoveryRequest) IsSet ¶

func (NullableModelsCertificateRecoveryRequest) MarshalJSON ¶

func (*NullableModelsCertificateRecoveryRequest) Set ¶

func (*NullableModelsCertificateRecoveryRequest) UnmarshalJSON ¶

func (v *NullableModelsCertificateRecoveryRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateRecoveryRequest) Unset ¶

type NullableModelsCertificateRetrievalResponse ¶

type NullableModelsCertificateRetrievalResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateRetrievalResponse) Get ¶

func (NullableModelsCertificateRetrievalResponse) IsSet ¶

func (NullableModelsCertificateRetrievalResponse) MarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponse) Set ¶

func (*NullableModelsCertificateRetrievalResponse) UnmarshalJSON ¶

func (v *NullableModelsCertificateRetrievalResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateRetrievalResponse) Unset ¶

type NullableModelsCertificateRetrievalResponseCRLDistributionPointModel ¶

type NullableModelsCertificateRetrievalResponseCRLDistributionPointModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateRetrievalResponseCRLDistributionPointModel) Get ¶

func (NullableModelsCertificateRetrievalResponseCRLDistributionPointModel) IsSet ¶

func (NullableModelsCertificateRetrievalResponseCRLDistributionPointModel) MarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseCRLDistributionPointModel) Set ¶

func (*NullableModelsCertificateRetrievalResponseCRLDistributionPointModel) UnmarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseCRLDistributionPointModel) Unset ¶

type NullableModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel ¶

type NullableModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) Get ¶

func (NullableModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) IsSet ¶

func (NullableModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) MarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) Set ¶

func (*NullableModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) UnmarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseCertificateStoreInventoryItemModel) Unset ¶

type NullableModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel ¶

type NullableModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) Get ¶

func (NullableModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) IsSet ¶

func (NullableModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) MarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) Set ¶

func (*NullableModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) UnmarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseCertificateStoreLocationDetailModel) Unset ¶

type NullableModelsCertificateRetrievalResponseDetailedKeyUsageModel ¶

type NullableModelsCertificateRetrievalResponseDetailedKeyUsageModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateRetrievalResponseDetailedKeyUsageModel) Get ¶

func (NullableModelsCertificateRetrievalResponseDetailedKeyUsageModel) IsSet ¶

func (NullableModelsCertificateRetrievalResponseDetailedKeyUsageModel) MarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseDetailedKeyUsageModel) Set ¶

func (*NullableModelsCertificateRetrievalResponseDetailedKeyUsageModel) UnmarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseDetailedKeyUsageModel) Unset ¶

type NullableModelsCertificateRetrievalResponseExtendedKeyUsageModel ¶

type NullableModelsCertificateRetrievalResponseExtendedKeyUsageModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateRetrievalResponseExtendedKeyUsageModel) Get ¶

func (NullableModelsCertificateRetrievalResponseExtendedKeyUsageModel) IsSet ¶

func (NullableModelsCertificateRetrievalResponseExtendedKeyUsageModel) MarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseExtendedKeyUsageModel) Set ¶

func (*NullableModelsCertificateRetrievalResponseExtendedKeyUsageModel) UnmarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseExtendedKeyUsageModel) Unset ¶

type NullableModelsCertificateRetrievalResponseLocationCountModel ¶

type NullableModelsCertificateRetrievalResponseLocationCountModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateRetrievalResponseLocationCountModel) Get ¶

func (NullableModelsCertificateRetrievalResponseLocationCountModel) IsSet ¶

func (NullableModelsCertificateRetrievalResponseLocationCountModel) MarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseLocationCountModel) Set ¶

func (*NullableModelsCertificateRetrievalResponseLocationCountModel) UnmarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseLocationCountModel) Unset ¶

type NullableModelsCertificateRetrievalResponseSubjectAlternativeNameModel ¶

type NullableModelsCertificateRetrievalResponseSubjectAlternativeNameModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateRetrievalResponseSubjectAlternativeNameModel) Get ¶

func (NullableModelsCertificateRetrievalResponseSubjectAlternativeNameModel) IsSet ¶

func (NullableModelsCertificateRetrievalResponseSubjectAlternativeNameModel) MarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseSubjectAlternativeNameModel) Set ¶

func (*NullableModelsCertificateRetrievalResponseSubjectAlternativeNameModel) UnmarshalJSON ¶

func (*NullableModelsCertificateRetrievalResponseSubjectAlternativeNameModel) Unset ¶

type NullableModelsCertificateStore ¶

type NullableModelsCertificateStore struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStore) Get ¶

func (NullableModelsCertificateStore) IsSet ¶

func (NullableModelsCertificateStore) MarshalJSON ¶

func (v NullableModelsCertificateStore) MarshalJSON() ([]byte, error)

func (*NullableModelsCertificateStore) Set ¶

func (*NullableModelsCertificateStore) UnmarshalJSON ¶

func (v *NullableModelsCertificateStore) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateStore) Unset ¶

func (v *NullableModelsCertificateStore) Unset()

type NullableModelsCertificateStoreContainerListResponse ¶

type NullableModelsCertificateStoreContainerListResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStoreContainerListResponse) Get ¶

func (NullableModelsCertificateStoreContainerListResponse) IsSet ¶

func (NullableModelsCertificateStoreContainerListResponse) MarshalJSON ¶

func (*NullableModelsCertificateStoreContainerListResponse) Set ¶

func (*NullableModelsCertificateStoreContainerListResponse) UnmarshalJSON ¶

func (*NullableModelsCertificateStoreContainerListResponse) Unset ¶

type NullableModelsCertificateStoreCreateServerRequest ¶

type NullableModelsCertificateStoreCreateServerRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStoreCreateServerRequest) Get ¶

func (NullableModelsCertificateStoreCreateServerRequest) IsSet ¶

func (NullableModelsCertificateStoreCreateServerRequest) MarshalJSON ¶

func (*NullableModelsCertificateStoreCreateServerRequest) Set ¶

func (*NullableModelsCertificateStoreCreateServerRequest) UnmarshalJSON ¶

func (*NullableModelsCertificateStoreCreateServerRequest) Unset ¶

type NullableModelsCertificateStoreEntry ¶

type NullableModelsCertificateStoreEntry struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStoreEntry) Get ¶

func (NullableModelsCertificateStoreEntry) IsSet ¶

func (NullableModelsCertificateStoreEntry) MarshalJSON ¶

func (v NullableModelsCertificateStoreEntry) MarshalJSON() ([]byte, error)

func (*NullableModelsCertificateStoreEntry) Set ¶

func (*NullableModelsCertificateStoreEntry) UnmarshalJSON ¶

func (v *NullableModelsCertificateStoreEntry) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateStoreEntry) Unset ¶

type NullableModelsCertificateStoreInventory ¶

type NullableModelsCertificateStoreInventory struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStoreInventory) Get ¶

func (NullableModelsCertificateStoreInventory) IsSet ¶

func (NullableModelsCertificateStoreInventory) MarshalJSON ¶

func (v NullableModelsCertificateStoreInventory) MarshalJSON() ([]byte, error)

func (*NullableModelsCertificateStoreInventory) Set ¶

func (*NullableModelsCertificateStoreInventory) UnmarshalJSON ¶

func (v *NullableModelsCertificateStoreInventory) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateStoreInventory) Unset ¶

type NullableModelsCertificateStoreInventoryCertificates ¶

type NullableModelsCertificateStoreInventoryCertificates struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStoreInventoryCertificates) Get ¶

func (NullableModelsCertificateStoreInventoryCertificates) IsSet ¶

func (NullableModelsCertificateStoreInventoryCertificates) MarshalJSON ¶

func (*NullableModelsCertificateStoreInventoryCertificates) Set ¶

func (*NullableModelsCertificateStoreInventoryCertificates) UnmarshalJSON ¶

func (*NullableModelsCertificateStoreInventoryCertificates) Unset ¶

type NullableModelsCertificateStoreServerResponse ¶

type NullableModelsCertificateStoreServerResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStoreServerResponse) Get ¶

func (NullableModelsCertificateStoreServerResponse) IsSet ¶

func (NullableModelsCertificateStoreServerResponse) MarshalJSON ¶

func (*NullableModelsCertificateStoreServerResponse) Set ¶

func (*NullableModelsCertificateStoreServerResponse) UnmarshalJSON ¶

func (*NullableModelsCertificateStoreServerResponse) Unset ¶

type NullableModelsCertificateStoreTypeProperty ¶

type NullableModelsCertificateStoreTypeProperty struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStoreTypeProperty) Get ¶

func (NullableModelsCertificateStoreTypeProperty) IsSet ¶

func (NullableModelsCertificateStoreTypeProperty) MarshalJSON ¶

func (*NullableModelsCertificateStoreTypeProperty) Set ¶

func (*NullableModelsCertificateStoreTypeProperty) UnmarshalJSON ¶

func (v *NullableModelsCertificateStoreTypeProperty) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateStoreTypeProperty) Unset ¶

type NullableModelsCertificateStoreTypesCertificateStoreTypeEntryParameter ¶

type NullableModelsCertificateStoreTypesCertificateStoreTypeEntryParameter struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) Get ¶

func (NullableModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) IsSet ¶

func (NullableModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) MarshalJSON ¶

func (*NullableModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) Set ¶

func (*NullableModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) UnmarshalJSON ¶

func (*NullableModelsCertificateStoreTypesCertificateStoreTypeEntryParameter) Unset ¶

type NullableModelsCertificateStoreUpdateServerRequest ¶

type NullableModelsCertificateStoreUpdateServerRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStoreUpdateServerRequest) Get ¶

func (NullableModelsCertificateStoreUpdateServerRequest) IsSet ¶

func (NullableModelsCertificateStoreUpdateServerRequest) MarshalJSON ¶

func (*NullableModelsCertificateStoreUpdateServerRequest) Set ¶

func (*NullableModelsCertificateStoreUpdateServerRequest) UnmarshalJSON ¶

func (*NullableModelsCertificateStoreUpdateServerRequest) Unset ¶

type NullableModelsCertificateStoresCertificateStoreCreateRequest ¶

type NullableModelsCertificateStoresCertificateStoreCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStoresCertificateStoreCreateRequest) Get ¶

func (NullableModelsCertificateStoresCertificateStoreCreateRequest) IsSet ¶

func (NullableModelsCertificateStoresCertificateStoreCreateRequest) MarshalJSON ¶

func (*NullableModelsCertificateStoresCertificateStoreCreateRequest) Set ¶

func (*NullableModelsCertificateStoresCertificateStoreCreateRequest) UnmarshalJSON ¶

func (*NullableModelsCertificateStoresCertificateStoreCreateRequest) Unset ¶

type NullableModelsCertificateStoresCertificateStoreUpdateRequest ¶

type NullableModelsCertificateStoresCertificateStoreUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateStoresCertificateStoreUpdateRequest) Get ¶

func (NullableModelsCertificateStoresCertificateStoreUpdateRequest) IsSet ¶

func (NullableModelsCertificateStoresCertificateStoreUpdateRequest) MarshalJSON ¶

func (*NullableModelsCertificateStoresCertificateStoreUpdateRequest) Set ¶

func (*NullableModelsCertificateStoresCertificateStoreUpdateRequest) UnmarshalJSON ¶

func (*NullableModelsCertificateStoresCertificateStoreUpdateRequest) Unset ¶

type NullableModelsCertificateValidationResponse ¶

type NullableModelsCertificateValidationResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsCertificateValidationResponse) Get ¶

func (NullableModelsCertificateValidationResponse) IsSet ¶

func (NullableModelsCertificateValidationResponse) MarshalJSON ¶

func (*NullableModelsCertificateValidationResponse) Set ¶

func (*NullableModelsCertificateValidationResponse) UnmarshalJSON ¶

func (v *NullableModelsCertificateValidationResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsCertificateValidationResponse) Unset ¶

type NullableModelsCollectionRolePermissions ¶

type NullableModelsCollectionRolePermissions struct {
	// contains filtered or unexported fields
}

func (NullableModelsCollectionRolePermissions) Get ¶

func (NullableModelsCollectionRolePermissions) IsSet ¶

func (NullableModelsCollectionRolePermissions) MarshalJSON ¶

func (v NullableModelsCollectionRolePermissions) MarshalJSON() ([]byte, error)

func (*NullableModelsCollectionRolePermissions) Set ¶

func (*NullableModelsCollectionRolePermissions) UnmarshalJSON ¶

func (v *NullableModelsCollectionRolePermissions) UnmarshalJSON(src []byte) error

func (*NullableModelsCollectionRolePermissions) Unset ¶

type NullableModelsContainerAssignment ¶

type NullableModelsContainerAssignment struct {
	// contains filtered or unexported fields
}

func (NullableModelsContainerAssignment) Get ¶

func (NullableModelsContainerAssignment) IsSet ¶

func (NullableModelsContainerAssignment) MarshalJSON ¶

func (v NullableModelsContainerAssignment) MarshalJSON() ([]byte, error)

func (*NullableModelsContainerAssignment) Set ¶

func (*NullableModelsContainerAssignment) UnmarshalJSON ¶

func (v *NullableModelsContainerAssignment) UnmarshalJSON(src []byte) error

func (*NullableModelsContainerAssignment) Unset ¶

type NullableModelsCustomReport ¶

type NullableModelsCustomReport struct {
	// contains filtered or unexported fields
}

func NewNullableModelsCustomReport ¶

func NewNullableModelsCustomReport(val *ModelsCustomReport) *NullableModelsCustomReport

func (NullableModelsCustomReport) Get ¶

func (NullableModelsCustomReport) IsSet ¶

func (v NullableModelsCustomReport) IsSet() bool

func (NullableModelsCustomReport) MarshalJSON ¶

func (v NullableModelsCustomReport) MarshalJSON() ([]byte, error)

func (*NullableModelsCustomReport) Set ¶

func (*NullableModelsCustomReport) UnmarshalJSON ¶

func (v *NullableModelsCustomReport) UnmarshalJSON(src []byte) error

func (*NullableModelsCustomReport) Unset ¶

func (v *NullableModelsCustomReport) Unset()

type NullableModelsCustomReportCreationRequest ¶

type NullableModelsCustomReportCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsCustomReportCreationRequest) Get ¶

func (NullableModelsCustomReportCreationRequest) IsSet ¶

func (NullableModelsCustomReportCreationRequest) MarshalJSON ¶

func (*NullableModelsCustomReportCreationRequest) Set ¶

func (*NullableModelsCustomReportCreationRequest) UnmarshalJSON ¶

func (v *NullableModelsCustomReportCreationRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsCustomReportCreationRequest) Unset ¶

type NullableModelsCustomReportUpdateRequest ¶

type NullableModelsCustomReportUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsCustomReportUpdateRequest) Get ¶

func (NullableModelsCustomReportUpdateRequest) IsSet ¶

func (NullableModelsCustomReportUpdateRequest) MarshalJSON ¶

func (v NullableModelsCustomReportUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsCustomReportUpdateRequest) Set ¶

func (*NullableModelsCustomReportUpdateRequest) UnmarshalJSON ¶

func (v *NullableModelsCustomReportUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsCustomReportUpdateRequest) Unset ¶

type NullableModelsDiscoveryJobRequest ¶

type NullableModelsDiscoveryJobRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsDiscoveryJobRequest) Get ¶

func (NullableModelsDiscoveryJobRequest) IsSet ¶

func (NullableModelsDiscoveryJobRequest) MarshalJSON ¶

func (v NullableModelsDiscoveryJobRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsDiscoveryJobRequest) Set ¶

func (*NullableModelsDiscoveryJobRequest) UnmarshalJSON ¶

func (v *NullableModelsDiscoveryJobRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsDiscoveryJobRequest) Unset ¶

type NullableModelsEnrollmentAvailableRenewal ¶

type NullableModelsEnrollmentAvailableRenewal struct {
	// contains filtered or unexported fields
}

func (NullableModelsEnrollmentAvailableRenewal) Get ¶

func (NullableModelsEnrollmentAvailableRenewal) IsSet ¶

func (NullableModelsEnrollmentAvailableRenewal) MarshalJSON ¶

func (*NullableModelsEnrollmentAvailableRenewal) Set ¶

func (*NullableModelsEnrollmentAvailableRenewal) UnmarshalJSON ¶

func (v *NullableModelsEnrollmentAvailableRenewal) UnmarshalJSON(src []byte) error

func (*NullableModelsEnrollmentAvailableRenewal) Unset ¶

type NullableModelsEnrollmentCSREnrollmentRequest ¶

type NullableModelsEnrollmentCSREnrollmentRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsEnrollmentCSREnrollmentRequest) Get ¶

func (NullableModelsEnrollmentCSREnrollmentRequest) IsSet ¶

func (NullableModelsEnrollmentCSREnrollmentRequest) MarshalJSON ¶

func (*NullableModelsEnrollmentCSREnrollmentRequest) Set ¶

func (*NullableModelsEnrollmentCSREnrollmentRequest) UnmarshalJSON ¶

func (*NullableModelsEnrollmentCSREnrollmentRequest) Unset ¶

type NullableModelsEnrollmentCSREnrollmentResponse ¶

type NullableModelsEnrollmentCSREnrollmentResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsEnrollmentCSREnrollmentResponse) Get ¶

func (NullableModelsEnrollmentCSREnrollmentResponse) IsSet ¶

func (NullableModelsEnrollmentCSREnrollmentResponse) MarshalJSON ¶

func (*NullableModelsEnrollmentCSREnrollmentResponse) Set ¶

func (*NullableModelsEnrollmentCSREnrollmentResponse) UnmarshalJSON ¶

func (*NullableModelsEnrollmentCSREnrollmentResponse) Unset ¶

type NullableModelsEnrollmentCSRGenerationRequest ¶

type NullableModelsEnrollmentCSRGenerationRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsEnrollmentCSRGenerationRequest) Get ¶

func (NullableModelsEnrollmentCSRGenerationRequest) IsSet ¶

func (NullableModelsEnrollmentCSRGenerationRequest) MarshalJSON ¶

func (*NullableModelsEnrollmentCSRGenerationRequest) Set ¶

func (*NullableModelsEnrollmentCSRGenerationRequest) UnmarshalJSON ¶

func (*NullableModelsEnrollmentCSRGenerationRequest) Unset ¶

type NullableModelsEnrollmentExistingEnrollmentManagementRequest ¶

type NullableModelsEnrollmentExistingEnrollmentManagementRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsEnrollmentExistingEnrollmentManagementRequest) Get ¶

func (NullableModelsEnrollmentExistingEnrollmentManagementRequest) IsSet ¶

func (NullableModelsEnrollmentExistingEnrollmentManagementRequest) MarshalJSON ¶

func (*NullableModelsEnrollmentExistingEnrollmentManagementRequest) Set ¶

func (*NullableModelsEnrollmentExistingEnrollmentManagementRequest) UnmarshalJSON ¶

func (*NullableModelsEnrollmentExistingEnrollmentManagementRequest) Unset ¶

type NullableModelsEnrollmentManagementStoreType ¶

type NullableModelsEnrollmentManagementStoreType struct {
	// contains filtered or unexported fields
}

func (NullableModelsEnrollmentManagementStoreType) Get ¶

func (NullableModelsEnrollmentManagementStoreType) IsSet ¶

func (NullableModelsEnrollmentManagementStoreType) MarshalJSON ¶

func (*NullableModelsEnrollmentManagementStoreType) Set ¶

func (*NullableModelsEnrollmentManagementStoreType) UnmarshalJSON ¶

func (v *NullableModelsEnrollmentManagementStoreType) UnmarshalJSON(src []byte) error

func (*NullableModelsEnrollmentManagementStoreType) Unset ¶

type NullableModelsEnrollmentPFXEnrollmentRequest ¶

type NullableModelsEnrollmentPFXEnrollmentRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsEnrollmentPFXEnrollmentRequest) Get ¶

func (NullableModelsEnrollmentPFXEnrollmentRequest) IsSet ¶

func (NullableModelsEnrollmentPFXEnrollmentRequest) MarshalJSON ¶

func (*NullableModelsEnrollmentPFXEnrollmentRequest) Set ¶

func (*NullableModelsEnrollmentPFXEnrollmentRequest) UnmarshalJSON ¶

func (*NullableModelsEnrollmentPFXEnrollmentRequest) Unset ¶

type NullableModelsEnrollmentPFXEnrollmentResponse ¶

type NullableModelsEnrollmentPFXEnrollmentResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsEnrollmentPFXEnrollmentResponse) Get ¶

func (NullableModelsEnrollmentPFXEnrollmentResponse) IsSet ¶

func (NullableModelsEnrollmentPFXEnrollmentResponse) MarshalJSON ¶

func (*NullableModelsEnrollmentPFXEnrollmentResponse) Set ¶

func (*NullableModelsEnrollmentPFXEnrollmentResponse) UnmarshalJSON ¶

func (*NullableModelsEnrollmentPFXEnrollmentResponse) Unset ¶

type NullableModelsEnrollmentRenewalRequest ¶

type NullableModelsEnrollmentRenewalRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsEnrollmentRenewalRequest) Get ¶

func (NullableModelsEnrollmentRenewalRequest) IsSet ¶

func (NullableModelsEnrollmentRenewalRequest) MarshalJSON ¶

func (v NullableModelsEnrollmentRenewalRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsEnrollmentRenewalRequest) Set ¶

func (*NullableModelsEnrollmentRenewalRequest) UnmarshalJSON ¶

func (v *NullableModelsEnrollmentRenewalRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsEnrollmentRenewalRequest) Unset ¶

type NullableModelsEnrollmentRenewalResponse ¶

type NullableModelsEnrollmentRenewalResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsEnrollmentRenewalResponse) Get ¶

func (NullableModelsEnrollmentRenewalResponse) IsSet ¶

func (NullableModelsEnrollmentRenewalResponse) MarshalJSON ¶

func (v NullableModelsEnrollmentRenewalResponse) MarshalJSON() ([]byte, error)

func (*NullableModelsEnrollmentRenewalResponse) Set ¶

func (*NullableModelsEnrollmentRenewalResponse) UnmarshalJSON ¶

func (v *NullableModelsEnrollmentRenewalResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsEnrollmentRenewalResponse) Unset ¶

type NullableModelsExtendedKeyUsage ¶

type NullableModelsExtendedKeyUsage struct {
	// contains filtered or unexported fields
}

func (NullableModelsExtendedKeyUsage) Get ¶

func (NullableModelsExtendedKeyUsage) IsSet ¶

func (NullableModelsExtendedKeyUsage) MarshalJSON ¶

func (v NullableModelsExtendedKeyUsage) MarshalJSON() ([]byte, error)

func (*NullableModelsExtendedKeyUsage) Set ¶

func (*NullableModelsExtendedKeyUsage) UnmarshalJSON ¶

func (v *NullableModelsExtendedKeyUsage) UnmarshalJSON(src []byte) error

func (*NullableModelsExtendedKeyUsage) Unset ¶

func (v *NullableModelsExtendedKeyUsage) Unset()

type NullableModelsInvalidKeystore ¶

type NullableModelsInvalidKeystore struct {
	// contains filtered or unexported fields
}

func (NullableModelsInvalidKeystore) Get ¶

func (NullableModelsInvalidKeystore) IsSet ¶

func (NullableModelsInvalidKeystore) MarshalJSON ¶

func (v NullableModelsInvalidKeystore) MarshalJSON() ([]byte, error)

func (*NullableModelsInvalidKeystore) Set ¶

func (*NullableModelsInvalidKeystore) UnmarshalJSON ¶

func (v *NullableModelsInvalidKeystore) UnmarshalJSON(src []byte) error

func (*NullableModelsInvalidKeystore) Unset ¶

func (v *NullableModelsInvalidKeystore) Unset()

type NullableModelsKeyfactorAPISecret ¶

type NullableModelsKeyfactorAPISecret struct {
	// contains filtered or unexported fields
}

func (NullableModelsKeyfactorAPISecret) Get ¶

func (NullableModelsKeyfactorAPISecret) IsSet ¶

func (NullableModelsKeyfactorAPISecret) MarshalJSON ¶

func (v NullableModelsKeyfactorAPISecret) MarshalJSON() ([]byte, error)

func (*NullableModelsKeyfactorAPISecret) Set ¶

func (*NullableModelsKeyfactorAPISecret) UnmarshalJSON ¶

func (v *NullableModelsKeyfactorAPISecret) UnmarshalJSON(src []byte) error

func (*NullableModelsKeyfactorAPISecret) Unset ¶

type NullableModelsMetadataAllUpdateRequest ¶

type NullableModelsMetadataAllUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsMetadataAllUpdateRequest) Get ¶

func (NullableModelsMetadataAllUpdateRequest) IsSet ¶

func (NullableModelsMetadataAllUpdateRequest) MarshalJSON ¶

func (v NullableModelsMetadataAllUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsMetadataAllUpdateRequest) Set ¶

func (*NullableModelsMetadataAllUpdateRequest) UnmarshalJSON ¶

func (v *NullableModelsMetadataAllUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsMetadataAllUpdateRequest) Unset ¶

type NullableModelsMetadataFieldTypeModel ¶

type NullableModelsMetadataFieldTypeModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsMetadataFieldTypeModel) Get ¶

func (NullableModelsMetadataFieldTypeModel) IsSet ¶

func (NullableModelsMetadataFieldTypeModel) MarshalJSON ¶

func (v NullableModelsMetadataFieldTypeModel) MarshalJSON() ([]byte, error)

func (*NullableModelsMetadataFieldTypeModel) Set ¶

func (*NullableModelsMetadataFieldTypeModel) UnmarshalJSON ¶

func (v *NullableModelsMetadataFieldTypeModel) UnmarshalJSON(src []byte) error

func (*NullableModelsMetadataFieldTypeModel) Unset ¶

type NullableModelsMetadataSingleUpdateRequest ¶

type NullableModelsMetadataSingleUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsMetadataSingleUpdateRequest) Get ¶

func (NullableModelsMetadataSingleUpdateRequest) IsSet ¶

func (NullableModelsMetadataSingleUpdateRequest) MarshalJSON ¶

func (*NullableModelsMetadataSingleUpdateRequest) Set ¶

func (*NullableModelsMetadataSingleUpdateRequest) UnmarshalJSON ¶

func (v *NullableModelsMetadataSingleUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsMetadataSingleUpdateRequest) Unset ¶

type NullableModelsMetadataUpdateRequest ¶

type NullableModelsMetadataUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsMetadataUpdateRequest) Get ¶

func (NullableModelsMetadataUpdateRequest) IsSet ¶

func (NullableModelsMetadataUpdateRequest) MarshalJSON ¶

func (v NullableModelsMetadataUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsMetadataUpdateRequest) Set ¶

func (*NullableModelsMetadataUpdateRequest) UnmarshalJSON ¶

func (v *NullableModelsMetadataUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsMetadataUpdateRequest) Unset ¶

type NullableModelsMonitoringRevocationMonitoringAlertResponse ¶

type NullableModelsMonitoringRevocationMonitoringAlertResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsMonitoringRevocationMonitoringAlertResponse) Get ¶

func (NullableModelsMonitoringRevocationMonitoringAlertResponse) IsSet ¶

func (NullableModelsMonitoringRevocationMonitoringAlertResponse) MarshalJSON ¶

func (*NullableModelsMonitoringRevocationMonitoringAlertResponse) Set ¶

func (*NullableModelsMonitoringRevocationMonitoringAlertResponse) UnmarshalJSON ¶

func (*NullableModelsMonitoringRevocationMonitoringAlertResponse) Unset ¶

type NullableModelsOrchestratorJobsBulkOrchestratorJobPair ¶

type NullableModelsOrchestratorJobsBulkOrchestratorJobPair struct {
	// contains filtered or unexported fields
}

func (NullableModelsOrchestratorJobsBulkOrchestratorJobPair) Get ¶

func (NullableModelsOrchestratorJobsBulkOrchestratorJobPair) IsSet ¶

func (NullableModelsOrchestratorJobsBulkOrchestratorJobPair) MarshalJSON ¶

func (*NullableModelsOrchestratorJobsBulkOrchestratorJobPair) Set ¶

func (*NullableModelsOrchestratorJobsBulkOrchestratorJobPair) UnmarshalJSON ¶

func (*NullableModelsOrchestratorJobsBulkOrchestratorJobPair) Unset ¶

type NullableModelsOrchestratorJobsJob ¶

type NullableModelsOrchestratorJobsJob struct {
	// contains filtered or unexported fields
}

func (NullableModelsOrchestratorJobsJob) Get ¶

func (NullableModelsOrchestratorJobsJob) IsSet ¶

func (NullableModelsOrchestratorJobsJob) MarshalJSON ¶

func (v NullableModelsOrchestratorJobsJob) MarshalJSON() ([]byte, error)

func (*NullableModelsOrchestratorJobsJob) Set ¶

func (*NullableModelsOrchestratorJobsJob) UnmarshalJSON ¶

func (v *NullableModelsOrchestratorJobsJob) UnmarshalJSON(src []byte) error

func (*NullableModelsOrchestratorJobsJob) Unset ¶

type NullableModelsOrchestratorJobsJobTypeCreateRequest ¶

type NullableModelsOrchestratorJobsJobTypeCreateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsOrchestratorJobsJobTypeCreateRequest) Get ¶

func (NullableModelsOrchestratorJobsJobTypeCreateRequest) IsSet ¶

func (NullableModelsOrchestratorJobsJobTypeCreateRequest) MarshalJSON ¶

func (*NullableModelsOrchestratorJobsJobTypeCreateRequest) Set ¶

func (*NullableModelsOrchestratorJobsJobTypeCreateRequest) UnmarshalJSON ¶

func (*NullableModelsOrchestratorJobsJobTypeCreateRequest) Unset ¶

type NullableModelsOrchestratorJobsJobTypeFieldRequest ¶

type NullableModelsOrchestratorJobsJobTypeFieldRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsOrchestratorJobsJobTypeFieldRequest) Get ¶

func (NullableModelsOrchestratorJobsJobTypeFieldRequest) IsSet ¶

func (NullableModelsOrchestratorJobsJobTypeFieldRequest) MarshalJSON ¶

func (*NullableModelsOrchestratorJobsJobTypeFieldRequest) Set ¶

func (*NullableModelsOrchestratorJobsJobTypeFieldRequest) UnmarshalJSON ¶

func (*NullableModelsOrchestratorJobsJobTypeFieldRequest) Unset ¶

type NullableModelsOrchestratorJobsJobTypeUpdateRequest ¶

type NullableModelsOrchestratorJobsJobTypeUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsOrchestratorJobsJobTypeUpdateRequest) Get ¶

func (NullableModelsOrchestratorJobsJobTypeUpdateRequest) IsSet ¶

func (NullableModelsOrchestratorJobsJobTypeUpdateRequest) MarshalJSON ¶

func (*NullableModelsOrchestratorJobsJobTypeUpdateRequest) Set ¶

func (*NullableModelsOrchestratorJobsJobTypeUpdateRequest) UnmarshalJSON ¶

func (*NullableModelsOrchestratorJobsJobTypeUpdateRequest) Unset ¶

type NullableModelsOrchestratorJobsScheduleBulkJobRequest ¶

type NullableModelsOrchestratorJobsScheduleBulkJobRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsOrchestratorJobsScheduleBulkJobRequest) Get ¶

func (NullableModelsOrchestratorJobsScheduleBulkJobRequest) IsSet ¶

func (NullableModelsOrchestratorJobsScheduleBulkJobRequest) MarshalJSON ¶

func (*NullableModelsOrchestratorJobsScheduleBulkJobRequest) Set ¶

func (*NullableModelsOrchestratorJobsScheduleBulkJobRequest) UnmarshalJSON ¶

func (*NullableModelsOrchestratorJobsScheduleBulkJobRequest) Unset ¶

type NullableModelsOrchestratorJobsScheduleJobRequest ¶

type NullableModelsOrchestratorJobsScheduleJobRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsOrchestratorJobsScheduleJobRequest) Get ¶

func (NullableModelsOrchestratorJobsScheduleJobRequest) IsSet ¶

func (NullableModelsOrchestratorJobsScheduleJobRequest) MarshalJSON ¶

func (*NullableModelsOrchestratorJobsScheduleJobRequest) Set ¶

func (*NullableModelsOrchestratorJobsScheduleJobRequest) UnmarshalJSON ¶

func (*NullableModelsOrchestratorJobsScheduleJobRequest) Unset ¶

type NullableModelsPKICertificateOperation ¶

type NullableModelsPKICertificateOperation struct {
	// contains filtered or unexported fields
}

func (NullableModelsPKICertificateOperation) Get ¶

func (NullableModelsPKICertificateOperation) IsSet ¶

func (NullableModelsPKICertificateOperation) MarshalJSON ¶

func (v NullableModelsPKICertificateOperation) MarshalJSON() ([]byte, error)

func (*NullableModelsPKICertificateOperation) Set ¶

func (*NullableModelsPKICertificateOperation) UnmarshalJSON ¶

func (v *NullableModelsPKICertificateOperation) UnmarshalJSON(src []byte) error

func (*NullableModelsPKICertificateOperation) Unset ¶

type NullableModelsPagedQuery ¶

type NullableModelsPagedQuery struct {
	// contains filtered or unexported fields
}

func NewNullableModelsPagedQuery ¶

func NewNullableModelsPagedQuery(val *ModelsPagedQuery) *NullableModelsPagedQuery

func (NullableModelsPagedQuery) Get ¶

func (NullableModelsPagedQuery) IsSet ¶

func (v NullableModelsPagedQuery) IsSet() bool

func (NullableModelsPagedQuery) MarshalJSON ¶

func (v NullableModelsPagedQuery) MarshalJSON() ([]byte, error)

func (*NullableModelsPagedQuery) Set ¶

func (*NullableModelsPagedQuery) UnmarshalJSON ¶

func (v *NullableModelsPagedQuery) UnmarshalJSON(src []byte) error

func (*NullableModelsPagedQuery) Unset ¶

func (v *NullableModelsPagedQuery) Unset()

type NullableModelsPendingCSRResponse ¶

type NullableModelsPendingCSRResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsPendingCSRResponse) Get ¶

func (NullableModelsPendingCSRResponse) IsSet ¶

func (NullableModelsPendingCSRResponse) MarshalJSON ¶

func (v NullableModelsPendingCSRResponse) MarshalJSON() ([]byte, error)

func (*NullableModelsPendingCSRResponse) Set ¶

func (*NullableModelsPendingCSRResponse) UnmarshalJSON ¶

func (v *NullableModelsPendingCSRResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsPendingCSRResponse) Unset ¶

type NullableModelsPkcs10CertificateResponse ¶

type NullableModelsPkcs10CertificateResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsPkcs10CertificateResponse) Get ¶

func (NullableModelsPkcs10CertificateResponse) IsSet ¶

func (NullableModelsPkcs10CertificateResponse) MarshalJSON ¶

func (v NullableModelsPkcs10CertificateResponse) MarshalJSON() ([]byte, error)

func (*NullableModelsPkcs10CertificateResponse) Set ¶

func (*NullableModelsPkcs10CertificateResponse) UnmarshalJSON ¶

func (v *NullableModelsPkcs10CertificateResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsPkcs10CertificateResponse) Unset ¶

type NullableModelsPkcs12CertificateResponse ¶

type NullableModelsPkcs12CertificateResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsPkcs12CertificateResponse) Get ¶

func (NullableModelsPkcs12CertificateResponse) IsSet ¶

func (NullableModelsPkcs12CertificateResponse) MarshalJSON ¶

func (v NullableModelsPkcs12CertificateResponse) MarshalJSON() ([]byte, error)

func (*NullableModelsPkcs12CertificateResponse) Set ¶

func (*NullableModelsPkcs12CertificateResponse) UnmarshalJSON ¶

func (v *NullableModelsPkcs12CertificateResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsPkcs12CertificateResponse) Unset ¶

type NullableModelsQueryModelsPagedAgentBlueprintJobsQuery ¶

type NullableModelsQueryModelsPagedAgentBlueprintJobsQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedAgentBlueprintJobsQuery) Get ¶

func (NullableModelsQueryModelsPagedAgentBlueprintJobsQuery) IsSet ¶

func (NullableModelsQueryModelsPagedAgentBlueprintJobsQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentBlueprintJobsQuery) Set ¶

func (*NullableModelsQueryModelsPagedAgentBlueprintJobsQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentBlueprintJobsQuery) Unset ¶

type NullableModelsQueryModelsPagedAgentBlueprintQuery ¶

type NullableModelsQueryModelsPagedAgentBlueprintQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedAgentBlueprintQuery) Get ¶

func (NullableModelsQueryModelsPagedAgentBlueprintQuery) IsSet ¶

func (NullableModelsQueryModelsPagedAgentBlueprintQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentBlueprintQuery) Set ¶

func (*NullableModelsQueryModelsPagedAgentBlueprintQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentBlueprintQuery) Unset ¶

type NullableModelsQueryModelsPagedAgentBlueprintStoresQuery ¶

type NullableModelsQueryModelsPagedAgentBlueprintStoresQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedAgentBlueprintStoresQuery) Get ¶

func (NullableModelsQueryModelsPagedAgentBlueprintStoresQuery) IsSet ¶

func (NullableModelsQueryModelsPagedAgentBlueprintStoresQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentBlueprintStoresQuery) Set ¶

func (*NullableModelsQueryModelsPagedAgentBlueprintStoresQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentBlueprintStoresQuery) Unset ¶

type NullableModelsQueryModelsPagedAgentJobHistoryQuery ¶

type NullableModelsQueryModelsPagedAgentJobHistoryQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedAgentJobHistoryQuery) Get ¶

func (NullableModelsQueryModelsPagedAgentJobHistoryQuery) IsSet ¶

func (NullableModelsQueryModelsPagedAgentJobHistoryQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentJobHistoryQuery) Set ¶

func (*NullableModelsQueryModelsPagedAgentJobHistoryQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentJobHistoryQuery) Unset ¶

type NullableModelsQueryModelsPagedAgentJobQuery ¶

type NullableModelsQueryModelsPagedAgentJobQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedAgentJobQuery) Get ¶

func (NullableModelsQueryModelsPagedAgentJobQuery) IsSet ¶

func (NullableModelsQueryModelsPagedAgentJobQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentJobQuery) Set ¶

func (*NullableModelsQueryModelsPagedAgentJobQuery) UnmarshalJSON ¶

func (v *NullableModelsQueryModelsPagedAgentJobQuery) UnmarshalJSON(src []byte) error

func (*NullableModelsQueryModelsPagedAgentJobQuery) Unset ¶

type NullableModelsQueryModelsPagedAgentPoolAgentsQuery ¶

type NullableModelsQueryModelsPagedAgentPoolAgentsQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedAgentPoolAgentsQuery) Get ¶

func (NullableModelsQueryModelsPagedAgentPoolAgentsQuery) IsSet ¶

func (NullableModelsQueryModelsPagedAgentPoolAgentsQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentPoolAgentsQuery) Set ¶

func (*NullableModelsQueryModelsPagedAgentPoolAgentsQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentPoolAgentsQuery) Unset ¶

type NullableModelsQueryModelsPagedAgentPoolQuery ¶

type NullableModelsQueryModelsPagedAgentPoolQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedAgentPoolQuery) Get ¶

func (NullableModelsQueryModelsPagedAgentPoolQuery) IsSet ¶

func (NullableModelsQueryModelsPagedAgentPoolQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentPoolQuery) Set ¶

func (*NullableModelsQueryModelsPagedAgentPoolQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentPoolQuery) Unset ¶

type NullableModelsQueryModelsPagedAgentQuery ¶

type NullableModelsQueryModelsPagedAgentQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedAgentQuery) Get ¶

func (NullableModelsQueryModelsPagedAgentQuery) IsSet ¶

func (NullableModelsQueryModelsPagedAgentQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedAgentQuery) Set ¶

func (*NullableModelsQueryModelsPagedAgentQuery) UnmarshalJSON ¶

func (v *NullableModelsQueryModelsPagedAgentQuery) UnmarshalJSON(src []byte) error

func (*NullableModelsQueryModelsPagedAgentQuery) Unset ¶

type NullableModelsQueryModelsPagedAuditLogQuery ¶

type NullableModelsQueryModelsPagedAuditLogQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedAuditLogQuery) Get ¶

func (NullableModelsQueryModelsPagedAuditLogQuery) IsSet ¶

func (NullableModelsQueryModelsPagedAuditLogQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedAuditLogQuery) Set ¶

func (*NullableModelsQueryModelsPagedAuditLogQuery) UnmarshalJSON ¶

func (v *NullableModelsQueryModelsPagedAuditLogQuery) UnmarshalJSON(src []byte) error

func (*NullableModelsQueryModelsPagedAuditLogQuery) Unset ¶

type NullableModelsQueryModelsPagedCertificateAuthorityQuery ¶

type NullableModelsQueryModelsPagedCertificateAuthorityQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedCertificateAuthorityQuery) Get ¶

func (NullableModelsQueryModelsPagedCertificateAuthorityQuery) IsSet ¶

func (NullableModelsQueryModelsPagedCertificateAuthorityQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateAuthorityQuery) Set ¶

func (*NullableModelsQueryModelsPagedCertificateAuthorityQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateAuthorityQuery) Unset ¶

type NullableModelsQueryModelsPagedCertificateHistoryQuery ¶

type NullableModelsQueryModelsPagedCertificateHistoryQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedCertificateHistoryQuery) Get ¶

func (NullableModelsQueryModelsPagedCertificateHistoryQuery) IsSet ¶

func (NullableModelsQueryModelsPagedCertificateHistoryQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateHistoryQuery) Set ¶

func (*NullableModelsQueryModelsPagedCertificateHistoryQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateHistoryQuery) Unset ¶

type NullableModelsQueryModelsPagedCertificateRequestQuery ¶

type NullableModelsQueryModelsPagedCertificateRequestQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedCertificateRequestQuery) Get ¶

func (NullableModelsQueryModelsPagedCertificateRequestQuery) IsSet ¶

func (NullableModelsQueryModelsPagedCertificateRequestQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateRequestQuery) Set ¶

func (*NullableModelsQueryModelsPagedCertificateRequestQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateRequestQuery) Unset ¶

type NullableModelsQueryModelsPagedCertificateStoreContainerQuery ¶

type NullableModelsQueryModelsPagedCertificateStoreContainerQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedCertificateStoreContainerQuery) Get ¶

func (NullableModelsQueryModelsPagedCertificateStoreContainerQuery) IsSet ¶

func (NullableModelsQueryModelsPagedCertificateStoreContainerQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateStoreContainerQuery) Set ¶

func (*NullableModelsQueryModelsPagedCertificateStoreContainerQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateStoreContainerQuery) Unset ¶

type NullableModelsQueryModelsPagedCertificateStoreInventoryQuery ¶

type NullableModelsQueryModelsPagedCertificateStoreInventoryQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedCertificateStoreInventoryQuery) Get ¶

func (NullableModelsQueryModelsPagedCertificateStoreInventoryQuery) IsSet ¶

func (NullableModelsQueryModelsPagedCertificateStoreInventoryQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateStoreInventoryQuery) Set ¶

func (*NullableModelsQueryModelsPagedCertificateStoreInventoryQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateStoreInventoryQuery) Unset ¶

type NullableModelsQueryModelsPagedCertificateStoreQuery ¶

type NullableModelsQueryModelsPagedCertificateStoreQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedCertificateStoreQuery) Get ¶

func (NullableModelsQueryModelsPagedCertificateStoreQuery) IsSet ¶

func (NullableModelsQueryModelsPagedCertificateStoreQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateStoreQuery) Set ¶

func (*NullableModelsQueryModelsPagedCertificateStoreQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateStoreQuery) Unset ¶

type NullableModelsQueryModelsPagedCertificateStoreServerQuery ¶

type NullableModelsQueryModelsPagedCertificateStoreServerQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedCertificateStoreServerQuery) Get ¶

func (NullableModelsQueryModelsPagedCertificateStoreServerQuery) IsSet ¶

func (NullableModelsQueryModelsPagedCertificateStoreServerQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateStoreServerQuery) Set ¶

func (*NullableModelsQueryModelsPagedCertificateStoreServerQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedCertificateStoreServerQuery) Unset ¶

type NullableModelsQueryModelsPagedCustomReportQuery ¶

type NullableModelsQueryModelsPagedCustomReportQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedCustomReportQuery) Get ¶

func (NullableModelsQueryModelsPagedCustomReportQuery) IsSet ¶

func (NullableModelsQueryModelsPagedCustomReportQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedCustomReportQuery) Set ¶

func (*NullableModelsQueryModelsPagedCustomReportQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedCustomReportQuery) Unset ¶

type NullableModelsQueryModelsPagedDeniedAlertQuery ¶

type NullableModelsQueryModelsPagedDeniedAlertQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedDeniedAlertQuery) Get ¶

func (NullableModelsQueryModelsPagedDeniedAlertQuery) IsSet ¶

func (NullableModelsQueryModelsPagedDeniedAlertQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedDeniedAlertQuery) Set ¶

func (*NullableModelsQueryModelsPagedDeniedAlertQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedDeniedAlertQuery) Unset ¶

type NullableModelsQueryModelsPagedExpirationAlertQuery ¶

type NullableModelsQueryModelsPagedExpirationAlertQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedExpirationAlertQuery) Get ¶

func (NullableModelsQueryModelsPagedExpirationAlertQuery) IsSet ¶

func (NullableModelsQueryModelsPagedExpirationAlertQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedExpirationAlertQuery) Set ¶

func (*NullableModelsQueryModelsPagedExpirationAlertQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedExpirationAlertQuery) Unset ¶

type NullableModelsQueryModelsPagedIssuedAlertQuery ¶

type NullableModelsQueryModelsPagedIssuedAlertQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedIssuedAlertQuery) Get ¶

func (NullableModelsQueryModelsPagedIssuedAlertQuery) IsSet ¶

func (NullableModelsQueryModelsPagedIssuedAlertQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedIssuedAlertQuery) Set ¶

func (*NullableModelsQueryModelsPagedIssuedAlertQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedIssuedAlertQuery) Unset ¶

type NullableModelsQueryModelsPagedKeyRotationAlertQuery ¶

type NullableModelsQueryModelsPagedKeyRotationAlertQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedKeyRotationAlertQuery) Get ¶

func (NullableModelsQueryModelsPagedKeyRotationAlertQuery) IsSet ¶

func (NullableModelsQueryModelsPagedKeyRotationAlertQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedKeyRotationAlertQuery) Set ¶

func (*NullableModelsQueryModelsPagedKeyRotationAlertQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedKeyRotationAlertQuery) Unset ¶

type NullableModelsQueryModelsPagedLegacyDeniedRequestQuery ¶

type NullableModelsQueryModelsPagedLegacyDeniedRequestQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedLegacyDeniedRequestQuery) Get ¶

func (NullableModelsQueryModelsPagedLegacyDeniedRequestQuery) IsSet ¶

func (NullableModelsQueryModelsPagedLegacyDeniedRequestQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedLegacyDeniedRequestQuery) Set ¶

func (*NullableModelsQueryModelsPagedLegacyDeniedRequestQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedLegacyDeniedRequestQuery) Unset ¶

type NullableModelsQueryModelsPagedMetadataFieldQuery ¶

type NullableModelsQueryModelsPagedMetadataFieldQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedMetadataFieldQuery) Get ¶

func (NullableModelsQueryModelsPagedMetadataFieldQuery) IsSet ¶

func (NullableModelsQueryModelsPagedMetadataFieldQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedMetadataFieldQuery) Set ¶

func (*NullableModelsQueryModelsPagedMetadataFieldQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedMetadataFieldQuery) Unset ¶

type NullableModelsQueryModelsPagedPendingAlertQuery ¶

type NullableModelsQueryModelsPagedPendingAlertQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedPendingAlertQuery) Get ¶

func (NullableModelsQueryModelsPagedPendingAlertQuery) IsSet ¶

func (NullableModelsQueryModelsPagedPendingAlertQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedPendingAlertQuery) Set ¶

func (*NullableModelsQueryModelsPagedPendingAlertQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedPendingAlertQuery) Unset ¶

type NullableModelsQueryModelsPagedPendingCSRQuery ¶

type NullableModelsQueryModelsPagedPendingCSRQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedPendingCSRQuery) Get ¶

func (NullableModelsQueryModelsPagedPendingCSRQuery) IsSet ¶

func (NullableModelsQueryModelsPagedPendingCSRQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedPendingCSRQuery) Set ¶

func (*NullableModelsQueryModelsPagedPendingCSRQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedPendingCSRQuery) Unset ¶

type NullableModelsQueryModelsPagedReportQuery ¶

type NullableModelsQueryModelsPagedReportQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedReportQuery) Get ¶

func (NullableModelsQueryModelsPagedReportQuery) IsSet ¶

func (NullableModelsQueryModelsPagedReportQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedReportQuery) Set ¶

func (*NullableModelsQueryModelsPagedReportQuery) UnmarshalJSON ¶

func (v *NullableModelsQueryModelsPagedReportQuery) UnmarshalJSON(src []byte) error

func (*NullableModelsQueryModelsPagedReportQuery) Unset ¶

type NullableModelsQueryModelsPagedReportScheduleQuery ¶

type NullableModelsQueryModelsPagedReportScheduleQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedReportScheduleQuery) Get ¶

func (NullableModelsQueryModelsPagedReportScheduleQuery) IsSet ¶

func (NullableModelsQueryModelsPagedReportScheduleQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedReportScheduleQuery) Set ¶

func (*NullableModelsQueryModelsPagedReportScheduleQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedReportScheduleQuery) Unset ¶

type NullableModelsQueryModelsPagedRevocationMonitoringQuery ¶

type NullableModelsQueryModelsPagedRevocationMonitoringQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedRevocationMonitoringQuery) Get ¶

func (NullableModelsQueryModelsPagedRevocationMonitoringQuery) IsSet ¶

func (NullableModelsQueryModelsPagedRevocationMonitoringQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedRevocationMonitoringQuery) Set ¶

func (*NullableModelsQueryModelsPagedRevocationMonitoringQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedRevocationMonitoringQuery) Unset ¶

type NullableModelsQueryModelsPagedSSHLogonQuery ¶

type NullableModelsQueryModelsPagedSSHLogonQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedSSHLogonQuery) Get ¶

func (NullableModelsQueryModelsPagedSSHLogonQuery) IsSet ¶

func (NullableModelsQueryModelsPagedSSHLogonQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedSSHLogonQuery) Set ¶

func (*NullableModelsQueryModelsPagedSSHLogonQuery) UnmarshalJSON ¶

func (v *NullableModelsQueryModelsPagedSSHLogonQuery) UnmarshalJSON(src []byte) error

func (*NullableModelsQueryModelsPagedSSHLogonQuery) Unset ¶

type NullableModelsQueryModelsPagedSSHServerGroupQuery ¶

type NullableModelsQueryModelsPagedSSHServerGroupQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedSSHServerGroupQuery) Get ¶

func (NullableModelsQueryModelsPagedSSHServerGroupQuery) IsSet ¶

func (NullableModelsQueryModelsPagedSSHServerGroupQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedSSHServerGroupQuery) Set ¶

func (*NullableModelsQueryModelsPagedSSHServerGroupQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedSSHServerGroupQuery) Unset ¶

type NullableModelsQueryModelsPagedSSHServerQuery ¶

type NullableModelsQueryModelsPagedSSHServerQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedSSHServerQuery) Get ¶

func (NullableModelsQueryModelsPagedSSHServerQuery) IsSet ¶

func (NullableModelsQueryModelsPagedSSHServerQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedSSHServerQuery) Set ¶

func (*NullableModelsQueryModelsPagedSSHServerQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedSSHServerQuery) Unset ¶

type NullableModelsQueryModelsPagedSSHServiceAccountQuery ¶

type NullableModelsQueryModelsPagedSSHServiceAccountQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedSSHServiceAccountQuery) Get ¶

func (NullableModelsQueryModelsPagedSSHServiceAccountQuery) IsSet ¶

func (NullableModelsQueryModelsPagedSSHServiceAccountQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedSSHServiceAccountQuery) Set ¶

func (*NullableModelsQueryModelsPagedSSHServiceAccountQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedSSHServiceAccountQuery) Unset ¶

type NullableModelsQueryModelsPagedSSHUnmanagedKeyQuery ¶

type NullableModelsQueryModelsPagedSSHUnmanagedKeyQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedSSHUnmanagedKeyQuery) Get ¶

func (NullableModelsQueryModelsPagedSSHUnmanagedKeyQuery) IsSet ¶

func (NullableModelsQueryModelsPagedSSHUnmanagedKeyQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedSSHUnmanagedKeyQuery) Set ¶

func (*NullableModelsQueryModelsPagedSSHUnmanagedKeyQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedSSHUnmanagedKeyQuery) Unset ¶

type NullableModelsQueryModelsPagedSSHUserQuery ¶

type NullableModelsQueryModelsPagedSSHUserQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedSSHUserQuery) Get ¶

func (NullableModelsQueryModelsPagedSSHUserQuery) IsSet ¶

func (NullableModelsQueryModelsPagedSSHUserQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedSSHUserQuery) Set ¶

func (*NullableModelsQueryModelsPagedSSHUserQuery) UnmarshalJSON ¶

func (v *NullableModelsQueryModelsPagedSSHUserQuery) UnmarshalJSON(src []byte) error

func (*NullableModelsQueryModelsPagedSSHUserQuery) Unset ¶

type NullableModelsQueryModelsPagedScanJobPartsQuery ¶

type NullableModelsQueryModelsPagedScanJobPartsQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedScanJobPartsQuery) Get ¶

func (NullableModelsQueryModelsPagedScanJobPartsQuery) IsSet ¶

func (NullableModelsQueryModelsPagedScanJobPartsQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedScanJobPartsQuery) Set ¶

func (*NullableModelsQueryModelsPagedScanJobPartsQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedScanJobPartsQuery) Unset ¶

type NullableModelsQueryModelsPagedSecurityIdentityQuery ¶

type NullableModelsQueryModelsPagedSecurityIdentityQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedSecurityIdentityQuery) Get ¶

func (NullableModelsQueryModelsPagedSecurityIdentityQuery) IsSet ¶

func (NullableModelsQueryModelsPagedSecurityIdentityQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedSecurityIdentityQuery) Set ¶

func (*NullableModelsQueryModelsPagedSecurityIdentityQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedSecurityIdentityQuery) Unset ¶

type NullableModelsQueryModelsPagedSecurityRoleQuery ¶

type NullableModelsQueryModelsPagedSecurityRoleQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedSecurityRoleQuery) Get ¶

func (NullableModelsQueryModelsPagedSecurityRoleQuery) IsSet ¶

func (NullableModelsQueryModelsPagedSecurityRoleQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedSecurityRoleQuery) Set ¶

func (*NullableModelsQueryModelsPagedSecurityRoleQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedSecurityRoleQuery) Unset ¶

type NullableModelsQueryModelsPagedSslResultQuery ¶

type NullableModelsQueryModelsPagedSslResultQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedSslResultQuery) Get ¶

func (NullableModelsQueryModelsPagedSslResultQuery) IsSet ¶

func (NullableModelsQueryModelsPagedSslResultQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedSslResultQuery) Set ¶

func (*NullableModelsQueryModelsPagedSslResultQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsPagedSslResultQuery) Unset ¶

type NullableModelsQueryModelsPagedTemplateQuery ¶

type NullableModelsQueryModelsPagedTemplateQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsPagedTemplateQuery) Get ¶

func (NullableModelsQueryModelsPagedTemplateQuery) IsSet ¶

func (NullableModelsQueryModelsPagedTemplateQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsPagedTemplateQuery) Set ¶

func (*NullableModelsQueryModelsPagedTemplateQuery) UnmarshalJSON ¶

func (v *NullableModelsQueryModelsPagedTemplateQuery) UnmarshalJSON(src []byte) error

func (*NullableModelsQueryModelsPagedTemplateQuery) Unset ¶

type NullableModelsQueryModelsWorkflowWorkflowDefinitionQuery ¶

type NullableModelsQueryModelsWorkflowWorkflowDefinitionQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsWorkflowWorkflowDefinitionQuery) Get ¶

func (NullableModelsQueryModelsWorkflowWorkflowDefinitionQuery) IsSet ¶

func (NullableModelsQueryModelsWorkflowWorkflowDefinitionQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsWorkflowWorkflowDefinitionQuery) Set ¶

func (*NullableModelsQueryModelsWorkflowWorkflowDefinitionQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsWorkflowWorkflowDefinitionQuery) Unset ¶

type NullableModelsQueryModelsWorkflowWorkflowInstanceQuery ¶

type NullableModelsQueryModelsWorkflowWorkflowInstanceQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsWorkflowWorkflowInstanceQuery) Get ¶

func (NullableModelsQueryModelsWorkflowWorkflowInstanceQuery) IsSet ¶

func (NullableModelsQueryModelsWorkflowWorkflowInstanceQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsWorkflowWorkflowInstanceQuery) Set ¶

func (*NullableModelsQueryModelsWorkflowWorkflowInstanceQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsWorkflowWorkflowInstanceQuery) Unset ¶

type NullableModelsQueryModelsWorkflowWorkflowStepSchemaQuery ¶

type NullableModelsQueryModelsWorkflowWorkflowStepSchemaQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsWorkflowWorkflowStepSchemaQuery) Get ¶

func (NullableModelsQueryModelsWorkflowWorkflowStepSchemaQuery) IsSet ¶

func (NullableModelsQueryModelsWorkflowWorkflowStepSchemaQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsWorkflowWorkflowStepSchemaQuery) Set ¶

func (*NullableModelsQueryModelsWorkflowWorkflowStepSchemaQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsWorkflowWorkflowStepSchemaQuery) Unset ¶

type NullableModelsQueryModelsWorkflowWorkflowTypeQuery ¶

type NullableModelsQueryModelsWorkflowWorkflowTypeQuery struct {
	// contains filtered or unexported fields
}

func (NullableModelsQueryModelsWorkflowWorkflowTypeQuery) Get ¶

func (NullableModelsQueryModelsWorkflowWorkflowTypeQuery) IsSet ¶

func (NullableModelsQueryModelsWorkflowWorkflowTypeQuery) MarshalJSON ¶

func (*NullableModelsQueryModelsWorkflowWorkflowTypeQuery) Set ¶

func (*NullableModelsQueryModelsWorkflowWorkflowTypeQuery) UnmarshalJSON ¶

func (*NullableModelsQueryModelsWorkflowWorkflowTypeQuery) Unset ¶

type NullableModelsRecoveryResponse ¶

type NullableModelsRecoveryResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsRecoveryResponse) Get ¶

func (NullableModelsRecoveryResponse) IsSet ¶

func (NullableModelsRecoveryResponse) MarshalJSON ¶

func (v NullableModelsRecoveryResponse) MarshalJSON() ([]byte, error)

func (*NullableModelsRecoveryResponse) Set ¶

func (*NullableModelsRecoveryResponse) UnmarshalJSON ¶

func (v *NullableModelsRecoveryResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsRecoveryResponse) Unset ¶

func (v *NullableModelsRecoveryResponse) Unset()

type NullableModelsReenrollmentStatus ¶

type NullableModelsReenrollmentStatus struct {
	// contains filtered or unexported fields
}

func (NullableModelsReenrollmentStatus) Get ¶

func (NullableModelsReenrollmentStatus) IsSet ¶

func (NullableModelsReenrollmentStatus) MarshalJSON ¶

func (v NullableModelsReenrollmentStatus) MarshalJSON() ([]byte, error)

func (*NullableModelsReenrollmentStatus) Set ¶

func (*NullableModelsReenrollmentStatus) UnmarshalJSON ¶

func (v *NullableModelsReenrollmentStatus) UnmarshalJSON(src []byte) error

func (*NullableModelsReenrollmentStatus) Unset ¶

type NullableModelsReport ¶

type NullableModelsReport struct {
	// contains filtered or unexported fields
}

func NewNullableModelsReport ¶

func NewNullableModelsReport(val *ModelsReport) *NullableModelsReport

func (NullableModelsReport) Get ¶

func (NullableModelsReport) IsSet ¶

func (v NullableModelsReport) IsSet() bool

func (NullableModelsReport) MarshalJSON ¶

func (v NullableModelsReport) MarshalJSON() ([]byte, error)

func (*NullableModelsReport) Set ¶

func (v *NullableModelsReport) Set(val *ModelsReport)

func (*NullableModelsReport) UnmarshalJSON ¶

func (v *NullableModelsReport) UnmarshalJSON(src []byte) error

func (*NullableModelsReport) Unset ¶

func (v *NullableModelsReport) Unset()

type NullableModelsReportParameters ¶

type NullableModelsReportParameters struct {
	// contains filtered or unexported fields
}

func (NullableModelsReportParameters) Get ¶

func (NullableModelsReportParameters) IsSet ¶

func (NullableModelsReportParameters) MarshalJSON ¶

func (v NullableModelsReportParameters) MarshalJSON() ([]byte, error)

func (*NullableModelsReportParameters) Set ¶

func (*NullableModelsReportParameters) UnmarshalJSON ¶

func (v *NullableModelsReportParameters) UnmarshalJSON(src []byte) error

func (*NullableModelsReportParameters) Unset ¶

func (v *NullableModelsReportParameters) Unset()

type NullableModelsReportParametersRequest ¶

type NullableModelsReportParametersRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsReportParametersRequest) Get ¶

func (NullableModelsReportParametersRequest) IsSet ¶

func (NullableModelsReportParametersRequest) MarshalJSON ¶

func (v NullableModelsReportParametersRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsReportParametersRequest) Set ¶

func (*NullableModelsReportParametersRequest) UnmarshalJSON ¶

func (v *NullableModelsReportParametersRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsReportParametersRequest) Unset ¶

type NullableModelsReportRequestModel ¶

type NullableModelsReportRequestModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsReportRequestModel) Get ¶

func (NullableModelsReportRequestModel) IsSet ¶

func (NullableModelsReportRequestModel) MarshalJSON ¶

func (v NullableModelsReportRequestModel) MarshalJSON() ([]byte, error)

func (*NullableModelsReportRequestModel) Set ¶

func (*NullableModelsReportRequestModel) UnmarshalJSON ¶

func (v *NullableModelsReportRequestModel) UnmarshalJSON(src []byte) error

func (*NullableModelsReportRequestModel) Unset ¶

type NullableModelsReportSchedule ¶

type NullableModelsReportSchedule struct {
	// contains filtered or unexported fields
}

func (NullableModelsReportSchedule) Get ¶

func (NullableModelsReportSchedule) IsSet ¶

func (NullableModelsReportSchedule) MarshalJSON ¶

func (v NullableModelsReportSchedule) MarshalJSON() ([]byte, error)

func (*NullableModelsReportSchedule) Set ¶

func (*NullableModelsReportSchedule) UnmarshalJSON ¶

func (v *NullableModelsReportSchedule) UnmarshalJSON(src []byte) error

func (*NullableModelsReportSchedule) Unset ¶

func (v *NullableModelsReportSchedule) Unset()

type NullableModelsRevocationRevocationResponse ¶

type NullableModelsRevocationRevocationResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsRevocationRevocationResponse) Get ¶

func (NullableModelsRevocationRevocationResponse) IsSet ¶

func (NullableModelsRevocationRevocationResponse) MarshalJSON ¶

func (*NullableModelsRevocationRevocationResponse) Set ¶

func (*NullableModelsRevocationRevocationResponse) UnmarshalJSON ¶

func (v *NullableModelsRevocationRevocationResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsRevocationRevocationResponse) Unset ¶

type NullableModelsRevocationSuspendedRevocationResponse ¶

type NullableModelsRevocationSuspendedRevocationResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsRevocationSuspendedRevocationResponse) Get ¶

func (NullableModelsRevocationSuspendedRevocationResponse) IsSet ¶

func (NullableModelsRevocationSuspendedRevocationResponse) MarshalJSON ¶

func (*NullableModelsRevocationSuspendedRevocationResponse) Set ¶

func (*NullableModelsRevocationSuspendedRevocationResponse) UnmarshalJSON ¶

func (*NullableModelsRevocationSuspendedRevocationResponse) Unset ¶

type NullableModelsRevokeAllCertificatesRequest ¶

type NullableModelsRevokeAllCertificatesRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsRevokeAllCertificatesRequest) Get ¶

func (NullableModelsRevokeAllCertificatesRequest) IsSet ¶

func (NullableModelsRevokeAllCertificatesRequest) MarshalJSON ¶

func (*NullableModelsRevokeAllCertificatesRequest) Set ¶

func (*NullableModelsRevokeAllCertificatesRequest) UnmarshalJSON ¶

func (v *NullableModelsRevokeAllCertificatesRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsRevokeAllCertificatesRequest) Unset ¶

type NullableModelsRevokeCertificateRequest ¶

type NullableModelsRevokeCertificateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsRevokeCertificateRequest) Get ¶

func (NullableModelsRevokeCertificateRequest) IsSet ¶

func (NullableModelsRevokeCertificateRequest) MarshalJSON ¶

func (v NullableModelsRevokeCertificateRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsRevokeCertificateRequest) Set ¶

func (*NullableModelsRevokeCertificateRequest) UnmarshalJSON ¶

func (v *NullableModelsRevokeCertificateRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsRevokeCertificateRequest) Unset ¶

type NullableModelsSSHAccessLogonUserAccessRequest ¶

type NullableModelsSSHAccessLogonUserAccessRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHAccessLogonUserAccessRequest) Get ¶

func (NullableModelsSSHAccessLogonUserAccessRequest) IsSet ¶

func (NullableModelsSSHAccessLogonUserAccessRequest) MarshalJSON ¶

func (*NullableModelsSSHAccessLogonUserAccessRequest) Set ¶

func (*NullableModelsSSHAccessLogonUserAccessRequest) UnmarshalJSON ¶

func (*NullableModelsSSHAccessLogonUserAccessRequest) Unset ¶

type NullableModelsSSHAccessLogonUserAccessResponse ¶

type NullableModelsSSHAccessLogonUserAccessResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHAccessLogonUserAccessResponse) Get ¶

func (NullableModelsSSHAccessLogonUserAccessResponse) IsSet ¶

func (NullableModelsSSHAccessLogonUserAccessResponse) MarshalJSON ¶

func (*NullableModelsSSHAccessLogonUserAccessResponse) Set ¶

func (*NullableModelsSSHAccessLogonUserAccessResponse) UnmarshalJSON ¶

func (*NullableModelsSSHAccessLogonUserAccessResponse) Unset ¶

type NullableModelsSSHAccessServerAccessRequest ¶

type NullableModelsSSHAccessServerAccessRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHAccessServerAccessRequest) Get ¶

func (NullableModelsSSHAccessServerAccessRequest) IsSet ¶

func (NullableModelsSSHAccessServerAccessRequest) MarshalJSON ¶

func (*NullableModelsSSHAccessServerAccessRequest) Set ¶

func (*NullableModelsSSHAccessServerAccessRequest) UnmarshalJSON ¶

func (v *NullableModelsSSHAccessServerAccessRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHAccessServerAccessRequest) Unset ¶

type NullableModelsSSHAccessServerAccessResponse ¶

type NullableModelsSSHAccessServerAccessResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHAccessServerAccessResponse) Get ¶

func (NullableModelsSSHAccessServerAccessResponse) IsSet ¶

func (NullableModelsSSHAccessServerAccessResponse) MarshalJSON ¶

func (*NullableModelsSSHAccessServerAccessResponse) Set ¶

func (*NullableModelsSSHAccessServerAccessResponse) UnmarshalJSON ¶

func (v *NullableModelsSSHAccessServerAccessResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHAccessServerAccessResponse) Unset ¶

type NullableModelsSSHAccessServerGroupAccessRequest ¶

type NullableModelsSSHAccessServerGroupAccessRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHAccessServerGroupAccessRequest) Get ¶

func (NullableModelsSSHAccessServerGroupAccessRequest) IsSet ¶

func (NullableModelsSSHAccessServerGroupAccessRequest) MarshalJSON ¶

func (*NullableModelsSSHAccessServerGroupAccessRequest) Set ¶

func (*NullableModelsSSHAccessServerGroupAccessRequest) UnmarshalJSON ¶

func (*NullableModelsSSHAccessServerGroupAccessRequest) Unset ¶

type NullableModelsSSHAccessServerGroupAccessResponse ¶

type NullableModelsSSHAccessServerGroupAccessResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHAccessServerGroupAccessResponse) Get ¶

func (NullableModelsSSHAccessServerGroupAccessResponse) IsSet ¶

func (NullableModelsSSHAccessServerGroupAccessResponse) MarshalJSON ¶

func (*NullableModelsSSHAccessServerGroupAccessResponse) Set ¶

func (*NullableModelsSSHAccessServerGroupAccessResponse) UnmarshalJSON ¶

func (*NullableModelsSSHAccessServerGroupAccessResponse) Unset ¶

type NullableModelsSSHKeysKeyGenerationRequest ¶

type NullableModelsSSHKeysKeyGenerationRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHKeysKeyGenerationRequest) Get ¶

func (NullableModelsSSHKeysKeyGenerationRequest) IsSet ¶

func (NullableModelsSSHKeysKeyGenerationRequest) MarshalJSON ¶

func (*NullableModelsSSHKeysKeyGenerationRequest) Set ¶

func (*NullableModelsSSHKeysKeyGenerationRequest) UnmarshalJSON ¶

func (v *NullableModelsSSHKeysKeyGenerationRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHKeysKeyGenerationRequest) Unset ¶

type NullableModelsSSHKeysKeyResponse ¶

type NullableModelsSSHKeysKeyResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHKeysKeyResponse) Get ¶

func (NullableModelsSSHKeysKeyResponse) IsSet ¶

func (NullableModelsSSHKeysKeyResponse) MarshalJSON ¶

func (v NullableModelsSSHKeysKeyResponse) MarshalJSON() ([]byte, error)

func (*NullableModelsSSHKeysKeyResponse) Set ¶

func (*NullableModelsSSHKeysKeyResponse) UnmarshalJSON ¶

func (v *NullableModelsSSHKeysKeyResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHKeysKeyResponse) Unset ¶

type NullableModelsSSHKeysKeyUpdateRequest ¶

type NullableModelsSSHKeysKeyUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHKeysKeyUpdateRequest) Get ¶

func (NullableModelsSSHKeysKeyUpdateRequest) IsSet ¶

func (NullableModelsSSHKeysKeyUpdateRequest) MarshalJSON ¶

func (v NullableModelsSSHKeysKeyUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsSSHKeysKeyUpdateRequest) Set ¶

func (*NullableModelsSSHKeysKeyUpdateRequest) UnmarshalJSON ¶

func (v *NullableModelsSSHKeysKeyUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHKeysKeyUpdateRequest) Unset ¶

type NullableModelsSSHKeysUnmanagedKeyResponse ¶

type NullableModelsSSHKeysUnmanagedKeyResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHKeysUnmanagedKeyResponse) Get ¶

func (NullableModelsSSHKeysUnmanagedKeyResponse) IsSet ¶

func (NullableModelsSSHKeysUnmanagedKeyResponse) MarshalJSON ¶

func (*NullableModelsSSHKeysUnmanagedKeyResponse) Set ¶

func (*NullableModelsSSHKeysUnmanagedKeyResponse) UnmarshalJSON ¶

func (v *NullableModelsSSHKeysUnmanagedKeyResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHKeysUnmanagedKeyResponse) Unset ¶

type NullableModelsSSHLogonsLogonAccessRequest ¶

type NullableModelsSSHLogonsLogonAccessRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHLogonsLogonAccessRequest) Get ¶

func (NullableModelsSSHLogonsLogonAccessRequest) IsSet ¶

func (NullableModelsSSHLogonsLogonAccessRequest) MarshalJSON ¶

func (*NullableModelsSSHLogonsLogonAccessRequest) Set ¶

func (*NullableModelsSSHLogonsLogonAccessRequest) UnmarshalJSON ¶

func (v *NullableModelsSSHLogonsLogonAccessRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHLogonsLogonAccessRequest) Unset ¶

type NullableModelsSSHLogonsLogonCreationRequest ¶

type NullableModelsSSHLogonsLogonCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHLogonsLogonCreationRequest) Get ¶

func (NullableModelsSSHLogonsLogonCreationRequest) IsSet ¶

func (NullableModelsSSHLogonsLogonCreationRequest) MarshalJSON ¶

func (*NullableModelsSSHLogonsLogonCreationRequest) Set ¶

func (*NullableModelsSSHLogonsLogonCreationRequest) UnmarshalJSON ¶

func (v *NullableModelsSSHLogonsLogonCreationRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHLogonsLogonCreationRequest) Unset ¶

type NullableModelsSSHLogonsLogonQueryResponse ¶

type NullableModelsSSHLogonsLogonQueryResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHLogonsLogonQueryResponse) Get ¶

func (NullableModelsSSHLogonsLogonQueryResponse) IsSet ¶

func (NullableModelsSSHLogonsLogonQueryResponse) MarshalJSON ¶

func (*NullableModelsSSHLogonsLogonQueryResponse) Set ¶

func (*NullableModelsSSHLogonsLogonQueryResponse) UnmarshalJSON ¶

func (v *NullableModelsSSHLogonsLogonQueryResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHLogonsLogonQueryResponse) Unset ¶

type NullableModelsSSHLogonsLogonResponse ¶

type NullableModelsSSHLogonsLogonResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHLogonsLogonResponse) Get ¶

func (NullableModelsSSHLogonsLogonResponse) IsSet ¶

func (NullableModelsSSHLogonsLogonResponse) MarshalJSON ¶

func (v NullableModelsSSHLogonsLogonResponse) MarshalJSON() ([]byte, error)

func (*NullableModelsSSHLogonsLogonResponse) Set ¶

func (*NullableModelsSSHLogonsLogonResponse) UnmarshalJSON ¶

func (v *NullableModelsSSHLogonsLogonResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHLogonsLogonResponse) Unset ¶

type NullableModelsSSHServerGroupsServerGroupCreationRequest ¶

type NullableModelsSSHServerGroupsServerGroupCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHServerGroupsServerGroupCreationRequest) Get ¶

func (NullableModelsSSHServerGroupsServerGroupCreationRequest) IsSet ¶

func (NullableModelsSSHServerGroupsServerGroupCreationRequest) MarshalJSON ¶

func (*NullableModelsSSHServerGroupsServerGroupCreationRequest) Set ¶

func (*NullableModelsSSHServerGroupsServerGroupCreationRequest) UnmarshalJSON ¶

func (*NullableModelsSSHServerGroupsServerGroupCreationRequest) Unset ¶

type NullableModelsSSHServerGroupsServerGroupResponse ¶

type NullableModelsSSHServerGroupsServerGroupResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHServerGroupsServerGroupResponse) Get ¶

func (NullableModelsSSHServerGroupsServerGroupResponse) IsSet ¶

func (NullableModelsSSHServerGroupsServerGroupResponse) MarshalJSON ¶

func (*NullableModelsSSHServerGroupsServerGroupResponse) Set ¶

func (*NullableModelsSSHServerGroupsServerGroupResponse) UnmarshalJSON ¶

func (*NullableModelsSSHServerGroupsServerGroupResponse) Unset ¶

type NullableModelsSSHServerGroupsServerGroupUpdateRequest ¶

type NullableModelsSSHServerGroupsServerGroupUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHServerGroupsServerGroupUpdateRequest) Get ¶

func (NullableModelsSSHServerGroupsServerGroupUpdateRequest) IsSet ¶

func (NullableModelsSSHServerGroupsServerGroupUpdateRequest) MarshalJSON ¶

func (*NullableModelsSSHServerGroupsServerGroupUpdateRequest) Set ¶

func (*NullableModelsSSHServerGroupsServerGroupUpdateRequest) UnmarshalJSON ¶

func (*NullableModelsSSHServerGroupsServerGroupUpdateRequest) Unset ¶

type NullableModelsSSHServersServerCreationRequest ¶

type NullableModelsSSHServersServerCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHServersServerCreationRequest) Get ¶

func (NullableModelsSSHServersServerCreationRequest) IsSet ¶

func (NullableModelsSSHServersServerCreationRequest) MarshalJSON ¶

func (*NullableModelsSSHServersServerCreationRequest) Set ¶

func (*NullableModelsSSHServersServerCreationRequest) UnmarshalJSON ¶

func (*NullableModelsSSHServersServerCreationRequest) Unset ¶

type NullableModelsSSHServersServerResponse ¶

type NullableModelsSSHServersServerResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHServersServerResponse) Get ¶

func (NullableModelsSSHServersServerResponse) IsSet ¶

func (NullableModelsSSHServersServerResponse) MarshalJSON ¶

func (v NullableModelsSSHServersServerResponse) MarshalJSON() ([]byte, error)

func (*NullableModelsSSHServersServerResponse) Set ¶

func (*NullableModelsSSHServersServerResponse) UnmarshalJSON ¶

func (v *NullableModelsSSHServersServerResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHServersServerResponse) Unset ¶

type NullableModelsSSHServersServerUpdateRequest ¶

type NullableModelsSSHServersServerUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHServersServerUpdateRequest) Get ¶

func (NullableModelsSSHServersServerUpdateRequest) IsSet ¶

func (NullableModelsSSHServersServerUpdateRequest) MarshalJSON ¶

func (*NullableModelsSSHServersServerUpdateRequest) Set ¶

func (*NullableModelsSSHServersServerUpdateRequest) UnmarshalJSON ¶

func (v *NullableModelsSSHServersServerUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHServersServerUpdateRequest) Unset ¶

type NullableModelsSSHServiceAccountsServiceAccountCreationRequest ¶

type NullableModelsSSHServiceAccountsServiceAccountCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHServiceAccountsServiceAccountCreationRequest) Get ¶

func (NullableModelsSSHServiceAccountsServiceAccountCreationRequest) IsSet ¶

func (NullableModelsSSHServiceAccountsServiceAccountCreationRequest) MarshalJSON ¶

func (*NullableModelsSSHServiceAccountsServiceAccountCreationRequest) Set ¶

func (*NullableModelsSSHServiceAccountsServiceAccountCreationRequest) UnmarshalJSON ¶

func (*NullableModelsSSHServiceAccountsServiceAccountCreationRequest) Unset ¶

type NullableModelsSSHServiceAccountsServiceAccountResponse ¶

type NullableModelsSSHServiceAccountsServiceAccountResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHServiceAccountsServiceAccountResponse) Get ¶

func (NullableModelsSSHServiceAccountsServiceAccountResponse) IsSet ¶

func (NullableModelsSSHServiceAccountsServiceAccountResponse) MarshalJSON ¶

func (*NullableModelsSSHServiceAccountsServiceAccountResponse) Set ¶

func (*NullableModelsSSHServiceAccountsServiceAccountResponse) UnmarshalJSON ¶

func (*NullableModelsSSHServiceAccountsServiceAccountResponse) Unset ¶

type NullableModelsSSHServiceAccountsServiceAccountUpdateRequest ¶

type NullableModelsSSHServiceAccountsServiceAccountUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHServiceAccountsServiceAccountUpdateRequest) Get ¶

func (NullableModelsSSHServiceAccountsServiceAccountUpdateRequest) IsSet ¶

func (NullableModelsSSHServiceAccountsServiceAccountUpdateRequest) MarshalJSON ¶

func (*NullableModelsSSHServiceAccountsServiceAccountUpdateRequest) Set ¶

func (*NullableModelsSSHServiceAccountsServiceAccountUpdateRequest) UnmarshalJSON ¶

func (*NullableModelsSSHServiceAccountsServiceAccountUpdateRequest) Unset ¶

type NullableModelsSSHServiceAccountsServiceAccountUserCreationRequest ¶

type NullableModelsSSHServiceAccountsServiceAccountUserCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHServiceAccountsServiceAccountUserCreationRequest) Get ¶

func (NullableModelsSSHServiceAccountsServiceAccountUserCreationRequest) IsSet ¶

func (NullableModelsSSHServiceAccountsServiceAccountUserCreationRequest) MarshalJSON ¶

func (*NullableModelsSSHServiceAccountsServiceAccountUserCreationRequest) Set ¶

func (*NullableModelsSSHServiceAccountsServiceAccountUserCreationRequest) UnmarshalJSON ¶

func (*NullableModelsSSHServiceAccountsServiceAccountUserCreationRequest) Unset ¶

type NullableModelsSSHUsersSshUserAccessResponse ¶

type NullableModelsSSHUsersSshUserAccessResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHUsersSshUserAccessResponse) Get ¶

func (NullableModelsSSHUsersSshUserAccessResponse) IsSet ¶

func (NullableModelsSSHUsersSshUserAccessResponse) MarshalJSON ¶

func (*NullableModelsSSHUsersSshUserAccessResponse) Set ¶

func (*NullableModelsSSHUsersSshUserAccessResponse) UnmarshalJSON ¶

func (v *NullableModelsSSHUsersSshUserAccessResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHUsersSshUserAccessResponse) Unset ¶

type NullableModelsSSHUsersSshUserCreationRequest ¶

type NullableModelsSSHUsersSshUserCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHUsersSshUserCreationRequest) Get ¶

func (NullableModelsSSHUsersSshUserCreationRequest) IsSet ¶

func (NullableModelsSSHUsersSshUserCreationRequest) MarshalJSON ¶

func (*NullableModelsSSHUsersSshUserCreationRequest) Set ¶

func (*NullableModelsSSHUsersSshUserCreationRequest) UnmarshalJSON ¶

func (*NullableModelsSSHUsersSshUserCreationRequest) Unset ¶

type NullableModelsSSHUsersSshUserResponse ¶

type NullableModelsSSHUsersSshUserResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHUsersSshUserResponse) Get ¶

func (NullableModelsSSHUsersSshUserResponse) IsSet ¶

func (NullableModelsSSHUsersSshUserResponse) MarshalJSON ¶

func (v NullableModelsSSHUsersSshUserResponse) MarshalJSON() ([]byte, error)

func (*NullableModelsSSHUsersSshUserResponse) Set ¶

func (*NullableModelsSSHUsersSshUserResponse) UnmarshalJSON ¶

func (v *NullableModelsSSHUsersSshUserResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHUsersSshUserResponse) Unset ¶

type NullableModelsSSHUsersSshUserUpdateRequest ¶

type NullableModelsSSHUsersSshUserUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSHUsersSshUserUpdateRequest) Get ¶

func (NullableModelsSSHUsersSshUserUpdateRequest) IsSet ¶

func (NullableModelsSSHUsersSshUserUpdateRequest) MarshalJSON ¶

func (*NullableModelsSSHUsersSshUserUpdateRequest) Set ¶

func (*NullableModelsSSHUsersSshUserUpdateRequest) UnmarshalJSON ¶

func (v *NullableModelsSSHUsersSshUserUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsSSHUsersSshUserUpdateRequest) Unset ¶

type NullableModelsSSLDisplayScanJobPart ¶

type NullableModelsSSLDisplayScanJobPart struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSLDisplayScanJobPart) Get ¶

func (NullableModelsSSLDisplayScanJobPart) IsSet ¶

func (NullableModelsSSLDisplayScanJobPart) MarshalJSON ¶

func (v NullableModelsSSLDisplayScanJobPart) MarshalJSON() ([]byte, error)

func (*NullableModelsSSLDisplayScanJobPart) Set ¶

func (*NullableModelsSSLDisplayScanJobPart) UnmarshalJSON ¶

func (v *NullableModelsSSLDisplayScanJobPart) UnmarshalJSON(src []byte) error

func (*NullableModelsSSLDisplayScanJobPart) Unset ¶

type NullableModelsSSLEndpoint ¶

type NullableModelsSSLEndpoint struct {
	// contains filtered or unexported fields
}

func NewNullableModelsSSLEndpoint ¶

func NewNullableModelsSSLEndpoint(val *ModelsSSLEndpoint) *NullableModelsSSLEndpoint

func (NullableModelsSSLEndpoint) Get ¶

func (NullableModelsSSLEndpoint) IsSet ¶

func (v NullableModelsSSLEndpoint) IsSet() bool

func (NullableModelsSSLEndpoint) MarshalJSON ¶

func (v NullableModelsSSLEndpoint) MarshalJSON() ([]byte, error)

func (*NullableModelsSSLEndpoint) Set ¶

func (*NullableModelsSSLEndpoint) UnmarshalJSON ¶

func (v *NullableModelsSSLEndpoint) UnmarshalJSON(src []byte) error

func (*NullableModelsSSLEndpoint) Unset ¶

func (v *NullableModelsSSLEndpoint) Unset()

type NullableModelsSSLEndpointHistoryResponse ¶

type NullableModelsSSLEndpointHistoryResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSLEndpointHistoryResponse) Get ¶

func (NullableModelsSSLEndpointHistoryResponse) IsSet ¶

func (NullableModelsSSLEndpointHistoryResponse) MarshalJSON ¶

func (*NullableModelsSSLEndpointHistoryResponse) Set ¶

func (*NullableModelsSSLEndpointHistoryResponse) UnmarshalJSON ¶

func (v *NullableModelsSSLEndpointHistoryResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsSSLEndpointHistoryResponse) Unset ¶

type NullableModelsSSLEndpointHistoryResponseCertificateModel ¶

type NullableModelsSSLEndpointHistoryResponseCertificateModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSLEndpointHistoryResponseCertificateModel) Get ¶

func (NullableModelsSSLEndpointHistoryResponseCertificateModel) IsSet ¶

func (NullableModelsSSLEndpointHistoryResponseCertificateModel) MarshalJSON ¶

func (*NullableModelsSSLEndpointHistoryResponseCertificateModel) Set ¶

func (*NullableModelsSSLEndpointHistoryResponseCertificateModel) UnmarshalJSON ¶

func (*NullableModelsSSLEndpointHistoryResponseCertificateModel) Unset ¶

type NullableModelsSSLEndpointStatusRequest ¶

type NullableModelsSSLEndpointStatusRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSLEndpointStatusRequest) Get ¶

func (NullableModelsSSLEndpointStatusRequest) IsSet ¶

func (NullableModelsSSLEndpointStatusRequest) MarshalJSON ¶

func (v NullableModelsSSLEndpointStatusRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsSSLEndpointStatusRequest) Set ¶

func (*NullableModelsSSLEndpointStatusRequest) UnmarshalJSON ¶

func (v *NullableModelsSSLEndpointStatusRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsSSLEndpointStatusRequest) Unset ¶

type NullableModelsSSLImmediateSslScanRequest ¶

type NullableModelsSSLImmediateSslScanRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSLImmediateSslScanRequest) Get ¶

func (NullableModelsSSLImmediateSslScanRequest) IsSet ¶

func (NullableModelsSSLImmediateSslScanRequest) MarshalJSON ¶

func (*NullableModelsSSLImmediateSslScanRequest) Set ¶

func (*NullableModelsSSLImmediateSslScanRequest) UnmarshalJSON ¶

func (v *NullableModelsSSLImmediateSslScanRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsSSLImmediateSslScanRequest) Unset ¶

type NullableModelsSSLNetworkDefinition ¶

type NullableModelsSSLNetworkDefinition struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSLNetworkDefinition) Get ¶

func (NullableModelsSSLNetworkDefinition) IsSet ¶

func (NullableModelsSSLNetworkDefinition) MarshalJSON ¶

func (v NullableModelsSSLNetworkDefinition) MarshalJSON() ([]byte, error)

func (*NullableModelsSSLNetworkDefinition) Set ¶

func (*NullableModelsSSLNetworkDefinition) UnmarshalJSON ¶

func (v *NullableModelsSSLNetworkDefinition) UnmarshalJSON(src []byte) error

func (*NullableModelsSSLNetworkDefinition) Unset ¶

type NullableModelsSSLNetworkRangesRequest ¶

type NullableModelsSSLNetworkRangesRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSLNetworkRangesRequest) Get ¶

func (NullableModelsSSLNetworkRangesRequest) IsSet ¶

func (NullableModelsSSLNetworkRangesRequest) MarshalJSON ¶

func (v NullableModelsSSLNetworkRangesRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsSSLNetworkRangesRequest) Set ¶

func (*NullableModelsSSLNetworkRangesRequest) UnmarshalJSON ¶

func (v *NullableModelsSSLNetworkRangesRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsSSLNetworkRangesRequest) Unset ¶

type NullableModelsSSLScanJobPart ¶

type NullableModelsSSLScanJobPart struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSLScanJobPart) Get ¶

func (NullableModelsSSLScanJobPart) IsSet ¶

func (NullableModelsSSLScanJobPart) MarshalJSON ¶

func (v NullableModelsSSLScanJobPart) MarshalJSON() ([]byte, error)

func (*NullableModelsSSLScanJobPart) Set ¶

func (*NullableModelsSSLScanJobPart) UnmarshalJSON ¶

func (v *NullableModelsSSLScanJobPart) UnmarshalJSON(src []byte) error

func (*NullableModelsSSLScanJobPart) Unset ¶

func (v *NullableModelsSSLScanJobPart) Unset()

type NullableModelsSSLScanJobPartDefinition ¶

type NullableModelsSSLScanJobPartDefinition struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSLScanJobPartDefinition) Get ¶

func (NullableModelsSSLScanJobPartDefinition) IsSet ¶

func (NullableModelsSSLScanJobPartDefinition) MarshalJSON ¶

func (v NullableModelsSSLScanJobPartDefinition) MarshalJSON() ([]byte, error)

func (*NullableModelsSSLScanJobPartDefinition) Set ¶

func (*NullableModelsSSLScanJobPartDefinition) UnmarshalJSON ¶

func (v *NullableModelsSSLScanJobPartDefinition) UnmarshalJSON(src []byte) error

func (*NullableModelsSSLScanJobPartDefinition) Unset ¶

type NullableModelsSSLSslScanResult ¶

type NullableModelsSSLSslScanResult struct {
	// contains filtered or unexported fields
}

func (NullableModelsSSLSslScanResult) Get ¶

func (NullableModelsSSLSslScanResult) IsSet ¶

func (NullableModelsSSLSslScanResult) MarshalJSON ¶

func (v NullableModelsSSLSslScanResult) MarshalJSON() ([]byte, error)

func (*NullableModelsSSLSslScanResult) Set ¶

func (*NullableModelsSSLSslScanResult) UnmarshalJSON ¶

func (v *NullableModelsSSLSslScanResult) UnmarshalJSON(src []byte) error

func (*NullableModelsSSLSslScanResult) Unset ¶

func (v *NullableModelsSSLSslScanResult) Unset()

type NullableModelsSecurityCertificatePermissions ¶

type NullableModelsSecurityCertificatePermissions struct {
	// contains filtered or unexported fields
}

func (NullableModelsSecurityCertificatePermissions) Get ¶

func (NullableModelsSecurityCertificatePermissions) IsSet ¶

func (NullableModelsSecurityCertificatePermissions) MarshalJSON ¶

func (*NullableModelsSecurityCertificatePermissions) Set ¶

func (*NullableModelsSecurityCertificatePermissions) UnmarshalJSON ¶

func (*NullableModelsSecurityCertificatePermissions) Unset ¶

type NullableModelsSecurityIdentitiesPermissionRolesPairResponse ¶

type NullableModelsSecurityIdentitiesPermissionRolesPairResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSecurityIdentitiesPermissionRolesPairResponse) Get ¶

func (NullableModelsSecurityIdentitiesPermissionRolesPairResponse) IsSet ¶

func (NullableModelsSecurityIdentitiesPermissionRolesPairResponse) MarshalJSON ¶

func (*NullableModelsSecurityIdentitiesPermissionRolesPairResponse) Set ¶

func (*NullableModelsSecurityIdentitiesPermissionRolesPairResponse) UnmarshalJSON ¶

func (*NullableModelsSecurityIdentitiesPermissionRolesPairResponse) Unset ¶

type NullableModelsSecurityIdentitiesSecurityIdentityIdentifier ¶

type NullableModelsSecurityIdentitiesSecurityIdentityIdentifier struct {
	// contains filtered or unexported fields
}

func (NullableModelsSecurityIdentitiesSecurityIdentityIdentifier) Get ¶

func (NullableModelsSecurityIdentitiesSecurityIdentityIdentifier) IsSet ¶

func (NullableModelsSecurityIdentitiesSecurityIdentityIdentifier) MarshalJSON ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityIdentifier) Set ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityIdentifier) UnmarshalJSON ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityIdentifier) Unset ¶

type NullableModelsSecurityIdentitiesSecurityIdentityLookupResponse ¶

type NullableModelsSecurityIdentitiesSecurityIdentityLookupResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSecurityIdentitiesSecurityIdentityLookupResponse) Get ¶

func (NullableModelsSecurityIdentitiesSecurityIdentityLookupResponse) IsSet ¶

func (NullableModelsSecurityIdentitiesSecurityIdentityLookupResponse) MarshalJSON ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityLookupResponse) Set ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityLookupResponse) UnmarshalJSON ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityLookupResponse) Unset ¶

type NullableModelsSecurityIdentitiesSecurityIdentityPermissionsResponse ¶

type NullableModelsSecurityIdentitiesSecurityIdentityPermissionsResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) Get ¶

func (NullableModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) IsSet ¶

func (NullableModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) MarshalJSON ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) Set ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) UnmarshalJSON ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityPermissionsResponse) Unset ¶

type NullableModelsSecurityIdentitiesSecurityIdentityRequest ¶

type NullableModelsSecurityIdentitiesSecurityIdentityRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSecurityIdentitiesSecurityIdentityRequest) Get ¶

func (NullableModelsSecurityIdentitiesSecurityIdentityRequest) IsSet ¶

func (NullableModelsSecurityIdentitiesSecurityIdentityRequest) MarshalJSON ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityRequest) Set ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityRequest) UnmarshalJSON ¶

func (*NullableModelsSecurityIdentitiesSecurityIdentityRequest) Unset ¶

type NullableModelsSecuritySecurityRolesSecurityRoleCreationRequest ¶

type NullableModelsSecuritySecurityRolesSecurityRoleCreationRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSecuritySecurityRolesSecurityRoleCreationRequest) Get ¶

func (NullableModelsSecuritySecurityRolesSecurityRoleCreationRequest) IsSet ¶

func (NullableModelsSecuritySecurityRolesSecurityRoleCreationRequest) MarshalJSON ¶

func (*NullableModelsSecuritySecurityRolesSecurityRoleCreationRequest) Set ¶

func (*NullableModelsSecuritySecurityRolesSecurityRoleCreationRequest) UnmarshalJSON ¶

func (*NullableModelsSecuritySecurityRolesSecurityRoleCreationRequest) Unset ¶

type NullableModelsSecuritySecurityRolesSecurityRoleResponseBase ¶

type NullableModelsSecuritySecurityRolesSecurityRoleResponseBase struct {
	// contains filtered or unexported fields
}

func (NullableModelsSecuritySecurityRolesSecurityRoleResponseBase) Get ¶

func (NullableModelsSecuritySecurityRolesSecurityRoleResponseBase) IsSet ¶

func (NullableModelsSecuritySecurityRolesSecurityRoleResponseBase) MarshalJSON ¶

func (*NullableModelsSecuritySecurityRolesSecurityRoleResponseBase) Set ¶

func (*NullableModelsSecuritySecurityRolesSecurityRoleResponseBase) UnmarshalJSON ¶

func (*NullableModelsSecuritySecurityRolesSecurityRoleResponseBase) Unset ¶

type NullableModelsSecuritySecurityRolesSecurityRoleUpdateRequest ¶

type NullableModelsSecuritySecurityRolesSecurityRoleUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsSecuritySecurityRolesSecurityRoleUpdateRequest) Get ¶

func (NullableModelsSecuritySecurityRolesSecurityRoleUpdateRequest) IsSet ¶

func (NullableModelsSecuritySecurityRolesSecurityRoleUpdateRequest) MarshalJSON ¶

func (*NullableModelsSecuritySecurityRolesSecurityRoleUpdateRequest) Set ¶

func (*NullableModelsSecuritySecurityRolesSecurityRoleUpdateRequest) UnmarshalJSON ¶

func (*NullableModelsSecuritySecurityRolesSecurityRoleUpdateRequest) Unset ¶

type NullableModelsSubjectAlternativeName ¶

type NullableModelsSubjectAlternativeName struct {
	// contains filtered or unexported fields
}

func (NullableModelsSubjectAlternativeName) Get ¶

func (NullableModelsSubjectAlternativeName) IsSet ¶

func (NullableModelsSubjectAlternativeName) MarshalJSON ¶

func (v NullableModelsSubjectAlternativeName) MarshalJSON() ([]byte, error)

func (*NullableModelsSubjectAlternativeName) Set ¶

func (*NullableModelsSubjectAlternativeName) UnmarshalJSON ¶

func (v *NullableModelsSubjectAlternativeName) UnmarshalJSON(src []byte) error

func (*NullableModelsSubjectAlternativeName) Unset ¶

type NullableModelsTemplateCollectionRetrievalResponse ¶

type NullableModelsTemplateCollectionRetrievalResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateCollectionRetrievalResponse) Get ¶

func (NullableModelsTemplateCollectionRetrievalResponse) IsSet ¶

func (NullableModelsTemplateCollectionRetrievalResponse) MarshalJSON ¶

func (*NullableModelsTemplateCollectionRetrievalResponse) Set ¶

func (*NullableModelsTemplateCollectionRetrievalResponse) UnmarshalJSON ¶

func (*NullableModelsTemplateCollectionRetrievalResponse) Unset ¶

type NullableModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel ¶

type NullableModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) Get ¶

func (NullableModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) IsSet ¶

func (NullableModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) MarshalJSON ¶

func (*NullableModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) Set ¶

func (*NullableModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) UnmarshalJSON ¶

func (*NullableModelsTemplateCollectionRetrievalResponseExtendedKeyUsageModel) Unset ¶

type NullableModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel ¶

type NullableModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) Get ¶

func (NullableModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) IsSet ¶

func (NullableModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) MarshalJSON ¶

func (*NullableModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) Set ¶

func (*NullableModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) UnmarshalJSON ¶

func (*NullableModelsTemplateCollectionRetrievalResponseTemplateEnrollmentFieldModel) Unset ¶

type NullableModelsTemplateCollectionRetrievalResponseTemplateRegexModel ¶

type NullableModelsTemplateCollectionRetrievalResponseTemplateRegexModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateCollectionRetrievalResponseTemplateRegexModel) Get ¶

func (NullableModelsTemplateCollectionRetrievalResponseTemplateRegexModel) IsSet ¶

func (NullableModelsTemplateCollectionRetrievalResponseTemplateRegexModel) MarshalJSON ¶

func (*NullableModelsTemplateCollectionRetrievalResponseTemplateRegexModel) Set ¶

func (*NullableModelsTemplateCollectionRetrievalResponseTemplateRegexModel) UnmarshalJSON ¶

func (*NullableModelsTemplateCollectionRetrievalResponseTemplateRegexModel) Unset ¶

type NullableModelsTemplateEnrollmentField ¶

type NullableModelsTemplateEnrollmentField struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateEnrollmentField) Get ¶

func (NullableModelsTemplateEnrollmentField) IsSet ¶

func (NullableModelsTemplateEnrollmentField) MarshalJSON ¶

func (v NullableModelsTemplateEnrollmentField) MarshalJSON() ([]byte, error)

func (*NullableModelsTemplateEnrollmentField) Set ¶

func (*NullableModelsTemplateEnrollmentField) UnmarshalJSON ¶

func (v *NullableModelsTemplateEnrollmentField) UnmarshalJSON(src []byte) error

func (*NullableModelsTemplateEnrollmentField) Unset ¶

type NullableModelsTemplateMetadataField ¶

type NullableModelsTemplateMetadataField struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateMetadataField) Get ¶

func (NullableModelsTemplateMetadataField) IsSet ¶

func (NullableModelsTemplateMetadataField) MarshalJSON ¶

func (v NullableModelsTemplateMetadataField) MarshalJSON() ([]byte, error)

func (*NullableModelsTemplateMetadataField) Set ¶

func (*NullableModelsTemplateMetadataField) UnmarshalJSON ¶

func (v *NullableModelsTemplateMetadataField) UnmarshalJSON(src []byte) error

func (*NullableModelsTemplateMetadataField) Unset ¶

type NullableModelsTemplateRegex ¶

type NullableModelsTemplateRegex struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateRegex) Get ¶

func (NullableModelsTemplateRegex) IsSet ¶

func (NullableModelsTemplateRegex) MarshalJSON ¶

func (v NullableModelsTemplateRegex) MarshalJSON() ([]byte, error)

func (*NullableModelsTemplateRegex) Set ¶

func (*NullableModelsTemplateRegex) UnmarshalJSON ¶

func (v *NullableModelsTemplateRegex) UnmarshalJSON(src []byte) error

func (*NullableModelsTemplateRegex) Unset ¶

func (v *NullableModelsTemplateRegex) Unset()

type NullableModelsTemplateRetrievalResponse ¶

type NullableModelsTemplateRetrievalResponse struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateRetrievalResponse) Get ¶

func (NullableModelsTemplateRetrievalResponse) IsSet ¶

func (NullableModelsTemplateRetrievalResponse) MarshalJSON ¶

func (v NullableModelsTemplateRetrievalResponse) MarshalJSON() ([]byte, error)

func (*NullableModelsTemplateRetrievalResponse) Set ¶

func (*NullableModelsTemplateRetrievalResponse) UnmarshalJSON ¶

func (v *NullableModelsTemplateRetrievalResponse) UnmarshalJSON(src []byte) error

func (*NullableModelsTemplateRetrievalResponse) Unset ¶

type NullableModelsTemplateRetrievalResponseExtendedKeyUsageModel ¶

type NullableModelsTemplateRetrievalResponseExtendedKeyUsageModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateRetrievalResponseExtendedKeyUsageModel) Get ¶

func (NullableModelsTemplateRetrievalResponseExtendedKeyUsageModel) IsSet ¶

func (NullableModelsTemplateRetrievalResponseExtendedKeyUsageModel) MarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseExtendedKeyUsageModel) Set ¶

func (*NullableModelsTemplateRetrievalResponseExtendedKeyUsageModel) UnmarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseExtendedKeyUsageModel) Unset ¶

type NullableModelsTemplateRetrievalResponseTemplateDefaultModel ¶

type NullableModelsTemplateRetrievalResponseTemplateDefaultModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateRetrievalResponseTemplateDefaultModel) Get ¶

func (NullableModelsTemplateRetrievalResponseTemplateDefaultModel) IsSet ¶

func (NullableModelsTemplateRetrievalResponseTemplateDefaultModel) MarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseTemplateDefaultModel) Set ¶

func (*NullableModelsTemplateRetrievalResponseTemplateDefaultModel) UnmarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseTemplateDefaultModel) Unset ¶

type NullableModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel ¶

type NullableModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) Get ¶

func (NullableModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) IsSet ¶

func (NullableModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) MarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) Set ¶

func (*NullableModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) UnmarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseTemplateEnrollmentFieldModel) Unset ¶

type NullableModelsTemplateRetrievalResponseTemplateMetadataFieldModel ¶

type NullableModelsTemplateRetrievalResponseTemplateMetadataFieldModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateRetrievalResponseTemplateMetadataFieldModel) Get ¶

func (NullableModelsTemplateRetrievalResponseTemplateMetadataFieldModel) IsSet ¶

func (NullableModelsTemplateRetrievalResponseTemplateMetadataFieldModel) MarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseTemplateMetadataFieldModel) Set ¶

func (*NullableModelsTemplateRetrievalResponseTemplateMetadataFieldModel) UnmarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseTemplateMetadataFieldModel) Unset ¶

type NullableModelsTemplateRetrievalResponseTemplatePolicyModel ¶

type NullableModelsTemplateRetrievalResponseTemplatePolicyModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateRetrievalResponseTemplatePolicyModel) Get ¶

func (NullableModelsTemplateRetrievalResponseTemplatePolicyModel) IsSet ¶

func (NullableModelsTemplateRetrievalResponseTemplatePolicyModel) MarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseTemplatePolicyModel) Set ¶

func (*NullableModelsTemplateRetrievalResponseTemplatePolicyModel) UnmarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseTemplatePolicyModel) Unset ¶

type NullableModelsTemplateRetrievalResponseTemplateRegexModel ¶

type NullableModelsTemplateRetrievalResponseTemplateRegexModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateRetrievalResponseTemplateRegexModel) Get ¶

func (NullableModelsTemplateRetrievalResponseTemplateRegexModel) IsSet ¶

func (NullableModelsTemplateRetrievalResponseTemplateRegexModel) MarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseTemplateRegexModel) Set ¶

func (*NullableModelsTemplateRetrievalResponseTemplateRegexModel) UnmarshalJSON ¶

func (*NullableModelsTemplateRetrievalResponseTemplateRegexModel) Unset ¶

type NullableModelsTemplateUpdateRequest ¶

type NullableModelsTemplateUpdateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateUpdateRequest) Get ¶

func (NullableModelsTemplateUpdateRequest) IsSet ¶

func (NullableModelsTemplateUpdateRequest) MarshalJSON ¶

func (v NullableModelsTemplateUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsTemplateUpdateRequest) Set ¶

func (*NullableModelsTemplateUpdateRequest) UnmarshalJSON ¶

func (v *NullableModelsTemplateUpdateRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsTemplateUpdateRequest) Unset ¶

type NullableModelsTemplateUpdateRequestTemplateDefaultModel ¶

type NullableModelsTemplateUpdateRequestTemplateDefaultModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateUpdateRequestTemplateDefaultModel) Get ¶

func (NullableModelsTemplateUpdateRequestTemplateDefaultModel) IsSet ¶

func (NullableModelsTemplateUpdateRequestTemplateDefaultModel) MarshalJSON ¶

func (*NullableModelsTemplateUpdateRequestTemplateDefaultModel) Set ¶

func (*NullableModelsTemplateUpdateRequestTemplateDefaultModel) UnmarshalJSON ¶

func (*NullableModelsTemplateUpdateRequestTemplateDefaultModel) Unset ¶

type NullableModelsTemplateUpdateRequestTemplateEnrollmentFieldModel ¶

type NullableModelsTemplateUpdateRequestTemplateEnrollmentFieldModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) Get ¶

func (NullableModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) IsSet ¶

func (NullableModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) MarshalJSON ¶

func (*NullableModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) Set ¶

func (*NullableModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) UnmarshalJSON ¶

func (*NullableModelsTemplateUpdateRequestTemplateEnrollmentFieldModel) Unset ¶

type NullableModelsTemplateUpdateRequestTemplateMetadataFieldModel ¶

type NullableModelsTemplateUpdateRequestTemplateMetadataFieldModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateUpdateRequestTemplateMetadataFieldModel) Get ¶

func (NullableModelsTemplateUpdateRequestTemplateMetadataFieldModel) IsSet ¶

func (NullableModelsTemplateUpdateRequestTemplateMetadataFieldModel) MarshalJSON ¶

func (*NullableModelsTemplateUpdateRequestTemplateMetadataFieldModel) Set ¶

func (*NullableModelsTemplateUpdateRequestTemplateMetadataFieldModel) UnmarshalJSON ¶

func (*NullableModelsTemplateUpdateRequestTemplateMetadataFieldModel) Unset ¶

type NullableModelsTemplateUpdateRequestTemplatePolicyModel ¶

type NullableModelsTemplateUpdateRequestTemplatePolicyModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateUpdateRequestTemplatePolicyModel) Get ¶

func (NullableModelsTemplateUpdateRequestTemplatePolicyModel) IsSet ¶

func (NullableModelsTemplateUpdateRequestTemplatePolicyModel) MarshalJSON ¶

func (*NullableModelsTemplateUpdateRequestTemplatePolicyModel) Set ¶

func (*NullableModelsTemplateUpdateRequestTemplatePolicyModel) UnmarshalJSON ¶

func (*NullableModelsTemplateUpdateRequestTemplatePolicyModel) Unset ¶

type NullableModelsTemplateUpdateRequestTemplateRegexModel ¶

type NullableModelsTemplateUpdateRequestTemplateRegexModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsTemplateUpdateRequestTemplateRegexModel) Get ¶

func (NullableModelsTemplateUpdateRequestTemplateRegexModel) IsSet ¶

func (NullableModelsTemplateUpdateRequestTemplateRegexModel) MarshalJSON ¶

func (*NullableModelsTemplateUpdateRequestTemplateRegexModel) Set ¶

func (*NullableModelsTemplateUpdateRequestTemplateRegexModel) UnmarshalJSON ¶

func (*NullableModelsTemplateUpdateRequestTemplateRegexModel) Unset ¶

type NullableModelsWorkflowApproveDenyResult ¶

type NullableModelsWorkflowApproveDenyResult struct {
	// contains filtered or unexported fields
}

func (NullableModelsWorkflowApproveDenyResult) Get ¶

func (NullableModelsWorkflowApproveDenyResult) IsSet ¶

func (NullableModelsWorkflowApproveDenyResult) MarshalJSON ¶

func (v NullableModelsWorkflowApproveDenyResult) MarshalJSON() ([]byte, error)

func (*NullableModelsWorkflowApproveDenyResult) Set ¶

func (*NullableModelsWorkflowApproveDenyResult) UnmarshalJSON ¶

func (v *NullableModelsWorkflowApproveDenyResult) UnmarshalJSON(src []byte) error

func (*NullableModelsWorkflowApproveDenyResult) Unset ¶

type NullableModelsWorkflowCertificateRequestCertStoreModel ¶

type NullableModelsWorkflowCertificateRequestCertStoreModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsWorkflowCertificateRequestCertStoreModel) Get ¶

func (NullableModelsWorkflowCertificateRequestCertStoreModel) IsSet ¶

func (NullableModelsWorkflowCertificateRequestCertStoreModel) MarshalJSON ¶

func (*NullableModelsWorkflowCertificateRequestCertStoreModel) Set ¶

func (*NullableModelsWorkflowCertificateRequestCertStoreModel) UnmarshalJSON ¶

func (*NullableModelsWorkflowCertificateRequestCertStoreModel) Unset ¶

type NullableModelsWorkflowCertificateRequestDetailsModel ¶

type NullableModelsWorkflowCertificateRequestDetailsModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsWorkflowCertificateRequestDetailsModel) Get ¶

func (NullableModelsWorkflowCertificateRequestDetailsModel) IsSet ¶

func (NullableModelsWorkflowCertificateRequestDetailsModel) MarshalJSON ¶

func (*NullableModelsWorkflowCertificateRequestDetailsModel) Set ¶

func (*NullableModelsWorkflowCertificateRequestDetailsModel) UnmarshalJSON ¶

func (*NullableModelsWorkflowCertificateRequestDetailsModel) Unset ¶

type NullableModelsWorkflowCertificateRequestModel ¶

type NullableModelsWorkflowCertificateRequestModel struct {
	// contains filtered or unexported fields
}

func (NullableModelsWorkflowCertificateRequestModel) Get ¶

func (NullableModelsWorkflowCertificateRequestModel) IsSet ¶

func (NullableModelsWorkflowCertificateRequestModel) MarshalJSON ¶

func (*NullableModelsWorkflowCertificateRequestModel) Set ¶

func (*NullableModelsWorkflowCertificateRequestModel) UnmarshalJSON ¶

func (*NullableModelsWorkflowCertificateRequestModel) Unset ¶

type NullableModelsWorkflowDenialRequest ¶

type NullableModelsWorkflowDenialRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsWorkflowDenialRequest) Get ¶

func (NullableModelsWorkflowDenialRequest) IsSet ¶

func (NullableModelsWorkflowDenialRequest) MarshalJSON ¶

func (v NullableModelsWorkflowDenialRequest) MarshalJSON() ([]byte, error)

func (*NullableModelsWorkflowDenialRequest) Set ¶

func (*NullableModelsWorkflowDenialRequest) UnmarshalJSON ¶

func (v *NullableModelsWorkflowDenialRequest) UnmarshalJSON(src []byte) error

func (*NullableModelsWorkflowDenialRequest) Unset ¶

type NullableModelsWorkflowProcessedCertificateRequest ¶

type NullableModelsWorkflowProcessedCertificateRequest struct {
	// contains filtered or unexported fields
}

func (NullableModelsWorkflowProcessedCertificateRequest) Get ¶

func (NullableModelsWorkflowProcessedCertificateRequest) IsSet ¶

func (NullableModelsWorkflowProcessedCertificateRequest) MarshalJSON ¶

func (*NullableModelsWorkflowProcessedCertificateRequest) Set ¶

func (*NullableModelsWorkflowProcessedCertificateRequest) UnmarshalJSON ¶

func (*NullableModelsWorkflowProcessedCertificateRequest) 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 OrchestratorJobApiService ¶

type OrchestratorJobApiService service

OrchestratorJobApiService OrchestratorJobApi service

func (*OrchestratorJobApiService) OrchestratorJobAcknowledgeJobs ¶

OrchestratorJobAcknowledgeJobs Acknowledges orchestrator jobs based on the provided information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorJobAcknowledgeJobsRequest

func (*OrchestratorJobApiService) OrchestratorJobAcknowledgeJobsExecute ¶

func (a *OrchestratorJobApiService) OrchestratorJobAcknowledgeJobsExecute(r ApiOrchestratorJobAcknowledgeJobsRequest) (*http.Response, error)

Execute executes the request

func (*OrchestratorJobApiService) OrchestratorJobGetCustomJobResultData ¶

func (a *OrchestratorJobApiService) OrchestratorJobGetCustomJobResultData(ctx context.Context) ApiOrchestratorJobGetCustomJobResultDataRequest

OrchestratorJobGetCustomJobResultData Retrieves the results of a custom job using the provided information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorJobGetCustomJobResultDataRequest

func (*OrchestratorJobApiService) OrchestratorJobGetCustomJobResultDataExecute ¶

Execute executes the request

@return KeyfactorApiModelsOrchestratorJobsCustomJobResultDataResponse

func (*OrchestratorJobApiService) OrchestratorJobGetJobHistory ¶

OrchestratorJobGetJobHistory Returns all histories of an orchestrator job according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorJobGetJobHistoryRequest

func (*OrchestratorJobApiService) OrchestratorJobGetJobHistoryExecute ¶

Execute executes the request

@return []KeyfactorApiModelsCertificateStoresJobHistoryResponse

func (*OrchestratorJobApiService) OrchestratorJobGetScheduledJobs ¶

OrchestratorJobGetScheduledJobs Returns all scheduled orchestrator jobs according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorJobGetScheduledJobsRequest

func (*OrchestratorJobApiService) OrchestratorJobGetScheduledJobsExecute ¶

Execute executes the request

@return []ModelsOrchestratorJobsJob

func (*OrchestratorJobApiService) OrchestratorJobRescheduleJobs ¶

OrchestratorJobRescheduleJobs Reschedules orchestrator jobs based on the provided information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorJobRescheduleJobsRequest

func (*OrchestratorJobApiService) OrchestratorJobRescheduleJobsExecute ¶

func (a *OrchestratorJobApiService) OrchestratorJobRescheduleJobsExecute(r ApiOrchestratorJobRescheduleJobsRequest) (*http.Response, error)

Execute executes the request

func (*OrchestratorJobApiService) OrchestratorJobScheduleBulkJob ¶

OrchestratorJobScheduleBulkJob Schedules the same job for a custom JobType on the specified agents using the provided information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorJobScheduleBulkJobRequest

func (*OrchestratorJobApiService) OrchestratorJobScheduleBulkJobExecute ¶

Execute executes the request

@return KeyfactorApiModelsOrchestratorJobsBulkJobResponse

func (*OrchestratorJobApiService) OrchestratorJobScheduleJob ¶

OrchestratorJobScheduleJob Schedules a job for a custom JobType on the agent using the provided information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorJobScheduleJobRequest

func (*OrchestratorJobApiService) OrchestratorJobScheduleJobExecute ¶

Execute executes the request

@return KeyfactorApiModelsOrchestratorJobsJobResponse

func (*OrchestratorJobApiService) OrchestratorJobUnscheduleJobs ¶

OrchestratorJobUnscheduleJobs Unschedules orchestrator jobs based on the provided information

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOrchestratorJobUnscheduleJobsRequest

func (*OrchestratorJobApiService) OrchestratorJobUnscheduleJobsExecute ¶

func (a *OrchestratorJobApiService) OrchestratorJobUnscheduleJobsExecute(r ApiOrchestratorJobUnscheduleJobsRequest) (*http.Response, error)

Execute executes the request

type PAMProviderApiService ¶

type PAMProviderApiService service

PAMProviderApiService PAMProviderApi service

func (*PAMProviderApiService) PAMProviderCreatePamProvider ¶ added in v0.2.0

func (a *PAMProviderApiService) PAMProviderCreatePamProvider(ctx context.Context) ApiPAMProviderCreatePamProviderRequest

PAMProviderCreatePamProvider Creates a new PAM provider with the associated properties

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPAMProviderCreatePamProviderRequest

func (*PAMProviderApiService) PAMProviderCreatePamProviderExecute ¶ added in v0.2.0

Execute executes the request

@return CSSCMSDataModelModelsProvider

func (*PAMProviderApiService) PAMProviderCreatePamProviderType ¶

func (a *PAMProviderApiService) PAMProviderCreatePamProviderType(ctx context.Context) ApiPAMProviderCreatePamProviderTypeRequest

PAMProviderCreatePamProviderType Creates a new PAM provider type with the associated properties

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPAMProviderCreatePamProviderTypeRequest

func (*PAMProviderApiService) PAMProviderCreatePamProviderTypeExecute ¶

Execute executes the request

@return KeyfactorApiPAMProviderTypeResponse

func (*PAMProviderApiService) PAMProviderDeletePamProvider ¶

func (a *PAMProviderApiService) PAMProviderDeletePamProvider(ctx context.Context, id int32) ApiPAMProviderDeletePamProviderRequest

PAMProviderDeletePamProvider Deletes a PAM Provider

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the PAM provider to be deleted
@return ApiPAMProviderDeletePamProviderRequest

func (*PAMProviderApiService) PAMProviderDeletePamProviderExecute ¶

func (a *PAMProviderApiService) PAMProviderDeletePamProviderExecute(r ApiPAMProviderDeletePamProviderRequest) (*http.Response, error)

Execute executes the request

func (*PAMProviderApiService) PAMProviderGetPamProvider ¶ added in v0.2.0

func (a *PAMProviderApiService) PAMProviderGetPamProvider(ctx context.Context, id int32) ApiPAMProviderGetPamProviderRequest

PAMProviderGetPamProvider Returns a single PAM Provider that matches the associated id

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the PAM provider
@return ApiPAMProviderGetPamProviderRequest

func (*PAMProviderApiService) PAMProviderGetPamProviderExecute ¶ added in v0.2.0

Execute executes the request

@return CSSCMSDataModelModelsProvider

func (*PAMProviderApiService) PAMProviderGetPamProviderTypes ¶ added in v0.2.0

func (a *PAMProviderApiService) PAMProviderGetPamProviderTypes(ctx context.Context) ApiPAMProviderGetPamProviderTypesRequest

PAMProviderGetPamProviderTypes Returns all PAM providers in the Keyfactor instance

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPAMProviderGetPamProviderTypesRequest

func (*PAMProviderApiService) PAMProviderGetPamProviderTypesExecute ¶ added in v0.2.0

Execute executes the request

@return []CSSCMSDataModelModelsProviderType

func (*PAMProviderApiService) PAMProviderGetPamProviders ¶ added in v0.2.0

PAMProviderGetPamProviders Returns all PAM providers according to the provided filter and output parameters

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPAMProviderGetPamProvidersRequest

func (*PAMProviderApiService) PAMProviderGetPamProvidersExecute ¶ added in v0.2.0

Execute executes the request

@return []CSSCMSDataModelModelsProvider

func (*PAMProviderApiService) PAMProviderUpdatePamProvider ¶ added in v0.2.0

func (a *PAMProviderApiService) PAMProviderUpdatePamProvider(ctx context.Context) ApiPAMProviderUpdatePamProviderRequest

PAMProviderUpdatePamProvider Updates an existing PAM provider according to the provided properties

### PAM Provider Data Types ### | Value | Description | |--------------------|---------------------------| | 1 | string | | 2 | secret |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPAMProviderUpdatePamProviderRequest

func (*PAMProviderApiService) PAMProviderUpdatePamProviderExecute ¶ added in v0.2.0

Execute executes the request

@return CSSCMSDataModelModelsProvider

type PendingAlertApiService ¶

type PendingAlertApiService service

PendingAlertApiService PendingAlertApi service

func (*PendingAlertApiService) PendingAlertAddPendingAlert ¶

PendingAlertAddPendingAlert Add a pending alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPendingAlertAddPendingAlertRequest

func (*PendingAlertApiService) PendingAlertAddPendingAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse

func (*PendingAlertApiService) PendingAlertDeletePendingAlert ¶

func (a *PendingAlertApiService) PendingAlertDeletePendingAlert(ctx context.Context, id int32) ApiPendingAlertDeletePendingAlertRequest

PendingAlertDeletePendingAlert Delete a pending alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the pending alert
@return ApiPendingAlertDeletePendingAlertRequest

func (*PendingAlertApiService) PendingAlertDeletePendingAlertExecute ¶

func (a *PendingAlertApiService) PendingAlertDeletePendingAlertExecute(r ApiPendingAlertDeletePendingAlertRequest) (*http.Response, error)

Execute executes the request

func (*PendingAlertApiService) PendingAlertEditPendingAlert ¶

PendingAlertEditPendingAlert Edit a pending alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPendingAlertEditPendingAlertRequest

func (*PendingAlertApiService) PendingAlertEditPendingAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse

func (*PendingAlertApiService) PendingAlertEditSchedule ¶

PendingAlertEditSchedule Edit schedule

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPendingAlertEditScheduleRequest

func (*PendingAlertApiService) PendingAlertEditScheduleExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse

func (*PendingAlertApiService) PendingAlertGetPendingAlert ¶

func (a *PendingAlertApiService) PendingAlertGetPendingAlert(ctx context.Context, id int32) ApiPendingAlertGetPendingAlertRequest

PendingAlertGetPendingAlert Get a pending alert

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id for the pending alert to get
@return ApiPendingAlertGetPendingAlertRequest

func (*PendingAlertApiService) PendingAlertGetPendingAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse

func (*PendingAlertApiService) PendingAlertGetPendingAlerts ¶

PendingAlertGetPendingAlerts Gets all pending alerts according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPendingAlertGetPendingAlertsRequest

func (*PendingAlertApiService) PendingAlertGetPendingAlertsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsAlertsPendingPendingAlertDefinitionResponse

func (*PendingAlertApiService) PendingAlertGetSchedule ¶

PendingAlertGetSchedule Get the schedule for pending alerts

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPendingAlertGetScheduleRequest

func (*PendingAlertApiService) PendingAlertGetScheduleExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsAlertScheduleAlertScheduleResponse

func (*PendingAlertApiService) PendingAlertTestAllPendingAlert ¶

func (a *PendingAlertApiService) PendingAlertTestAllPendingAlert(ctx context.Context) ApiPendingAlertTestAllPendingAlertRequest

PendingAlertTestAllPendingAlert Test all pending alerts. Will send alert emails if SendAlerts is true

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPendingAlertTestAllPendingAlertRequest

func (*PendingAlertApiService) PendingAlertTestAllPendingAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsPendingPendingAlertTestResponse

func (*PendingAlertApiService) PendingAlertTestPendingAlert ¶

PendingAlertTestPendingAlert Test pending alert. Will send alert emails if SendAlerts is true

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPendingAlertTestPendingAlertRequest

func (*PendingAlertApiService) PendingAlertTestPendingAlertExecute ¶

Execute executes the request

@return KeyfactorApiModelsAlertsPendingPendingAlertTestResponse

type ReportsApiService ¶

type ReportsApiService service

ReportsApiService ReportsApi service

func (*ReportsApiService) ReportsCreateCustomReport ¶

func (a *ReportsApiService) ReportsCreateCustomReport(ctx context.Context) ApiReportsCreateCustomReportRequest

ReportsCreateCustomReport Creates a custom report

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReportsCreateCustomReportRequest

func (*ReportsApiService) ReportsCreateCustomReportExecute ¶

func (a *ReportsApiService) ReportsCreateCustomReportExecute(r ApiReportsCreateCustomReportRequest) (*ModelsCustomReport, *http.Response, error)

Execute executes the request

@return ModelsCustomReport

func (*ReportsApiService) ReportsCreateReportSchedule ¶

func (a *ReportsApiService) ReportsCreateReportSchedule(ctx context.Context, id int32) ApiReportsCreateReportScheduleRequest

ReportsCreateReportSchedule Create a built-in report's schedule that matches the id of the report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Report identifier
@return ApiReportsCreateReportScheduleRequest

func (*ReportsApiService) ReportsCreateReportScheduleExecute ¶

func (a *ReportsApiService) ReportsCreateReportScheduleExecute(r ApiReportsCreateReportScheduleRequest) (*ModelsReportSchedule, *http.Response, error)

Execute executes the request

@return ModelsReportSchedule

func (*ReportsApiService) ReportsDeleteReport ¶

func (a *ReportsApiService) ReportsDeleteReport(ctx context.Context, id int32) ApiReportsDeleteReportRequest

ReportsDeleteReport Delete custom report that matches the id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Report identifier
@return ApiReportsDeleteReportRequest

func (*ReportsApiService) ReportsDeleteReportExecute ¶

func (a *ReportsApiService) ReportsDeleteReportExecute(r ApiReportsDeleteReportRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportsDeleteReportSchedule ¶

func (a *ReportsApiService) ReportsDeleteReportSchedule(ctx context.Context, id int32) ApiReportsDeleteReportScheduleRequest

ReportsDeleteReportSchedule Delete a built-in report's schedule that matches the id of the schedule.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Report Schedule identifier
@return ApiReportsDeleteReportScheduleRequest

func (*ReportsApiService) ReportsDeleteReportScheduleExecute ¶

func (a *ReportsApiService) ReportsDeleteReportScheduleExecute(r ApiReportsDeleteReportScheduleRequest) (*http.Response, error)

Execute executes the request

func (*ReportsApiService) ReportsGetCustomReport ¶

func (a *ReportsApiService) ReportsGetCustomReport(ctx context.Context, id int32) ApiReportsGetCustomReportRequest

ReportsGetCustomReport Returns a single custom report that matches the id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Report identifier
@return ApiReportsGetCustomReportRequest

func (*ReportsApiService) ReportsGetCustomReportExecute ¶

func (a *ReportsApiService) ReportsGetCustomReportExecute(r ApiReportsGetCustomReportRequest) (*ModelsCustomReport, *http.Response, error)

Execute executes the request

@return ModelsCustomReport

func (*ReportsApiService) ReportsGetReport ¶

func (a *ReportsApiService) ReportsGetReport(ctx context.Context, id int32) ApiReportsGetReportRequest

ReportsGetReport Returns a single built-in report that matches the id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Report identifier
@return ApiReportsGetReportRequest

func (*ReportsApiService) ReportsGetReportExecute ¶

func (a *ReportsApiService) ReportsGetReportExecute(r ApiReportsGetReportRequest) (*ModelsReport, *http.Response, error)

Execute executes the request

@return ModelsReport

func (*ReportsApiService) ReportsGetReportParameters ¶

func (a *ReportsApiService) ReportsGetReportParameters(ctx context.Context, id int32) ApiReportsGetReportParametersRequest

ReportsGetReportParameters Get a built-in report's parameters that matches the id of the report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Report identifier
@return ApiReportsGetReportParametersRequest

func (*ReportsApiService) ReportsGetReportParametersExecute ¶

Execute executes the request

@return []ModelsReportParameters

func (*ReportsApiService) ReportsGetReportSchedule ¶

func (a *ReportsApiService) ReportsGetReportSchedule(ctx context.Context, id int32) ApiReportsGetReportScheduleRequest

ReportsGetReportSchedule Get a built-in report's schedule that matches the id of the schedule.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Report Schedule identifier
@return ApiReportsGetReportScheduleRequest

func (*ReportsApiService) ReportsGetReportScheduleExecute ¶

Execute executes the request

@return ModelsReportSchedule

func (*ReportsApiService) ReportsGetReportSchedules ¶

func (a *ReportsApiService) ReportsGetReportSchedules(ctx context.Context, id int32) ApiReportsGetReportSchedulesRequest

ReportsGetReportSchedules Get a built-in report's schedules that matches the id of the report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Report identifier
@return ApiReportsGetReportSchedulesRequest

func (*ReportsApiService) ReportsGetReportSchedulesExecute ¶

func (a *ReportsApiService) ReportsGetReportSchedulesExecute(r ApiReportsGetReportSchedulesRequest) ([]ModelsReportSchedule, *http.Response, error)

Execute executes the request

@return []ModelsReportSchedule

func (*ReportsApiService) ReportsQueryCustomReports ¶

func (a *ReportsApiService) ReportsQueryCustomReports(ctx context.Context) ApiReportsQueryCustomReportsRequest

ReportsQueryCustomReports Returns all custom reports according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReportsQueryCustomReportsRequest

func (*ReportsApiService) ReportsQueryCustomReportsExecute ¶

func (a *ReportsApiService) ReportsQueryCustomReportsExecute(r ApiReportsQueryCustomReportsRequest) ([]ModelsCustomReport, *http.Response, error)

Execute executes the request

@return []ModelsCustomReport

func (*ReportsApiService) ReportsQueryReports ¶

func (a *ReportsApiService) ReportsQueryReports(ctx context.Context) ApiReportsQueryReportsRequest

ReportsQueryReports Returns all built-in reports according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReportsQueryReportsRequest

func (*ReportsApiService) ReportsQueryReportsExecute ¶

func (a *ReportsApiService) ReportsQueryReportsExecute(r ApiReportsQueryReportsRequest) ([]ModelsReport, *http.Response, error)

Execute executes the request

@return []ModelsReport

func (*ReportsApiService) ReportsUpdateCustomReport ¶

func (a *ReportsApiService) ReportsUpdateCustomReport(ctx context.Context) ApiReportsUpdateCustomReportRequest

ReportsUpdateCustomReport Updates a custom report that matches the id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReportsUpdateCustomReportRequest

func (*ReportsApiService) ReportsUpdateCustomReportExecute ¶

func (a *ReportsApiService) ReportsUpdateCustomReportExecute(r ApiReportsUpdateCustomReportRequest) (*ModelsCustomReport, *http.Response, error)

Execute executes the request

@return ModelsCustomReport

func (*ReportsApiService) ReportsUpdateReport ¶

func (a *ReportsApiService) ReportsUpdateReport(ctx context.Context) ApiReportsUpdateReportRequest

ReportsUpdateReport Updates a single built-in report that matches the id. Only some fields can be updated.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReportsUpdateReportRequest

func (*ReportsApiService) ReportsUpdateReportExecute ¶

func (a *ReportsApiService) ReportsUpdateReportExecute(r ApiReportsUpdateReportRequest) (*ModelsReport, *http.Response, error)

Execute executes the request

@return ModelsReport

func (*ReportsApiService) ReportsUpdateReportParameters ¶

func (a *ReportsApiService) ReportsUpdateReportParameters(ctx context.Context, id int32) ApiReportsUpdateReportParametersRequest

ReportsUpdateReportParameters Update a built-in report's parameters that matches the id of the report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Report identifier
@return ApiReportsUpdateReportParametersRequest

func (*ReportsApiService) ReportsUpdateReportParametersExecute ¶

func (a *ReportsApiService) ReportsUpdateReportParametersExecute(r ApiReportsUpdateReportParametersRequest) ([]ModelsReportParameters, *http.Response, error)

Execute executes the request

@return []ModelsReportParameters

func (*ReportsApiService) ReportsUpdateReportSchedule ¶

func (a *ReportsApiService) ReportsUpdateReportSchedule(ctx context.Context, id int32) ApiReportsUpdateReportScheduleRequest

ReportsUpdateReportSchedule Update a built-in report's schedule that matches the id of the report.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Report identifier
@return ApiReportsUpdateReportScheduleRequest

func (*ReportsApiService) ReportsUpdateReportScheduleExecute ¶

func (a *ReportsApiService) ReportsUpdateReportScheduleExecute(r ApiReportsUpdateReportScheduleRequest) (*ModelsReportSchedule, *http.Response, error)

Execute executes the request

@return ModelsReportSchedule

type SMTPApiService ¶

type SMTPApiService service

SMTPApiService SMTPApi service

func (*SMTPApiService) SMTPSMTP ¶

SMTPSMTP Gets SMTP profile data

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSMTPSMTPRequest

func (*SMTPApiService) SMTPSMTPExecute ¶

Execute executes the request

@return KeyfactorAPIModelsSMTPSMTPResponse

func (*SMTPApiService) SMTPTestSMTP ¶

SMTPTestSMTP Tests SMTP profile data

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSMTPTestSMTPRequest

func (*SMTPApiService) SMTPTestSMTPExecute ¶

Execute executes the request

@return KeyfactorAPIModelsSMTPSMTPTestResponse

func (*SMTPApiService) SMTPUpdateSMTP ¶

func (a *SMTPApiService) SMTPUpdateSMTP(ctx context.Context) ApiSMTPUpdateSMTPRequest

SMTPUpdateSMTP Updates SMTP profile data

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSMTPUpdateSMTPRequest

func (*SMTPApiService) SMTPUpdateSMTPExecute ¶

Execute executes the request

@return KeyfactorAPIModelsSMTPSMTPResponse

type SecurityApiService ¶

type SecurityApiService service

SecurityApiService SecurityApi service

func (*SecurityApiService) SecurityDeleteSecurityIdentity ¶

func (a *SecurityApiService) SecurityDeleteSecurityIdentity(ctx context.Context, id int32) ApiSecurityDeleteSecurityIdentityRequest

SecurityDeleteSecurityIdentity Deletes the security identity whose ID is provided.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The ID of the security identity to be deleted.
@return ApiSecurityDeleteSecurityIdentityRequest

func (*SecurityApiService) SecurityDeleteSecurityIdentityExecute ¶

func (a *SecurityApiService) SecurityDeleteSecurityIdentityExecute(r ApiSecurityDeleteSecurityIdentityRequest) (*http.Response, error)

Execute executes the request

func (*SecurityApiService) SecurityIdentityPermissions ¶

func (a *SecurityApiService) SecurityIdentityPermissions(ctx context.Context, id int32) ApiSecurityIdentityPermissionsRequest

SecurityIdentityPermissions Gets an object representing the permissions of the identity associated with the provided identifier.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The identifier of the security identity
@return ApiSecurityIdentityPermissionsRequest

func (*SecurityApiService) SecurityIdentityPermissionsExecute ¶

Execute executes the request

@return ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse

func (*SecurityApiService) SecurityLookupIdentity ¶

func (a *SecurityApiService) SecurityLookupIdentity(ctx context.Context) ApiSecurityLookupIdentityRequest

SecurityLookupIdentity Validates that the identity with the name given exists.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSecurityLookupIdentityRequest

func (*SecurityApiService) SecurityLookupIdentityExecute ¶

Execute executes the request

@return ModelsSecurityIdentitiesSecurityIdentityLookupResponse

type SecurityRolePermissionsApiService ¶

type SecurityRolePermissionsApiService service

SecurityRolePermissionsApiService SecurityRolePermissionsApi service

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsAddCollectionPermissions ¶

func (a *SecurityRolePermissionsApiService) SecurityRolePermissionsAddCollectionPermissions(ctx context.Context, id int32) ApiSecurityRolePermissionsAddCollectionPermissionsRequest

SecurityRolePermissionsAddCollectionPermissions Adds collection permissions to the security role that matches the id.

### Valid Permissions ### | Permission | Permission Display Name | |---------------|---------------------------| | Read | Read | | EditMetadata | Edit Metadata | | Recover | Download with Private Key | | Revoke | Revoke | | Delete | Delete |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolePermissionsAddCollectionPermissionsRequest

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsAddCollectionPermissionsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsAddContainerPermissions ¶

func (a *SecurityRolePermissionsApiService) SecurityRolePermissionsAddContainerPermissions(ctx context.Context, id int32) ApiSecurityRolePermissionsAddContainerPermissionsRequest

SecurityRolePermissionsAddContainerPermissions Adds container permissions to the security role that matches the id.

### Valid Permissions ### | Permission | Requisite Permissions | |---------------|-----------------------| | Read | | | Schedule | Read | | Modify | Read, Schedule |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolePermissionsAddContainerPermissionsRequest

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsAddContainerPermissionsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesContainerPermissionResponse

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsAddGlobalPermissions ¶

SecurityRolePermissionsAddGlobalPermissions Adds global permissions to the security role that matches the id.

### Valid Global Permissions ### | Area | Permission | |-------------------------------|-------------------| | AdminPortal | Read | | AgentAutoRegistration | Read | | AgentAutoRegistration | Modify | | AgentManagement | Read | | AgentManagement | Modify | | API | Read | | ApplicationSettings | Read | | ApplicationSettings | Modify | | Auditing | Read | | CertificateCollections | Modify | | CertificateEnrollment | EnrollPFX | | CertificateEnrollment | EnrollCSR | | CertificateEnrollment | CsrGeneration | | CertificateEnrollment | PendingCsr | | CertificateMetadataTypes | Read | | CertificateMetadataTypes | Modify | | Certificates | Read | | Certificates | EditMetadata | | Certificates | Import | | Certificates | Recover | | Certificates | Revoke | | Certificates | Delete | | Certificates | ImportPrivateKey | | CertificateStoreManagement | Read | | CertificateStoreManagement | Schedule | | CertificateStoreManagement | Modify | | Dashboard | Read | | Dashboard | RiskHeader | | EventHandlerRegistration | Read | | EventHandlerRegistration | Modify | | MacAutoEnrollManagement | Read | | MacAutoEnrollManagement | Modify | | Monitoring | Read | | Monitoring | Modify | | Monitoring | Test | | PkiManagement | Read | | PkiManagement | Modify | | PrivilegedAccessManagement | Read | | PrivilegedAccessManagement | Modify | | Reports | Read | | Reports | Modify | | SecuritySettings | Read | | SecuritySettings | Modify | | SSH | User | | SSH | ServerAdmin | | SSH | EnterpriseAdmin | | SslManagement | Read | | SslManagement | Modify | | SystemSettings | Read | | SystemSettings | Modify | | WorkflowDefinitions | Read | | WorkflowDefinitions | Modify | | WorkflowInstances | ReadAll | | WorkflowInstances | ReadAssignedToMe | | WorkflowInstances | ReadMy | | WorkflowInstances | Manage | | WorkflowManagement | Read | | WorkflowManagement | Modify | | WorkflowManagement | Test | | WorkflowManagement | Participate | | WorkflowManagement | Manage |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolePermissionsAddGlobalPermissionsRequest

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsAddGlobalPermissionsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsGetCollectionPermissionsForRole ¶

func (a *SecurityRolePermissionsApiService) SecurityRolePermissionsGetCollectionPermissionsForRole(ctx context.Context, id int32) ApiSecurityRolePermissionsGetCollectionPermissionsForRoleRequest

SecurityRolePermissionsGetCollectionPermissionsForRole Returns all collection permissions associated with the security role that matches the id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolePermissionsGetCollectionPermissionsForRoleRequest

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsGetCollectionPermissionsForRoleExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsGetContainerPermissionsForRole ¶

func (a *SecurityRolePermissionsApiService) SecurityRolePermissionsGetContainerPermissionsForRole(ctx context.Context, id int32) ApiSecurityRolePermissionsGetContainerPermissionsForRoleRequest

SecurityRolePermissionsGetContainerPermissionsForRole Returns all container permissions associated with the security role that matches the id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolePermissionsGetContainerPermissionsForRoleRequest

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsGetContainerPermissionsForRoleExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesContainerPermissionResponse

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsGetGlobalPermissionsForRole ¶

func (a *SecurityRolePermissionsApiService) SecurityRolePermissionsGetGlobalPermissionsForRole(ctx context.Context, id int32) ApiSecurityRolePermissionsGetGlobalPermissionsForRoleRequest

SecurityRolePermissionsGetGlobalPermissionsForRole Returns all global permissions associated with the security role that matches the id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolePermissionsGetGlobalPermissionsForRoleRequest

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsGetGlobalPermissionsForRoleExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsGetPermissionsForRole ¶

SecurityRolePermissionsGetPermissionsForRole Returns all permissions associated with the security role that matches the id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolePermissionsGetPermissionsForRoleRequest

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsGetPermissionsForRoleExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesAreaPermissionResponse

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsSetCollectionPermissions ¶

func (a *SecurityRolePermissionsApiService) SecurityRolePermissionsSetCollectionPermissions(ctx context.Context, id int32) ApiSecurityRolePermissionsSetCollectionPermissionsRequest

SecurityRolePermissionsSetCollectionPermissions Sets collection permissions to the security role that matches the id.

### Valid Permissions ### | Permission | Permission Display Name | |---------------|---------------------------| | Read | Read | | EditMetadata | Edit Metadata | | Recover | Download with Private Key | | Revoke | Revoke | | Delete | Delete |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolePermissionsSetCollectionPermissionsRequest

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsSetCollectionPermissionsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesCollectionPermissionResponse

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsSetContainerPermissions ¶

func (a *SecurityRolePermissionsApiService) SecurityRolePermissionsSetContainerPermissions(ctx context.Context, id int32) ApiSecurityRolePermissionsSetContainerPermissionsRequest

SecurityRolePermissionsSetContainerPermissions Sets container permissions to the security role that matches the id.

### Valid Permissions ### | Permission | Requisite Permissions | |---------------|-----------------------| | Read | | | Schedule | Read | | Modify | Read, Schedule |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolePermissionsSetContainerPermissionsRequest

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsSetContainerPermissionsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesContainerPermissionResponse

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsSetGlobalPermissions ¶

SecurityRolePermissionsSetGlobalPermissions Adds global permissions to the security role that matches the id.

### Valid Global Permissions ### | Area | Permission | |-------------------------------|-------------------| | AdminPortal | Read | | AgentAutoRegistration | Read | | AgentAutoRegistration | Modify | | AgentManagement | Read | | AgentManagement | Modify | | API | Read | | ApplicationSettings | Read | | ApplicationSettings | Modify | | Auditing | Read | | CertificateCollections | Modify | | CertificateEnrollment | EnrollPFX | | CertificateEnrollment | EnrollCSR | | CertificateEnrollment | CsrGeneration | | CertificateEnrollment | PendingCsr | | CertificateMetadataTypes | Read | | CertificateMetadataTypes | Modify | | Certificates | Read | | Certificates | EditMetadata | | Certificates | Import | | Certificates | Recover | | Certificates | Revoke | | Certificates | Delete | | Certificates | ImportPrivateKey | | CertificateStoreManagement | Read | | CertificateStoreManagement | Schedule | | CertificateStoreManagement | Modify | | Dashboard | Read | | Dashboard | RiskHeader | | EventHandlerRegistration | Read | | EventHandlerRegistration | Modify | | MacAutoEnrollManagement | Read | | MacAutoEnrollManagement | Modify | | Monitoring | Read | | Monitoring | Modify | | Monitoring | Test | | PkiManagement | Read | | PkiManagement | Modify | | PrivilegedAccessManagement | Read | | PrivilegedAccessManagement | Modify | | Reports | Read | | Reports | Modify | | SecuritySettings | Read | | SecuritySettings | Modify | | SSH | User | | SSH | ServerAdmin | | SSH | EnterpriseAdmin | | SslManagement | Read | | SslManagement | Modify | | SystemSettings | Read | | SystemSettings | Modify | | WorkflowDefinitions | Read | | WorkflowDefinitions | Modify | | WorkflowInstances | ReadAll | | WorkflowInstances | ReadAssignedToMe | | WorkflowInstances | ReadMy | | WorkflowInstances | Manage | | WorkflowManagement | Read | | WorkflowManagement | Modify | | WorkflowManagement | Test | | WorkflowManagement | Participate | | WorkflowManagement | Manage |

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolePermissionsSetGlobalPermissionsRequest

func (*SecurityRolePermissionsApiService) SecurityRolePermissionsSetGlobalPermissionsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesIdentitiesSecurityRolesGlobalPermissionResponse

type SecurityRolesApiService ¶

type SecurityRolesApiService service

SecurityRolesApiService SecurityRolesApi service

func (*SecurityRolesApiService) SecurityRolesDeleteSecurityRole ¶

func (a *SecurityRolesApiService) SecurityRolesDeleteSecurityRole(ctx context.Context, id int32) ApiSecurityRolesDeleteSecurityRoleRequest

SecurityRolesDeleteSecurityRole Deletes the security role whose ID is provided.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolesDeleteSecurityRoleRequest

func (*SecurityRolesApiService) SecurityRolesDeleteSecurityRoleExecute ¶

func (a *SecurityRolesApiService) SecurityRolesDeleteSecurityRoleExecute(r ApiSecurityRolesDeleteSecurityRoleRequest) (*http.Response, error)

Execute executes the request

func (*SecurityRolesApiService) SecurityRolesGetIdentitiesWithRole ¶

func (a *SecurityRolesApiService) SecurityRolesGetIdentitiesWithRole(ctx context.Context, id int32) ApiSecurityRolesGetIdentitiesWithRoleRequest

SecurityRolesGetIdentitiesWithRole Returns all identities which have the security role that matches the id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolesGetIdentitiesWithRoleRequest

func (*SecurityRolesApiService) SecurityRolesGetIdentitiesWithRoleExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse

func (*SecurityRolesApiService) SecurityRolesUpdateIdentitiesWithRole ¶

func (a *SecurityRolesApiService) SecurityRolesUpdateIdentitiesWithRole(ctx context.Context, id int32) ApiSecurityRolesUpdateIdentitiesWithRoleRequest

SecurityRolesUpdateIdentitiesWithRole Updates the identities which have the security role that matches the id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Security role identifier
@return ApiSecurityRolesUpdateIdentitiesWithRoleRequest

func (*SecurityRolesApiService) SecurityRolesUpdateIdentitiesWithRoleExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSecurityRolesRoleIdentitiesResponse

type ServerApiService ¶

type ServerApiService service

ServerApiService ServerApi service

func (*ServerApiService) ServerAddAccess ¶

ServerAddAccess Updates logons and users with access to those logons for an existing server

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServerAddAccessRequest

func (*ServerApiService) ServerAddAccessExecute ¶

Execute executes the request

@return ModelsSSHAccessServerAccessResponse

func (*ServerApiService) ServerCreateServer ¶

func (a *ServerApiService) ServerCreateServer(ctx context.Context) ApiServerCreateServerRequest

ServerCreateServer Creates a server with the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServerCreateServerRequest

func (*ServerApiService) ServerCreateServerExecute ¶

Execute executes the request

@return ModelsSSHServersServerResponse

func (*ServerApiService) ServerDelete ¶

func (a *ServerApiService) ServerDelete(ctx context.Context, id int32) ApiServerDeleteRequest

ServerDelete Deletes a Server associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifer of the Server to be deleted
@return ApiServerDeleteRequest

func (*ServerApiService) ServerDeleteExecute ¶

func (a *ServerApiService) ServerDeleteExecute(r ApiServerDeleteRequest) (*http.Response, error)

Execute executes the request

func (*ServerApiService) ServerGet ¶

ServerGet Returns a Server associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the Server
@return ApiServerGetRequest

func (*ServerApiService) ServerGetAccess ¶

func (a *ServerApiService) ServerGetAccess(ctx context.Context, id int32) ApiServerGetAccessRequest

ServerGetAccess Retrieves logons and users with access to those logons for an existing server

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id of the existing server
@return ApiServerGetAccessRequest

func (*ServerApiService) ServerGetAccessExecute ¶

Execute executes the request

@return ModelsSSHAccessServerAccessResponse

func (*ServerApiService) ServerGetExecute ¶

Execute executes the request

@return ModelsSSHServersServerResponse

func (*ServerApiService) ServerQueryServers ¶

func (a *ServerApiService) ServerQueryServers(ctx context.Context) ApiServerQueryServersRequest

ServerQueryServers Returns all servers according to the provided filter parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServerQueryServersRequest

func (*ServerApiService) ServerQueryServersExecute ¶

Execute executes the request

@return []ModelsSSHServersServerResponse

func (*ServerApiService) ServerRemoveAccess ¶

func (a *ServerApiService) ServerRemoveAccess(ctx context.Context) ApiServerRemoveAccessRequest

ServerRemoveAccess Updates logons and users with access to those logons for an existing server

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServerRemoveAccessRequest

func (*ServerApiService) ServerRemoveAccessExecute ¶

Execute executes the request

@return ModelsSSHAccessServerAccessResponse

func (*ServerApiService) ServerUpdateServer ¶

func (a *ServerApiService) ServerUpdateServer(ctx context.Context) ApiServerUpdateServerRequest

ServerUpdateServer Updates an existing server with the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServerUpdateServerRequest

func (*ServerApiService) ServerUpdateServerExecute ¶

Execute executes the request

@return ModelsSSHServersServerResponse

type ServerGroupApiService ¶

type ServerGroupApiService service

ServerGroupApiService ServerGroupApi service

func (*ServerGroupApiService) ServerGroupAddAccess ¶

ServerGroupAddAccess Add access rules to the server group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServerGroupAddAccessRequest

func (*ServerGroupApiService) ServerGroupAddAccessExecute ¶

Execute executes the request

@return ModelsSSHAccessServerGroupAccessResponse

func (*ServerGroupApiService) ServerGroupCreateServerGroup ¶

func (a *ServerGroupApiService) ServerGroupCreateServerGroup(ctx context.Context) ApiServerGroupCreateServerGroupRequest

ServerGroupCreateServerGroup Creates a server group with the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServerGroupCreateServerGroupRequest

func (*ServerGroupApiService) ServerGroupCreateServerGroupExecute ¶

Execute executes the request

@return ModelsSSHServerGroupsServerGroupResponse

func (*ServerGroupApiService) ServerGroupDelete ¶

ServerGroupDelete Deletes a ServerGroup associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifer of the ServerGroup to be deleted
@return ApiServerGroupDeleteRequest

func (*ServerGroupApiService) ServerGroupDeleteExecute ¶

func (a *ServerGroupApiService) ServerGroupDeleteExecute(r ApiServerGroupDeleteRequest) (*http.Response, error)

Execute executes the request

func (*ServerGroupApiService) ServerGroupGetAccess ¶

ServerGroupGetAccess Retrieves logons and users with access to those logons for an existing server group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Id of the existing server group
@return ApiServerGroupGetAccessRequest

func (*ServerGroupApiService) ServerGroupGetAccessExecute ¶

Execute executes the request

@return ModelsSSHAccessServerGroupAccessResponse

func (*ServerGroupApiService) ServerGroupGetGroup ¶

ServerGroupGetGroup Returns a ServerGroup associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the ServerGroup
@return ApiServerGroupGetGroupRequest

func (*ServerGroupApiService) ServerGroupGetGroupByName ¶

func (a *ServerGroupApiService) ServerGroupGetGroupByName(ctx context.Context, name string) ApiServerGroupGetGroupByNameRequest

ServerGroupGetGroupByName Returns a ServerGroup associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param name name of the ServerGroup
@return ApiServerGroupGetGroupByNameRequest

func (*ServerGroupApiService) ServerGroupGetGroupByNameExecute ¶

Execute executes the request

@return ModelsSSHServerGroupsServerGroupResponse

func (*ServerGroupApiService) ServerGroupGetGroupExecute ¶

Execute executes the request

@return ModelsSSHServerGroupsServerGroupResponse

func (*ServerGroupApiService) ServerGroupQueryServerGroups ¶

func (a *ServerGroupApiService) ServerGroupQueryServerGroups(ctx context.Context) ApiServerGroupQueryServerGroupsRequest

ServerGroupQueryServerGroups Returns all server groups according to the provided filter parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServerGroupQueryServerGroupsRequest

func (*ServerGroupApiService) ServerGroupQueryServerGroupsExecute ¶

Execute executes the request

@return []ModelsSSHServerGroupsServerGroupResponse

func (*ServerGroupApiService) ServerGroupRemoveAccess ¶

ServerGroupRemoveAccess Removes access mappings for the specified server group

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServerGroupRemoveAccessRequest

func (*ServerGroupApiService) ServerGroupRemoveAccessExecute ¶

Execute executes the request

@return ModelsSSHAccessServerGroupAccessResponse

func (*ServerGroupApiService) ServerGroupUpdateServerGroup ¶

func (a *ServerGroupApiService) ServerGroupUpdateServerGroup(ctx context.Context) ApiServerGroupUpdateServerGroupRequest

ServerGroupUpdateServerGroup Updates an existing server group with the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServerGroupUpdateServerGroupRequest

func (*ServerGroupApiService) ServerGroupUpdateServerGroupExecute ¶

Execute executes the request

@return ModelsSSHServerGroupsServerGroupResponse

type ServerVariable ¶

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type ServiceAccountApiService ¶

type ServiceAccountApiService service

ServiceAccountApiService ServiceAccountApi service

func (*ServiceAccountApiService) ServiceAccountCreateServiceAccount ¶

func (a *ServiceAccountApiService) ServiceAccountCreateServiceAccount(ctx context.Context) ApiServiceAccountCreateServiceAccountRequest

ServiceAccountCreateServiceAccount Creates a ServiceAccount with the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServiceAccountCreateServiceAccountRequest

func (*ServiceAccountApiService) ServiceAccountCreateServiceAccountExecute ¶

Execute executes the request

@return ModelsSSHServiceAccountsServiceAccountResponse

func (*ServiceAccountApiService) ServiceAccountDeleteServiceAccount ¶

func (a *ServiceAccountApiService) ServiceAccountDeleteServiceAccount(ctx context.Context, id int32) ApiServiceAccountDeleteServiceAccountRequest

ServiceAccountDeleteServiceAccount Deletes a ServiceAccount associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifer of the ServiceAccount to be deleted
@return ApiServiceAccountDeleteServiceAccountRequest

func (*ServiceAccountApiService) ServiceAccountDeleteServiceAccountExecute ¶

func (a *ServiceAccountApiService) ServiceAccountDeleteServiceAccountExecute(r ApiServiceAccountDeleteServiceAccountRequest) (*http.Response, error)

Execute executes the request

func (*ServiceAccountApiService) ServiceAccountDeleteServiceAccounts ¶

func (a *ServiceAccountApiService) ServiceAccountDeleteServiceAccounts(ctx context.Context) ApiServiceAccountDeleteServiceAccountsRequest

ServiceAccountDeleteServiceAccounts Deletes Service Accounts associated with the provided identifiers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServiceAccountDeleteServiceAccountsRequest

func (*ServiceAccountApiService) ServiceAccountDeleteServiceAccountsExecute ¶

func (a *ServiceAccountApiService) ServiceAccountDeleteServiceAccountsExecute(r ApiServiceAccountDeleteServiceAccountsRequest) (*http.Response, error)

Execute executes the request

func (*ServiceAccountApiService) ServiceAccountGet ¶

ServiceAccountGet Returns a ServiceAccount associated with the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the ServiceAccount
@return ApiServiceAccountGetRequest

func (*ServiceAccountApiService) ServiceAccountGetExecute ¶

Execute executes the request

@return ModelsSSHServiceAccountsServiceAccountResponse

func (*ServiceAccountApiService) ServiceAccountGetServiceAccountKey ¶

func (a *ServiceAccountApiService) ServiceAccountGetServiceAccountKey(ctx context.Context, id int32) ApiServiceAccountGetServiceAccountKeyRequest

ServiceAccountGetServiceAccountKey Returns an SSH key with or without private key based on the provided parameters.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the service account to obtain information on
@return ApiServiceAccountGetServiceAccountKeyRequest

func (*ServiceAccountApiService) ServiceAccountGetServiceAccountKeyExecute ¶

Execute executes the request

@return ModelsSSHKeysKeyResponse

func (*ServiceAccountApiService) ServiceAccountQueryServiceAccounts ¶

func (a *ServiceAccountApiService) ServiceAccountQueryServiceAccounts(ctx context.Context) ApiServiceAccountQueryServiceAccountsRequest

ServiceAccountQueryServiceAccounts Returns all ServiceAccounts according to the provided filter parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServiceAccountQueryServiceAccountsRequest

func (*ServiceAccountApiService) ServiceAccountQueryServiceAccountsExecute ¶

Execute executes the request

@return []ModelsSSHServiceAccountsServiceAccountResponse

func (*ServiceAccountApiService) ServiceAccountRotateServiceAccountKey ¶

func (a *ServiceAccountApiService) ServiceAccountRotateServiceAccountKey(ctx context.Context, id int32) ApiServiceAccountRotateServiceAccountKeyRequest

ServiceAccountRotateServiceAccountKey Rotate an SSH key for a specified service account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the service account and the updated state of the SSH key.
@return ApiServiceAccountRotateServiceAccountKeyRequest

func (*ServiceAccountApiService) ServiceAccountRotateServiceAccountKeyExecute ¶

Execute executes the request

@return ModelsSSHKeysKeyResponse

func (*ServiceAccountApiService) ServiceAccountUpdateServiceAccount ¶

func (a *ServiceAccountApiService) ServiceAccountUpdateServiceAccount(ctx context.Context) ApiServiceAccountUpdateServiceAccountRequest

ServiceAccountUpdateServiceAccount Updates an SSH key for a specified service account.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiServiceAccountUpdateServiceAccountRequest

func (*ServiceAccountApiService) ServiceAccountUpdateServiceAccountExecute ¶

Execute executes the request

@return ModelsSSHServiceAccountsServiceAccountResponse

type SslApiService ¶

type SslApiService service

SslApiService SslApi service

func (*SslApiService) SslAddNetworkRanges ¶

func (a *SslApiService) SslAddNetworkRanges(ctx context.Context) ApiSslAddNetworkRangesRequest

SslAddNetworkRanges Adds the provided network range definitions to the associated network definition

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSslAddNetworkRangesRequest

func (*SslApiService) SslAddNetworkRangesExecute ¶

func (a *SslApiService) SslAddNetworkRangesExecute(r ApiSslAddNetworkRangesRequest) (*http.Response, error)

Execute executes the request

func (*SslApiService) SslCreateNetwork ¶

func (a *SslApiService) SslCreateNetwork(ctx context.Context) ApiSslCreateNetworkRequest

SslCreateNetwork Creates a network definition according to the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSslCreateNetworkRequest

func (*SslApiService) SslCreateNetworkExecute ¶

Execute executes the request

@return KeyfactorApiModelsSslNetworkResponse

func (*SslApiService) SslEndpoint ¶

func (a *SslApiService) SslEndpoint(ctx context.Context, id string) ApiSslEndpointRequest

SslEndpoint Returns the details of the associated scanning endpoint

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the endpoint
@return ApiSslEndpointRequest

func (*SslApiService) SslEndpointExecute ¶

Execute executes the request

@return ModelsSSLEndpoint

func (*SslApiService) SslEndpointHistory ¶

func (a *SslApiService) SslEndpointHistory(ctx context.Context, id string) ApiSslEndpointHistoryRequest

SslEndpointHistory Returns a list of the scan results for the provided endpoint according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the endpoint
@return ApiSslEndpointHistoryRequest

func (*SslApiService) SslEndpointHistoryExecute ¶

Execute executes the request

@return []ModelsSSLEndpointHistoryResponse

func (*SslApiService) SslGetNetwork ¶

func (a *SslApiService) SslGetNetwork(ctx context.Context, identifier string) ApiSslGetNetworkRequest

SslGetNetwork Returns a defined SSL network according to the provided name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param identifier Identifier (Guid or Name) of the defined network
@return ApiSslGetNetworkRequest

func (*SslApiService) SslGetNetworkExecute ¶

Execute executes the request

@return KeyfactorApiModelsSslNetworkResponse

func (*SslApiService) SslGetNetworkRangesForNetwork ¶

func (a *SslApiService) SslGetNetworkRangesForNetwork(ctx context.Context, id string) ApiSslGetNetworkRangesForNetworkRequest

SslGetNetworkRangesForNetwork Returns the network range definitions for the provided network definition

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor network identifier
@return ApiSslGetNetworkRangesForNetworkRequest

func (*SslApiService) SslGetNetworkRangesForNetworkExecute ¶

func (a *SslApiService) SslGetNetworkRangesForNetworkExecute(r ApiSslGetNetworkRangesForNetworkRequest) ([]ModelsSSLNetworkDefinition, *http.Response, error)

Execute executes the request

@return []ModelsSSLNetworkDefinition

func (*SslApiService) SslGetNetworks ¶

func (a *SslApiService) SslGetNetworks(ctx context.Context) ApiSslGetNetworksRequest

SslGetNetworks Returns all defined SSL networks according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSslGetNetworksRequest

func (*SslApiService) SslGetNetworksExecute ¶

Execute executes the request

@return []KeyfactorApiModelsSslNetworkQueryResponse

func (*SslApiService) SslImmediateSslScan ¶

func (a *SslApiService) SslImmediateSslScan(ctx context.Context, id string) ApiSslImmediateSslScanRequest

SslImmediateSslScan Starts an SSL Scan for the network according to the associated network definition

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor network identifier
@return ApiSslImmediateSslScanRequest

func (*SslApiService) SslImmediateSslScanExecute ¶

func (a *SslApiService) SslImmediateSslScanExecute(r ApiSslImmediateSslScanRequest) (*http.Response, error)

Execute executes the request

func (*SslApiService) SslMonitorAll ¶

func (a *SslApiService) SslMonitorAll(ctx context.Context) ApiSslMonitorAllRequest

SslMonitorAll Sets all endpoints matching the provided query as 'monitored'

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSslMonitorAllRequest

func (*SslApiService) SslMonitorAllExecute ¶

func (a *SslApiService) SslMonitorAllExecute(r ApiSslMonitorAllRequest) (*http.Response, error)

Execute executes the request

func (*SslApiService) SslMonitoringStatus ¶

func (a *SslApiService) SslMonitoringStatus(ctx context.Context) ApiSslMonitoringStatusRequest

SslMonitoringStatus Sets the monitored status according to the provided endpoint and boolean status

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSslMonitoringStatusRequest

func (*SslApiService) SslMonitoringStatusExecute ¶

func (a *SslApiService) SslMonitoringStatusExecute(r ApiSslMonitoringStatusRequest) (*http.Response, error)

Execute executes the request

func (*SslApiService) SslNetworkScanParts ¶

func (a *SslApiService) SslNetworkScanParts(ctx context.Context, id string) ApiSslNetworkScanPartsRequest

SslNetworkScanParts Returns the scan job components comprising the entire scan job to be executed

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor network definition identifier
@return ApiSslNetworkScanPartsRequest

func (*SslApiService) SslNetworkScanPartsExecute ¶

Execute executes the request

@return []ModelsSSLDisplayScanJobPart

func (*SslApiService) SslRemoveAllNetworkRanges ¶

func (a *SslApiService) SslRemoveAllNetworkRanges(ctx context.Context, id string) ApiSslRemoveAllNetworkRangesRequest

SslRemoveAllNetworkRanges Removes all network range definitions from the associated network definition

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor network definition identifier
@return ApiSslRemoveAllNetworkRangesRequest

func (*SslApiService) SslRemoveAllNetworkRangesExecute ¶

func (a *SslApiService) SslRemoveAllNetworkRangesExecute(r ApiSslRemoveAllNetworkRangesRequest) (*http.Response, error)

Execute executes the request

func (*SslApiService) SslRemoveNetwork ¶

func (a *SslApiService) SslRemoveNetwork(ctx context.Context, id string) ApiSslRemoveNetworkRequest

SslRemoveNetwork Removes a network definition according to the provided identifier

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor network identifier
@return ApiSslRemoveNetworkRequest

func (*SslApiService) SslRemoveNetworkExecute ¶

func (a *SslApiService) SslRemoveNetworkExecute(r ApiSslRemoveNetworkRequest) (*http.Response, error)

Execute executes the request

func (*SslApiService) SslResults ¶

SslResults Returns a list of the endpoint scan results according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSslResultsRequest

func (*SslApiService) SslResultsExecute ¶

Execute executes the request

@return []ModelsSSLSslScanResult

func (*SslApiService) SslReviewAll ¶

func (a *SslApiService) SslReviewAll(ctx context.Context) ApiSslReviewAllRequest

SslReviewAll Sets all endpoints matching the provided query as 'reviewed'

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSslReviewAllRequest

func (*SslApiService) SslReviewAllExecute ¶

func (a *SslApiService) SslReviewAllExecute(r ApiSslReviewAllRequest) (*http.Response, error)

Execute executes the request

func (*SslApiService) SslReviewedStatus ¶

func (a *SslApiService) SslReviewedStatus(ctx context.Context) ApiSslReviewedStatusRequest

SslReviewedStatus Sets the reviewed status according to the provided endpoint and boolean status

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSslReviewedStatusRequest

func (*SslApiService) SslReviewedStatusExecute ¶

func (a *SslApiService) SslReviewedStatusExecute(r ApiSslReviewedStatusRequest) (*http.Response, error)

Execute executes the request

func (*SslApiService) SslScanPart ¶

func (a *SslApiService) SslScanPart(ctx context.Context, id string) ApiSslScanPartRequest

SslScanPart Returns the execution details of the associated network scan job part

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the scan job part
@return ApiSslScanPartRequest

func (*SslApiService) SslScanPartExecute ¶

Execute executes the request

@return ModelsSSLScanJobPart

func (*SslApiService) SslSetNetworkRanges ¶

func (a *SslApiService) SslSetNetworkRanges(ctx context.Context) ApiSslSetNetworkRangesRequest

SslSetNetworkRanges Configures network range definitions for the provided network

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSslSetNetworkRangesRequest

func (*SslApiService) SslSetNetworkRangesExecute ¶

func (a *SslApiService) SslSetNetworkRangesExecute(r ApiSslSetNetworkRangesRequest) (*http.Response, error)

Execute executes the request

func (*SslApiService) SslUpdateNetwork ¶

func (a *SslApiService) SslUpdateNetwork(ctx context.Context) ApiSslUpdateNetworkRequest

SslUpdateNetwork Updates an existing network definition according to the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSslUpdateNetworkRequest

func (*SslApiService) SslUpdateNetworkExecute ¶

Execute executes the request

@return KeyfactorApiModelsSslNetworkResponse

func (*SslApiService) SslValidateNetworkRanges ¶

func (a *SslApiService) SslValidateNetworkRanges(ctx context.Context) ApiSslValidateNetworkRangesRequest

SslValidateNetworkRanges Validates the format (using regular expressions) of the provided network range definitions

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSslValidateNetworkRangesRequest

func (*SslApiService) SslValidateNetworkRangesExecute ¶

func (a *SslApiService) SslValidateNetworkRangesExecute(r ApiSslValidateNetworkRangesRequest) (*http.Response, error)

Execute executes the request

type StatusApiService ¶

type StatusApiService service

StatusApiService StatusApi service

func (*StatusApiService) StatusGetEndpoints ¶

func (a *StatusApiService) StatusGetEndpoints(ctx context.Context) ApiStatusGetEndpointsRequest

StatusGetEndpoints Returns all endpoints to which the requesting identity has access

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStatusGetEndpointsRequest

func (*StatusApiService) StatusGetEndpointsExecute ¶

func (a *StatusApiService) StatusGetEndpointsExecute(r ApiStatusGetEndpointsRequest) ([]string, *http.Response, error)

Execute executes the request

@return []string

type TemplateApiService ¶

type TemplateApiService service

TemplateApiService TemplateApi service

func (*TemplateApiService) TemplateGetGlobalSettings ¶

func (a *TemplateApiService) TemplateGetGlobalSettings(ctx context.Context) ApiTemplateGetGlobalSettingsRequest

TemplateGetGlobalSettings Gets the global template settings.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTemplateGetGlobalSettingsRequest

func (*TemplateApiService) TemplateGetGlobalSettingsExecute ¶

Execute executes the request

@return KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse

func (*TemplateApiService) TemplateGetTemplate ¶

func (a *TemplateApiService) TemplateGetTemplate(ctx context.Context, id int32) ApiTemplateGetTemplateRequest

TemplateGetTemplate Returns the certificate template associated with the provided id

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Keyfactor identifier of the certificate template
@return ApiTemplateGetTemplateRequest

func (*TemplateApiService) TemplateGetTemplateExecute ¶

Execute executes the request

@return ModelsTemplateRetrievalResponse

func (*TemplateApiService) TemplateGetTemplates ¶

TemplateGetTemplates Returns all certificate templates according to the provided filter and output parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTemplateGetTemplatesRequest

func (*TemplateApiService) TemplateGetTemplatesExecute ¶

Execute executes the request

@return []ModelsTemplateCollectionRetrievalResponse

func (*TemplateApiService) TemplateGetValidSubjectParts ¶

func (a *TemplateApiService) TemplateGetValidSubjectParts(ctx context.Context) ApiTemplateGetValidSubjectPartsRequest

TemplateGetValidSubjectParts Method for TemplateGetValidSubjectParts

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTemplateGetValidSubjectPartsRequest

func (*TemplateApiService) TemplateGetValidSubjectPartsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsTemplatesValidSubjectPartResponse

func (*TemplateApiService) TemplateImport ¶

TemplateImport Imports templates from the provided configuration tenant

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTemplateImportRequest

func (*TemplateApiService) TemplateImportExecute ¶

func (a *TemplateApiService) TemplateImportExecute(r ApiTemplateImportRequest) (*http.Response, error)

Execute executes the request

func (*TemplateApiService) TemplateUpdateGlobalSettings ¶

func (a *TemplateApiService) TemplateUpdateGlobalSettings(ctx context.Context) ApiTemplateUpdateGlobalSettingsRequest

TemplateUpdateGlobalSettings Replaces the existing global template settings.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTemplateUpdateGlobalSettingsRequest

func (*TemplateApiService) TemplateUpdateGlobalSettingsExecute ¶

Execute executes the request

@return KeyfactorApiModelsTemplatesGlobalTemplateSettingsResponse

func (*TemplateApiService) TemplateUpdateTemplate ¶

func (a *TemplateApiService) TemplateUpdateTemplate(ctx context.Context) ApiTemplateUpdateTemplateRequest

TemplateUpdateTemplate Updates a certificate template according to the provided properties

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTemplateUpdateTemplateRequest

func (*TemplateApiService) TemplateUpdateTemplateExecute ¶

Execute executes the request

@return ModelsTemplateRetrievalResponse

type UserApiService ¶

type UserApiService service

UserApiService UserApi service

func (*UserApiService) UserCreateUser ¶

func (a *UserApiService) UserCreateUser(ctx context.Context) ApiUserCreateUserRequest

UserCreateUser Creates a new SSH User.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserCreateUserRequest

func (*UserApiService) UserCreateUserExecute ¶

Execute executes the request

@return ModelsSSHUsersSshUserResponse

func (*UserApiService) UserDeleteUser ¶

func (a *UserApiService) UserDeleteUser(ctx context.Context, id int32) ApiUserDeleteUserRequest

UserDeleteUser Deletes an SSH user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Id of the user to delete.
@return ApiUserDeleteUserRequest

func (*UserApiService) UserDeleteUserExecute ¶

func (a *UserApiService) UserDeleteUserExecute(r ApiUserDeleteUserRequest) (*http.Response, error)

Execute executes the request

func (*UserApiService) UserGetUser ¶

func (a *UserApiService) UserGetUser(ctx context.Context, id int32) ApiUserGetUserRequest

UserGetUser Looks up information about an existing SSH user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The Id of the SSH user to retrieve.
@return ApiUserGetUserRequest

func (*UserApiService) UserGetUserExecute ¶

Execute executes the request

@return ModelsSSHUsersSshUserResponse

func (*UserApiService) UserQueryUsers ¶

func (a *UserApiService) UserQueryUsers(ctx context.Context) ApiUserQueryUsersRequest

UserQueryUsers Returns users matching the criteria from the provided query parameters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserQueryUsersRequest

func (*UserApiService) UserQueryUsersExecute ¶

Execute executes the request

@return []ModelsSSHUsersSshUserResponse

func (*UserApiService) UserUpdateUser ¶

func (a *UserApiService) UserUpdateUser(ctx context.Context) ApiUserUpdateUserRequest

UserUpdateUser Updates information about a given user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserUpdateUserRequest

func (*UserApiService) UserUpdateUserExecute ¶

Execute executes the request

@return ModelsSSHUsersSshUserResponse

func (*UserApiService) UserUserAccess ¶

func (a *UserApiService) UserUserAccess(ctx context.Context) ApiUserUserAccessRequest

UserUserAccess Updates logon access for a user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUserUserAccessRequest

func (*UserApiService) UserUserAccessExecute ¶

Execute executes the request

@return ModelsSSHUsersSshUserAccessResponse

type WorkflowApiService ¶

type WorkflowApiService service

WorkflowApiService WorkflowApi service

func (*WorkflowApiService) WorkflowApprovePendingRequests ¶

func (a *WorkflowApiService) WorkflowApprovePendingRequests(ctx context.Context) ApiWorkflowApprovePendingRequestsRequest

WorkflowApprovePendingRequests Approves pending certificate requests associated with the provided ids

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowApprovePendingRequestsRequest

func (*WorkflowApiService) WorkflowApprovePendingRequestsExecute ¶

Execute executes the request

@return ModelsWorkflowApproveDenyResult

func (*WorkflowApiService) WorkflowDenyPendingRequests ¶

func (a *WorkflowApiService) WorkflowDenyPendingRequests(ctx context.Context) ApiWorkflowDenyPendingRequestsRequest

WorkflowDenyPendingRequests Denies pending certificate requests associated with the provided ids

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowDenyPendingRequestsRequest

func (*WorkflowApiService) WorkflowDenyPendingRequestsExecute ¶

Execute executes the request

@return ModelsWorkflowApproveDenyResult

func (*WorkflowApiService) WorkflowGet ¶

WorkflowGet Gets a collection of certificate requests based on the provided query.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowGetRequest

func (*WorkflowApiService) WorkflowGetCertificateRequestDetails ¶

func (a *WorkflowApiService) WorkflowGetCertificateRequestDetails(ctx context.Context, id int32) ApiWorkflowGetCertificateRequestDetailsRequest

WorkflowGetCertificateRequestDetails Returns certificate request details based on the provided ID.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The ID of the certificate request.
@return ApiWorkflowGetCertificateRequestDetailsRequest

func (*WorkflowApiService) WorkflowGetCertificateRequestDetailsExecute ¶

Execute executes the request

@return ModelsWorkflowCertificateRequestDetailsModel

func (*WorkflowApiService) WorkflowGetDenied ¶

WorkflowGetDenied Gets a collection of denied certificate requests based on the provided query.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowGetDeniedRequest

func (*WorkflowApiService) WorkflowGetDeniedExecute ¶

Execute executes the request

@return []ModelsWorkflowCertificateRequestModel

func (*WorkflowApiService) WorkflowGetExecute ¶

Execute executes the request

@return []ModelsWorkflowCertificateRequestModel

type WorkflowDefinitionApiService ¶

type WorkflowDefinitionApiService service

WorkflowDefinitionApiService WorkflowDefinitionApi service

func (*WorkflowDefinitionApiService) WorkflowDefinitionConfigureDefinitionSteps ¶

func (a *WorkflowDefinitionApiService) WorkflowDefinitionConfigureDefinitionSteps(ctx context.Context, definitionId string) ApiWorkflowDefinitionConfigureDefinitionStepsRequest

WorkflowDefinitionConfigureDefinitionSteps Sets the provided steps on the latest version of the definition.

If the latest version is also the published version, a new version will be created and the steps will be set on that new version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param definitionId The Id of the definition.
@return ApiWorkflowDefinitionConfigureDefinitionStepsRequest

func (*WorkflowDefinitionApiService) WorkflowDefinitionConfigureDefinitionStepsExecute ¶

Execute executes the request

@return KeyfactorApiModelsWorkflowsDefinitionResponse

func (*WorkflowDefinitionApiService) WorkflowDefinitionCreateNewDefinition ¶

WorkflowDefinitionCreateNewDefinition Creates a new base definition without any steps.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowDefinitionCreateNewDefinitionRequest

func (*WorkflowDefinitionApiService) WorkflowDefinitionCreateNewDefinitionExecute ¶

Execute executes the request

@return KeyfactorApiModelsWorkflowsDefinitionResponse

func (*WorkflowDefinitionApiService) WorkflowDefinitionDelete ¶

func (a *WorkflowDefinitionApiService) WorkflowDefinitionDelete(ctx context.Context, definitionId string) ApiWorkflowDefinitionDeleteRequest

WorkflowDefinitionDelete Deletes the definition matching the given Id.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param definitionId The Workflow Definition Id.
@return ApiWorkflowDefinitionDeleteRequest

func (*WorkflowDefinitionApiService) WorkflowDefinitionDeleteExecute ¶

func (a *WorkflowDefinitionApiService) WorkflowDefinitionDeleteExecute(r ApiWorkflowDefinitionDeleteRequest) (*http.Response, error)

Execute executes the request

func (*WorkflowDefinitionApiService) WorkflowDefinitionGet ¶

func (a *WorkflowDefinitionApiService) WorkflowDefinitionGet(ctx context.Context, definitionId string) ApiWorkflowDefinitionGetRequest

WorkflowDefinitionGet Gets a workflow definition.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param definitionId The Id of the definition to retrieve.
@return ApiWorkflowDefinitionGetRequest

func (*WorkflowDefinitionApiService) WorkflowDefinitionGetExecute ¶

Execute executes the request

@return KeyfactorApiModelsWorkflowsDefinitionResponse

func (*WorkflowDefinitionApiService) WorkflowDefinitionGetStepSchema ¶

func (a *WorkflowDefinitionApiService) WorkflowDefinitionGetStepSchema(ctx context.Context, extensionName string) ApiWorkflowDefinitionGetStepSchemaRequest

WorkflowDefinitionGetStepSchema Gets the schema of a given step with the specified extension name.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param extensionName The extension name of a specific step in the step schema.
@return ApiWorkflowDefinitionGetStepSchemaRequest

func (*WorkflowDefinitionApiService) WorkflowDefinitionGetStepSchemaExecute ¶

Execute executes the request

@return KeyfactorApiModelsWorkflowsAvailableStepResponse

func (*WorkflowDefinitionApiService) WorkflowDefinitionPublishDefinition ¶

func (a *WorkflowDefinitionApiService) WorkflowDefinitionPublishDefinition(ctx context.Context, definitionId string) ApiWorkflowDefinitionPublishDefinitionRequest

WorkflowDefinitionPublishDefinition Makes the most recent version of a Workflow Definition the published version.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param definitionId The Workflow Definition Id.
@return ApiWorkflowDefinitionPublishDefinitionRequest

func (*WorkflowDefinitionApiService) WorkflowDefinitionPublishDefinitionExecute ¶

Execute executes the request

@return KeyfactorApiModelsWorkflowsDefinitionResponse

func (*WorkflowDefinitionApiService) WorkflowDefinitionQuery ¶

WorkflowDefinitionQuery Gets the Definitions matching the query specifications.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowDefinitionQueryRequest

func (*WorkflowDefinitionApiService) WorkflowDefinitionQueryAvailableSteps ¶

WorkflowDefinitionQueryAvailableSteps Gets the result set of available steps for a given query.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowDefinitionQueryAvailableStepsRequest

func (*WorkflowDefinitionApiService) WorkflowDefinitionQueryAvailableStepsExecute ¶

Execute executes the request

@return []KeyfactorApiModelsWorkflowsAvailableStepQueryResponse

func (*WorkflowDefinitionApiService) WorkflowDefinitionQueryExecute ¶

Execute executes the request

@return []KeyfactorApiModelsWorkflowsDefinitionQueryResponse

func (*WorkflowDefinitionApiService) WorkflowDefinitionQueryWorkflowTypes ¶

WorkflowDefinitionQueryWorkflowTypes Performs a query against the workflow types in the system.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowDefinitionQueryWorkflowTypesRequest

func (*WorkflowDefinitionApiService) WorkflowDefinitionQueryWorkflowTypesExecute ¶

Execute executes the request

@return []KeyfactorApiModelsWorkflowsWorkflowTypeQueryResponse

func (*WorkflowDefinitionApiService) WorkflowDefinitionUpdateExistingDefinition ¶

func (a *WorkflowDefinitionApiService) WorkflowDefinitionUpdateExistingDefinition(ctx context.Context, definitionId string) ApiWorkflowDefinitionUpdateExistingDefinitionRequest

WorkflowDefinitionUpdateExistingDefinition Updates the existing definition's DisplayName and Description.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param definitionId The Id of the definition to update.
@return ApiWorkflowDefinitionUpdateExistingDefinitionRequest

func (*WorkflowDefinitionApiService) WorkflowDefinitionUpdateExistingDefinitionExecute ¶

Execute executes the request

@return KeyfactorApiModelsWorkflowsDefinitionResponse

type WorkflowInstanceApiService ¶

type WorkflowInstanceApiService service

WorkflowInstanceApiService WorkflowInstanceApi service

func (*WorkflowInstanceApiService) WorkflowInstanceDeleteInstance ¶

func (a *WorkflowInstanceApiService) WorkflowInstanceDeleteInstance(ctx context.Context, instanceId string) ApiWorkflowInstanceDeleteInstanceRequest

WorkflowInstanceDeleteInstance Deletes the specified instance.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param instanceId The Id of the instance to be deleted.
@return ApiWorkflowInstanceDeleteInstanceRequest

func (*WorkflowInstanceApiService) WorkflowInstanceDeleteInstanceExecute ¶

func (a *WorkflowInstanceApiService) WorkflowInstanceDeleteInstanceExecute(r ApiWorkflowInstanceDeleteInstanceRequest) (*http.Response, error)

Execute executes the request

func (*WorkflowInstanceApiService) WorkflowInstanceGet ¶

func (a *WorkflowInstanceApiService) WorkflowInstanceGet(ctx context.Context, instanceId string) ApiWorkflowInstanceGetRequest

WorkflowInstanceGet Get information relevant for knowing where an instance is in its workflow.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param instanceId The {System.Guid} identifying the instance.
@return ApiWorkflowInstanceGetRequest

func (*WorkflowInstanceApiService) WorkflowInstanceGetExecute ¶

Execute executes the request

@return KeyfactorApiModelsWorkflowsInstanceResponse

func (*WorkflowInstanceApiService) WorkflowInstanceQuery ¶

WorkflowInstanceQuery Gets the workflow instances matching the query specifications.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowInstanceQueryRequest

func (*WorkflowInstanceApiService) WorkflowInstanceQueryExecute ¶

Execute executes the request

@return []KeyfactorApiModelsWorkflowsInstanceQueryResponse

func (*WorkflowInstanceApiService) WorkflowInstanceQueryInstancesAssignedToMe ¶

func (a *WorkflowInstanceApiService) WorkflowInstanceQueryInstancesAssignedToMe(ctx context.Context) ApiWorkflowInstanceQueryInstancesAssignedToMeRequest

WorkflowInstanceQueryInstancesAssignedToMe Gets the workflow instances waiting on the user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowInstanceQueryInstancesAssignedToMeRequest

func (*WorkflowInstanceApiService) WorkflowInstanceQueryInstancesAssignedToMeExecute ¶

Execute executes the request

@return []KeyfactorApiModelsWorkflowsInstanceQueryResponse

func (*WorkflowInstanceApiService) WorkflowInstanceQueryInstancesStartedByMe ¶

func (a *WorkflowInstanceApiService) WorkflowInstanceQueryInstancesStartedByMe(ctx context.Context) ApiWorkflowInstanceQueryInstancesStartedByMeRequest

WorkflowInstanceQueryInstancesStartedByMe Gets the workflow instances started by the user.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiWorkflowInstanceQueryInstancesStartedByMeRequest

func (*WorkflowInstanceApiService) WorkflowInstanceQueryInstancesStartedByMeExecute ¶

Execute executes the request

@return []KeyfactorApiModelsWorkflowsInstanceQueryResponse

func (*WorkflowInstanceApiService) WorkflowInstanceRestart ¶

func (a *WorkflowInstanceApiService) WorkflowInstanceRestart(ctx context.Context, instanceId string) ApiWorkflowInstanceRestartRequest

WorkflowInstanceRestart Restarts a failed instance against the specified definition version or the published version if no version is specified.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param instanceId The instance Id to restart.
@return ApiWorkflowInstanceRestartRequest

func (*WorkflowInstanceApiService) WorkflowInstanceRestartExecute ¶

func (a *WorkflowInstanceApiService) WorkflowInstanceRestartExecute(r ApiWorkflowInstanceRestartRequest) (*http.Response, error)

Execute executes the request

func (*WorkflowInstanceApiService) WorkflowInstanceSignal ¶

func (a *WorkflowInstanceApiService) WorkflowInstanceSignal(ctx context.Context, instanceId string) ApiWorkflowInstanceSignalRequest

WorkflowInstanceSignal Receives the given signal for the given instance.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param instanceId The instance that is receiving the signal.
@return ApiWorkflowInstanceSignalRequest

func (*WorkflowInstanceApiService) WorkflowInstanceSignalExecute ¶

func (a *WorkflowInstanceApiService) WorkflowInstanceSignalExecute(r ApiWorkflowInstanceSignalRequest) (*http.Response, error)

Execute executes the request

func (*WorkflowInstanceApiService) WorkflowInstanceStop ¶

func (a *WorkflowInstanceApiService) WorkflowInstanceStop(ctx context.Context, instanceId string) ApiWorkflowInstanceStopRequest

WorkflowInstanceStop Rejects an instance, preventing it from continuing.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param instanceId The Id of the instance to reject.
@return ApiWorkflowInstanceStopRequest

func (*WorkflowInstanceApiService) WorkflowInstanceStopExecute ¶

func (a *WorkflowInstanceApiService) WorkflowInstanceStopExecute(r ApiWorkflowInstanceStopRequest) (*http.Response, error)

Execute executes the request

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL