prowlarr

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Jan 24, 2023 License: MPL-2.0 Imports: 21 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

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

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

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// 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")
)
View Source
var AllowedApplicationSyncLevelEnumValues = []ApplicationSyncLevel{
	"disabled",
	"addOnly",
	"fullSync",
}

All allowed values of ApplicationSyncLevel enum

View Source
var AllowedApplyTagsEnumValues = []ApplyTags{
	"add",
	"remove",
	"replace",
}

All allowed values of ApplyTags enum

View Source
var AllowedAuthenticationRequiredTypeEnumValues = []AuthenticationRequiredType{
	"enabled",
	"disabledForLocalAddresses",
}

All allowed values of AuthenticationRequiredType enum

View Source
var AllowedAuthenticationTypeEnumValues = []AuthenticationType{
	"none",
	"basic",
	"forms",
	"external",
}

All allowed values of AuthenticationType enum

View Source
var AllowedBackupTypeEnumValues = []BackupType{
	"scheduled",
	"manual",
	"update",
}

All allowed values of BackupType enum

View Source
var AllowedBookSearchParamEnumValues = []BookSearchParam{
	"q",
	"title",
	"author",
	"publisher",
	"genre",
	"year",
}

All allowed values of BookSearchParam enum

View Source
var AllowedCertificateValidationTypeEnumValues = []CertificateValidationType{
	"enabled",
	"disabledForLocalAddresses",
	"disabled",
}

All allowed values of CertificateValidationType enum

View Source
var AllowedCommandPriorityEnumValues = []CommandPriority{
	"normal",
	"high",
	"low",
}

All allowed values of CommandPriority enum

View Source
var AllowedCommandStatusEnumValues = []CommandStatus{
	"queued",
	"started",
	"completed",
	"failed",
	"aborted",
	"cancelled",
	"orphaned",
}

All allowed values of CommandStatus enum

View Source
var AllowedCommandTriggerEnumValues = []CommandTrigger{
	"unspecified",
	"manual",
	"scheduled",
}

All allowed values of CommandTrigger enum

View Source
var AllowedDownloadProtocolEnumValues = []DownloadProtocol{
	"unknown",
	"usenet",
	"torrent",
}

All allowed values of DownloadProtocol enum

View Source
var AllowedHealthCheckResultEnumValues = []HealthCheckResult{
	"ok",
	"notice",
	"warning",
	"error",
}

All allowed values of HealthCheckResult enum

View Source
var AllowedHistoryEventTypeEnumValues = []HistoryEventType{
	"unknown",
	"releaseGrabbed",
	"indexerQuery",
	"indexerRss",
	"indexerAuth",
	"indexerInfo",
}

All allowed values of HistoryEventType enum

View Source
var AllowedIndexerPrivacyEnumValues = []IndexerPrivacy{
	"public",
	"semiPrivate",
	"private",
}

All allowed values of IndexerPrivacy enum

View Source
var AllowedMovieSearchParamEnumValues = []MovieSearchParam{
	"q",
	"imdbId",
	"tmdbId",
	"imdbTitle",
	"imdbYear",
	"traktId",
	"genre",
	"doubanId",
	"year",
}

All allowed values of MovieSearchParam enum

View Source
var AllowedMusicSearchParamEnumValues = []MusicSearchParam{
	"q",
	"album",
	"artist",
	"label",
	"year",
	"genre",
	"track",
}

All allowed values of MusicSearchParam enum

View Source
var AllowedProviderMessageTypeEnumValues = []ProviderMessageType{
	"info",
	"warning",
	"error",
}

All allowed values of ProviderMessageType enum

View Source
var AllowedProxyTypeEnumValues = []ProxyType{
	"http",
	"socks4",
	"socks5",
}

All allowed values of ProxyType enum

View Source
var AllowedSearchParamEnumValues = []SearchParam{
	"q",
}

All allowed values of SearchParam enum

View Source
var AllowedSortDirectionEnumValues = []SortDirection{
	"default",
	"ascending",
	"descending",
}

All allowed values of SortDirection enum

View Source
var AllowedTvSearchParamEnumValues = []TvSearchParam{
	"q",
	"season",
	"ep",
	"imdbId",
	"tvdbId",
	"rId",
	"tvMazeId",
	"traktId",
	"tmdbId",
	"doubanId",
	"genre",
	"year",
}

All allowed values of TvSearchParam enum

View Source
var AllowedUpdateMechanismEnumValues = []UpdateMechanism{
	"builtIn",
	"script",
	"external",
	"apt",
	"docker",
}

All allowed values of UpdateMechanism enum

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 {

	// API Services
	ApiInfoApi                  *ApiInfoApiService
	AppProfileApi               *AppProfileApiService
	ApplicationApi              *ApplicationApiService
	AuthenticationApi           *AuthenticationApiService
	BackupApi                   *BackupApiService
	CommandApi                  *CommandApiService
	CustomFilterApi             *CustomFilterApiService
	DevelopmentConfigApi        *DevelopmentConfigApiService
	DownloadClientApi           *DownloadClientApiService
	DownloadClientConfigApi     *DownloadClientConfigApiService
	FileSystemApi               *FileSystemApiService
	HealthApi                   *HealthApiService
	HistoryApi                  *HistoryApiService
	HostConfigApi               *HostConfigApiService
	IndexerApi                  *IndexerApiService
	IndexerDefaultCategoriesApi *IndexerDefaultCategoriesApiService
	IndexerEditorApi            *IndexerEditorApiService
	IndexerProxyApi             *IndexerProxyApiService
	IndexerStatsApi             *IndexerStatsApiService
	IndexerStatusApi            *IndexerStatusApiService
	InitializeJsApi             *InitializeJsApiService
	LocalizationApi             *LocalizationApiService
	LogApi                      *LogApiService
	LogFileApi                  *LogFileApiService
	NewznabApi                  *NewznabApiService
	NotificationApi             *NotificationApiService
	QualityProfileSchemaApi     *QualityProfileSchemaApiService
	SearchApi                   *SearchApiService
	StaticResourceApi           *StaticResourceApiService
	SystemApi                   *SystemApiService
	TagApi                      *TagApiService
	TagDetailsApi               *TagDetailsApiService
	TaskApi                     *TaskApiService
	UiConfigApi                 *UiConfigApiService
	UpdateApi                   *UpdateApiService
	UpdateLogFileApi            *UpdateLogFileApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Prowlarr API v1.0.0 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 ApiCreateAppProfileRequest

type ApiCreateAppProfileRequest struct {
	ApiService *AppProfileApiService
	// contains filtered or unexported fields
}

func (ApiCreateAppProfileRequest) AppProfileResource

func (r ApiCreateAppProfileRequest) AppProfileResource(appProfileResource AppProfileResource) ApiCreateAppProfileRequest

func (ApiCreateAppProfileRequest) Execute

type ApiCreateApplicationsActionByNameRequest

type ApiCreateApplicationsActionByNameRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiCreateApplicationsActionByNameRequest) ApplicationResource

func (ApiCreateApplicationsActionByNameRequest) Execute

type ApiCreateApplicationsRequest

type ApiCreateApplicationsRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiCreateApplicationsRequest) ApplicationResource

func (r ApiCreateApplicationsRequest) ApplicationResource(applicationResource ApplicationResource) ApiCreateApplicationsRequest

func (ApiCreateApplicationsRequest) Execute

type ApiCreateCommandRequest

type ApiCreateCommandRequest struct {
	ApiService *CommandApiService
	// contains filtered or unexported fields
}

func (ApiCreateCommandRequest) CommandResource

func (r ApiCreateCommandRequest) CommandResource(commandResource CommandResource) ApiCreateCommandRequest

func (ApiCreateCommandRequest) Execute

type ApiCreateCustomFilterRequest

type ApiCreateCustomFilterRequest struct {
	ApiService *CustomFilterApiService
	// contains filtered or unexported fields
}

func (ApiCreateCustomFilterRequest) CustomFilterResource

func (r ApiCreateCustomFilterRequest) CustomFilterResource(customFilterResource CustomFilterResource) ApiCreateCustomFilterRequest

func (ApiCreateCustomFilterRequest) Execute

type ApiCreateDownloadClientActionByNameRequest

type ApiCreateDownloadClientActionByNameRequest struct {
	ApiService *DownloadClientApiService
	// contains filtered or unexported fields
}

func (ApiCreateDownloadClientActionByNameRequest) DownloadClientResource

func (ApiCreateDownloadClientActionByNameRequest) Execute

type ApiCreateDownloadClientRequest

type ApiCreateDownloadClientRequest struct {
	ApiService *DownloadClientApiService
	// contains filtered or unexported fields
}

func (ApiCreateDownloadClientRequest) DownloadClientResource

func (r ApiCreateDownloadClientRequest) DownloadClientResource(downloadClientResource DownloadClientResource) ApiCreateDownloadClientRequest

func (ApiCreateDownloadClientRequest) Execute

type ApiCreateIndexerActionByNameRequest

type ApiCreateIndexerActionByNameRequest struct {
	ApiService *IndexerApiService
	// contains filtered or unexported fields
}

func (ApiCreateIndexerActionByNameRequest) Execute

func (ApiCreateIndexerActionByNameRequest) IndexerResource

type ApiCreateIndexerProxyActionByNameRequest

type ApiCreateIndexerProxyActionByNameRequest struct {
	ApiService *IndexerProxyApiService
	// contains filtered or unexported fields
}

func (ApiCreateIndexerProxyActionByNameRequest) Execute

func (ApiCreateIndexerProxyActionByNameRequest) IndexerProxyResource

type ApiCreateIndexerProxyRequest

type ApiCreateIndexerProxyRequest struct {
	ApiService *IndexerProxyApiService
	// contains filtered or unexported fields
}

func (ApiCreateIndexerProxyRequest) Execute

func (ApiCreateIndexerProxyRequest) IndexerProxyResource

func (r ApiCreateIndexerProxyRequest) IndexerProxyResource(indexerProxyResource IndexerProxyResource) ApiCreateIndexerProxyRequest

type ApiCreateIndexerRequest

type ApiCreateIndexerRequest struct {
	ApiService *IndexerApiService
	// contains filtered or unexported fields
}

func (ApiCreateIndexerRequest) Execute

func (ApiCreateIndexerRequest) IndexerResource

func (r ApiCreateIndexerRequest) IndexerResource(indexerResource IndexerResource) ApiCreateIndexerRequest

type ApiCreateLoginRequest

type ApiCreateLoginRequest struct {
	ApiService *AuthenticationApiService
	// contains filtered or unexported fields
}

func (ApiCreateLoginRequest) Execute

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

func (ApiCreateLoginRequest) Password

func (r ApiCreateLoginRequest) Password(password string) ApiCreateLoginRequest

func (ApiCreateLoginRequest) RememberMe

func (r ApiCreateLoginRequest) RememberMe(rememberMe string) ApiCreateLoginRequest

func (ApiCreateLoginRequest) ReturnUrl

func (r ApiCreateLoginRequest) ReturnUrl(returnUrl string) ApiCreateLoginRequest

func (ApiCreateLoginRequest) Username

func (r ApiCreateLoginRequest) Username(username string) ApiCreateLoginRequest

type ApiCreateNotificationActionByNameRequest

type ApiCreateNotificationActionByNameRequest struct {
	ApiService *NotificationApiService
	// contains filtered or unexported fields
}

func (ApiCreateNotificationActionByNameRequest) Execute

func (ApiCreateNotificationActionByNameRequest) NotificationResource

type ApiCreateNotificationRequest

type ApiCreateNotificationRequest struct {
	ApiService *NotificationApiService
	// contains filtered or unexported fields
}

func (ApiCreateNotificationRequest) Execute

func (ApiCreateNotificationRequest) NotificationResource

func (r ApiCreateNotificationRequest) NotificationResource(notificationResource NotificationResource) ApiCreateNotificationRequest

type ApiCreateSearchBulkRequest

type ApiCreateSearchBulkRequest struct {
	ApiService *SearchApiService
	// contains filtered or unexported fields
}

func (ApiCreateSearchBulkRequest) Execute

func (ApiCreateSearchBulkRequest) ReleaseResource

func (r ApiCreateSearchBulkRequest) ReleaseResource(releaseResource []ReleaseResource) ApiCreateSearchBulkRequest

type ApiCreateSearchRequest

type ApiCreateSearchRequest struct {
	ApiService *SearchApiService
	// contains filtered or unexported fields
}

func (ApiCreateSearchRequest) Execute

func (ApiCreateSearchRequest) ReleaseResource

func (r ApiCreateSearchRequest) ReleaseResource(releaseResource ReleaseResource) ApiCreateSearchRequest

type ApiCreateSystemBackupRestoreByIdRequest

type ApiCreateSystemBackupRestoreByIdRequest struct {
	ApiService *BackupApiService
	// contains filtered or unexported fields
}

func (ApiCreateSystemBackupRestoreByIdRequest) Execute

type ApiCreateSystemBackupRestoreUploadRequest

type ApiCreateSystemBackupRestoreUploadRequest struct {
	ApiService *BackupApiService
	// contains filtered or unexported fields
}

func (ApiCreateSystemBackupRestoreUploadRequest) Execute

type ApiCreateSystemRestartRequest

type ApiCreateSystemRestartRequest struct {
	ApiService *SystemApiService
	// contains filtered or unexported fields
}

func (ApiCreateSystemRestartRequest) Execute

type ApiCreateSystemShutdownRequest

type ApiCreateSystemShutdownRequest struct {
	ApiService *SystemApiService
	// contains filtered or unexported fields
}

func (ApiCreateSystemShutdownRequest) Execute

type ApiCreateTagRequest

type ApiCreateTagRequest struct {
	ApiService *TagApiService
	// contains filtered or unexported fields
}

func (ApiCreateTagRequest) Execute

func (ApiCreateTagRequest) TagResource

func (r ApiCreateTagRequest) TagResource(tagResource TagResource) ApiCreateTagRequest

type ApiDeleteAppProfileRequest

type ApiDeleteAppProfileRequest struct {
	ApiService *AppProfileApiService
	// contains filtered or unexported fields
}

func (ApiDeleteAppProfileRequest) Execute

type ApiDeleteApplicationsRequest

type ApiDeleteApplicationsRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiDeleteApplicationsRequest) Execute

type ApiDeleteCommandRequest

type ApiDeleteCommandRequest struct {
	ApiService *CommandApiService
	// contains filtered or unexported fields
}

func (ApiDeleteCommandRequest) Execute

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

type ApiDeleteCustomFilterRequest

type ApiDeleteCustomFilterRequest struct {
	ApiService *CustomFilterApiService
	// contains filtered or unexported fields
}

func (ApiDeleteCustomFilterRequest) Execute

type ApiDeleteDownloadClientRequest

type ApiDeleteDownloadClientRequest struct {
	ApiService *DownloadClientApiService
	// contains filtered or unexported fields
}

func (ApiDeleteDownloadClientRequest) Execute

type ApiDeleteIndexerEditorRequest

type ApiDeleteIndexerEditorRequest struct {
	ApiService *IndexerEditorApiService
	// contains filtered or unexported fields
}

func (ApiDeleteIndexerEditorRequest) Execute

func (ApiDeleteIndexerEditorRequest) IndexerEditorResource

func (r ApiDeleteIndexerEditorRequest) IndexerEditorResource(indexerEditorResource IndexerEditorResource) ApiDeleteIndexerEditorRequest

type ApiDeleteIndexerProxyRequest

type ApiDeleteIndexerProxyRequest struct {
	ApiService *IndexerProxyApiService
	// contains filtered or unexported fields
}

func (ApiDeleteIndexerProxyRequest) Execute

type ApiDeleteIndexerRequest

type ApiDeleteIndexerRequest struct {
	ApiService *IndexerApiService
	// contains filtered or unexported fields
}

func (ApiDeleteIndexerRequest) Execute

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

type ApiDeleteNotificationRequest

type ApiDeleteNotificationRequest struct {
	ApiService *NotificationApiService
	// contains filtered or unexported fields
}

func (ApiDeleteNotificationRequest) Execute

type ApiDeleteSystemBackupRequest

type ApiDeleteSystemBackupRequest struct {
	ApiService *BackupApiService
	// contains filtered or unexported fields
}

func (ApiDeleteSystemBackupRequest) Execute

type ApiDeleteTagRequest

type ApiDeleteTagRequest struct {
	ApiService *TagApiService
	// contains filtered or unexported fields
}

func (ApiDeleteTagRequest) Execute

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

type ApiGetApiRequest

type ApiGetApiRequest struct {
	ApiService *ApiInfoApiService
	// contains filtered or unexported fields
}

func (ApiGetApiRequest) Execute

type ApiGetAppProfileByIdRequest

type ApiGetAppProfileByIdRequest struct {
	ApiService *AppProfileApiService
	// contains filtered or unexported fields
}

func (ApiGetAppProfileByIdRequest) Execute

type ApiGetApplicationsByIdRequest

type ApiGetApplicationsByIdRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiGetApplicationsByIdRequest) Execute

type ApiGetAppprofileSchemaRequest

type ApiGetAppprofileSchemaRequest struct {
	ApiService *QualityProfileSchemaApiService
	// contains filtered or unexported fields
}

func (ApiGetAppprofileSchemaRequest) Execute

type ApiGetByPathRequest

type ApiGetByPathRequest struct {
	ApiService *StaticResourceApiService
	// contains filtered or unexported fields
}

func (ApiGetByPathRequest) Execute

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

type ApiGetCommandByIdRequest

type ApiGetCommandByIdRequest struct {
	ApiService *CommandApiService
	// contains filtered or unexported fields
}

func (ApiGetCommandByIdRequest) Execute

type ApiGetContentByPathRequest

type ApiGetContentByPathRequest struct {
	ApiService *StaticResourceApiService
	// contains filtered or unexported fields
}

func (ApiGetContentByPathRequest) Execute

type ApiGetCustomFilterByIdRequest

type ApiGetCustomFilterByIdRequest struct {
	ApiService *CustomFilterApiService
	// contains filtered or unexported fields
}

func (ApiGetCustomFilterByIdRequest) Execute

type ApiGetDevelopmentConfigByIdRequest

type ApiGetDevelopmentConfigByIdRequest struct {
	ApiService *DevelopmentConfigApiService
	// contains filtered or unexported fields
}

func (ApiGetDevelopmentConfigByIdRequest) Execute

type ApiGetDevelopmentConfigRequest

type ApiGetDevelopmentConfigRequest struct {
	ApiService *DevelopmentConfigApiService
	// contains filtered or unexported fields
}

func (ApiGetDevelopmentConfigRequest) Execute

type ApiGetDownloadClientByIdRequest

type ApiGetDownloadClientByIdRequest struct {
	ApiService *DownloadClientApiService
	// contains filtered or unexported fields
}

func (ApiGetDownloadClientByIdRequest) Execute

type ApiGetDownloadClientConfigByIdRequest

type ApiGetDownloadClientConfigByIdRequest struct {
	ApiService *DownloadClientConfigApiService
	// contains filtered or unexported fields
}

func (ApiGetDownloadClientConfigByIdRequest) Execute

type ApiGetDownloadClientConfigRequest

type ApiGetDownloadClientConfigRequest struct {
	ApiService *DownloadClientConfigApiService
	// contains filtered or unexported fields
}

func (ApiGetDownloadClientConfigRequest) Execute

type ApiGetFileSystemRequest

type ApiGetFileSystemRequest struct {
	ApiService *FileSystemApiService
	// contains filtered or unexported fields
}

func (ApiGetFileSystemRequest) AllowFoldersWithoutTrailingSlashes

func (r ApiGetFileSystemRequest) AllowFoldersWithoutTrailingSlashes(allowFoldersWithoutTrailingSlashes bool) ApiGetFileSystemRequest

func (ApiGetFileSystemRequest) Execute

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

func (ApiGetFileSystemRequest) IncludeFiles

func (r ApiGetFileSystemRequest) IncludeFiles(includeFiles bool) ApiGetFileSystemRequest

func (ApiGetFileSystemRequest) Path

type ApiGetFileSystemTypeRequest

type ApiGetFileSystemTypeRequest struct {
	ApiService *FileSystemApiService
	// contains filtered or unexported fields
}

func (ApiGetFileSystemTypeRequest) Execute

func (ApiGetFileSystemTypeRequest) Path

type ApiGetHealthByIdRequest

type ApiGetHealthByIdRequest struct {
	ApiService *HealthApiService
	// contains filtered or unexported fields
}

func (ApiGetHealthByIdRequest) Execute

type ApiGetHistoryRequest

type ApiGetHistoryRequest struct {
	ApiService *HistoryApiService
	// contains filtered or unexported fields
}

func (ApiGetHistoryRequest) Execute

type ApiGetHostConfigByIdRequest

type ApiGetHostConfigByIdRequest struct {
	ApiService *HostConfigApiService
	// contains filtered or unexported fields
}

func (ApiGetHostConfigByIdRequest) Execute

type ApiGetHostConfigRequest

type ApiGetHostConfigRequest struct {
	ApiService *HostConfigApiService
	// contains filtered or unexported fields
}

func (ApiGetHostConfigRequest) Execute

type ApiGetIndexerByIdRequest

type ApiGetIndexerByIdRequest struct {
	ApiService *IndexerApiService
	// contains filtered or unexported fields
}

func (ApiGetIndexerByIdRequest) Execute

type ApiGetIndexerProxyByIdRequest

type ApiGetIndexerProxyByIdRequest struct {
	ApiService *IndexerProxyApiService
	// contains filtered or unexported fields
}

func (ApiGetIndexerProxyByIdRequest) Execute

type ApiGetIndexerStatsRequest

type ApiGetIndexerStatsRequest struct {
	ApiService *IndexerStatsApiService
	// contains filtered or unexported fields
}

func (ApiGetIndexerStatsRequest) EndDate

func (ApiGetIndexerStatsRequest) Execute

func (ApiGetIndexerStatsRequest) StartDate

type ApiGetIndexerStatusByIdRequest

type ApiGetIndexerStatusByIdRequest struct {
	ApiService *IndexerStatusApiService
	// contains filtered or unexported fields
}

func (ApiGetIndexerStatusByIdRequest) Execute

type ApiGetIndexeridDownloadRequest

type ApiGetIndexeridDownloadRequest struct {
	ApiService *NewznabApiService
	// contains filtered or unexported fields
}

func (ApiGetIndexeridDownloadRequest) Execute

func (ApiGetIndexeridDownloadRequest) File

type ApiGetIndexeridNewznabRequest

type ApiGetIndexeridNewznabRequest struct {
	ApiService *NewznabApiService
	// contains filtered or unexported fields
}

func (ApiGetIndexeridNewznabRequest) Album

func (ApiGetIndexeridNewznabRequest) Artist

func (ApiGetIndexeridNewznabRequest) Author

func (ApiGetIndexeridNewznabRequest) Cat

func (ApiGetIndexeridNewznabRequest) Configured

func (ApiGetIndexeridNewznabRequest) Doubanid

func (ApiGetIndexeridNewznabRequest) Ep

func (ApiGetIndexeridNewznabRequest) Execute

func (ApiGetIndexeridNewznabRequest) Extended

func (ApiGetIndexeridNewznabRequest) Genre

func (ApiGetIndexeridNewznabRequest) Host

func (ApiGetIndexeridNewznabRequest) Imdbid

func (ApiGetIndexeridNewznabRequest) Label

func (ApiGetIndexeridNewznabRequest) Limit

func (ApiGetIndexeridNewznabRequest) Offset

func (ApiGetIndexeridNewznabRequest) Publisher

func (ApiGetIndexeridNewznabRequest) Q

func (ApiGetIndexeridNewznabRequest) Rid

func (ApiGetIndexeridNewznabRequest) Season

func (ApiGetIndexeridNewznabRequest) Server

func (ApiGetIndexeridNewznabRequest) Source

func (ApiGetIndexeridNewznabRequest) T

func (ApiGetIndexeridNewznabRequest) Title

func (ApiGetIndexeridNewznabRequest) Tmdbid

func (ApiGetIndexeridNewznabRequest) Track

func (ApiGetIndexeridNewznabRequest) Traktid

func (ApiGetIndexeridNewznabRequest) Tvdbid

func (ApiGetIndexeridNewznabRequest) Tvmazeid

func (ApiGetIndexeridNewznabRequest) Year

type ApiGetInitializeJsRequest

type ApiGetInitializeJsRequest struct {
	ApiService *InitializeJsApiService
	// contains filtered or unexported fields
}

func (ApiGetInitializeJsRequest) Execute

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

type ApiGetLocalizationRequest

type ApiGetLocalizationRequest struct {
	ApiService *LocalizationApiService
	// contains filtered or unexported fields
}

func (ApiGetLocalizationRequest) Execute

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

type ApiGetLogFileByFilenameRequest

type ApiGetLogFileByFilenameRequest struct {
	ApiService *LogFileApiService
	// contains filtered or unexported fields
}

func (ApiGetLogFileByFilenameRequest) Execute

type ApiGetLogFileUpdateByFilenameRequest

type ApiGetLogFileUpdateByFilenameRequest struct {
	ApiService *UpdateLogFileApiService
	// contains filtered or unexported fields
}

func (ApiGetLogFileUpdateByFilenameRequest) Execute

type ApiGetLogRequest

type ApiGetLogRequest struct {
	ApiService *LogApiService
	// contains filtered or unexported fields
}

func (ApiGetLogRequest) Execute

type ApiGetLoginRequest

type ApiGetLoginRequest struct {
	ApiService *StaticResourceApiService
	// contains filtered or unexported fields
}

func (ApiGetLoginRequest) Execute

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

type ApiGetLogoutRequest

type ApiGetLogoutRequest struct {
	ApiService *AuthenticationApiService
	// contains filtered or unexported fields
}

func (ApiGetLogoutRequest) Execute

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

type ApiGetNotificationByIdRequest

type ApiGetNotificationByIdRequest struct {
	ApiService *NotificationApiService
	// contains filtered or unexported fields
}

func (ApiGetNotificationByIdRequest) Execute

type ApiGetRequest

type ApiGetRequest struct {
	ApiService *StaticResourceApiService
	// contains filtered or unexported fields
}

func (ApiGetRequest) Execute

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

type ApiGetSearchByIdRequest

type ApiGetSearchByIdRequest struct {
	ApiService *SearchApiService
	// contains filtered or unexported fields
}

func (ApiGetSearchByIdRequest) Execute

type ApiGetSystemRoutesDuplicateRequest

type ApiGetSystemRoutesDuplicateRequest struct {
	ApiService *SystemApiService
	// contains filtered or unexported fields
}

func (ApiGetSystemRoutesDuplicateRequest) Execute

type ApiGetSystemRoutesRequest

type ApiGetSystemRoutesRequest struct {
	ApiService *SystemApiService
	// contains filtered or unexported fields
}

func (ApiGetSystemRoutesRequest) Execute

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

type ApiGetSystemStatusRequest

type ApiGetSystemStatusRequest struct {
	ApiService *SystemApiService
	// contains filtered or unexported fields
}

func (ApiGetSystemStatusRequest) Execute

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

type ApiGetSystemTaskByIdRequest

type ApiGetSystemTaskByIdRequest struct {
	ApiService *TaskApiService
	// contains filtered or unexported fields
}

func (ApiGetSystemTaskByIdRequest) Execute

type ApiGetTagByIdRequest

type ApiGetTagByIdRequest struct {
	ApiService *TagApiService
	// contains filtered or unexported fields
}

func (ApiGetTagByIdRequest) Execute

type ApiGetTagDetailByIdRequest

type ApiGetTagDetailByIdRequest struct {
	ApiService *TagDetailsApiService
	// contains filtered or unexported fields
}

func (ApiGetTagDetailByIdRequest) Execute

type ApiGetUiConfigByIdRequest

type ApiGetUiConfigByIdRequest struct {
	ApiService *UiConfigApiService
	// contains filtered or unexported fields
}

func (ApiGetUiConfigByIdRequest) Execute

type ApiGetUiConfigRequest

type ApiGetUiConfigRequest struct {
	ApiService *UiConfigApiService
	// contains filtered or unexported fields
}

func (ApiGetUiConfigRequest) Execute

type ApiGetidApiRequest

type ApiGetidApiRequest struct {
	ApiService *NewznabApiService
	// contains filtered or unexported fields
}

func (ApiGetidApiRequest) Album

func (ApiGetidApiRequest) Artist

func (r ApiGetidApiRequest) Artist(artist string) ApiGetidApiRequest

func (ApiGetidApiRequest) Author

func (r ApiGetidApiRequest) Author(author string) ApiGetidApiRequest

func (ApiGetidApiRequest) Cat

func (ApiGetidApiRequest) Configured

func (r ApiGetidApiRequest) Configured(configured string) ApiGetidApiRequest

func (ApiGetidApiRequest) Doubanid

func (r ApiGetidApiRequest) Doubanid(doubanid int32) ApiGetidApiRequest

func (ApiGetidApiRequest) Ep

func (ApiGetidApiRequest) Execute

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

func (ApiGetidApiRequest) Extended

func (r ApiGetidApiRequest) Extended(extended string) ApiGetidApiRequest

func (ApiGetidApiRequest) Genre

func (ApiGetidApiRequest) Host

func (ApiGetidApiRequest) Imdbid

func (r ApiGetidApiRequest) Imdbid(imdbid string) ApiGetidApiRequest

func (ApiGetidApiRequest) Label

func (ApiGetidApiRequest) Limit

func (ApiGetidApiRequest) Offset

func (r ApiGetidApiRequest) Offset(offset int32) ApiGetidApiRequest

func (ApiGetidApiRequest) Publisher

func (r ApiGetidApiRequest) Publisher(publisher string) ApiGetidApiRequest

func (ApiGetidApiRequest) Q

func (ApiGetidApiRequest) Rid

func (ApiGetidApiRequest) Season

func (r ApiGetidApiRequest) Season(season int32) ApiGetidApiRequest

func (ApiGetidApiRequest) Server

func (r ApiGetidApiRequest) Server(server string) ApiGetidApiRequest

func (ApiGetidApiRequest) Source

func (r ApiGetidApiRequest) Source(source string) ApiGetidApiRequest

func (ApiGetidApiRequest) T

func (ApiGetidApiRequest) Title

func (ApiGetidApiRequest) Tmdbid

func (r ApiGetidApiRequest) Tmdbid(tmdbid int32) ApiGetidApiRequest

func (ApiGetidApiRequest) Track

func (ApiGetidApiRequest) Traktid

func (r ApiGetidApiRequest) Traktid(traktid int32) ApiGetidApiRequest

func (ApiGetidApiRequest) Tvdbid

func (r ApiGetidApiRequest) Tvdbid(tvdbid int32) ApiGetidApiRequest

func (ApiGetidApiRequest) Tvmazeid

func (r ApiGetidApiRequest) Tvmazeid(tvmazeid int32) ApiGetidApiRequest

func (ApiGetidApiRequest) Year

type ApiGetidDownloadRequest

type ApiGetidDownloadRequest struct {
	ApiService *NewznabApiService
	// contains filtered or unexported fields
}

func (ApiGetidDownloadRequest) Execute

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

func (ApiGetidDownloadRequest) File

type ApiInfoApiService

type ApiInfoApiService service

ApiInfoApiService ApiInfoApi service

func (*ApiInfoApiService) GetApi

GetApi Method for GetApi

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

func (*ApiInfoApiService) GetApiExecute

Execute executes the request

@return ApiInfoResource

type ApiInfoResource

type ApiInfoResource struct {
	Current    NullableString `json:"current,omitempty"`
	Deprecated []*string      `json:"deprecated,omitempty"`
}

ApiInfoResource struct for ApiInfoResource

func NewApiInfoResource

func NewApiInfoResource() *ApiInfoResource

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

func NewApiInfoResourceWithDefaults

func NewApiInfoResourceWithDefaults() *ApiInfoResource

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

func (*ApiInfoResource) GetCurrent

func (o *ApiInfoResource) GetCurrent() string

GetCurrent returns the Current field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApiInfoResource) GetCurrentOk

func (o *ApiInfoResource) GetCurrentOk() (*string, bool)

GetCurrentOk returns a tuple with the Current 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 (*ApiInfoResource) GetDeprecated

func (o *ApiInfoResource) GetDeprecated() []*string

GetDeprecated returns the Deprecated field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApiInfoResource) GetDeprecatedOk

func (o *ApiInfoResource) GetDeprecatedOk() ([]*string, bool)

GetDeprecatedOk returns a tuple with the Deprecated 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 (*ApiInfoResource) HasCurrent

func (o *ApiInfoResource) HasCurrent() bool

HasCurrent returns a boolean if a field has been set.

func (*ApiInfoResource) HasDeprecated

func (o *ApiInfoResource) HasDeprecated() bool

HasDeprecated returns a boolean if a field has been set.

func (ApiInfoResource) MarshalJSON

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

func (*ApiInfoResource) SetCurrent

func (o *ApiInfoResource) SetCurrent(v string)

SetCurrent gets a reference to the given NullableString and assigns it to the Current field.

func (*ApiInfoResource) SetCurrentNil

func (o *ApiInfoResource) SetCurrentNil()

SetCurrentNil sets the value for Current to be an explicit nil

func (*ApiInfoResource) SetDeprecated

func (o *ApiInfoResource) SetDeprecated(v []*string)

SetDeprecated gets a reference to the given []string and assigns it to the Deprecated field.

func (*ApiInfoResource) UnsetCurrent

func (o *ApiInfoResource) UnsetCurrent()

UnsetCurrent ensures that no value is present for Current, not even an explicit nil

type ApiListAppProfileRequest

type ApiListAppProfileRequest struct {
	ApiService *AppProfileApiService
	// contains filtered or unexported fields
}

func (ApiListAppProfileRequest) Execute

type ApiListApplicationsRequest

type ApiListApplicationsRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiListApplicationsRequest) Execute

type ApiListApplicationsSchemaRequest

type ApiListApplicationsSchemaRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiListApplicationsSchemaRequest) Execute

type ApiListCommandRequest

type ApiListCommandRequest struct {
	ApiService *CommandApiService
	// contains filtered or unexported fields
}

func (ApiListCommandRequest) Execute

type ApiListCustomFilterRequest

type ApiListCustomFilterRequest struct {
	ApiService *CustomFilterApiService
	// contains filtered or unexported fields
}

func (ApiListCustomFilterRequest) Execute

type ApiListDownloadClientRequest

type ApiListDownloadClientRequest struct {
	ApiService *DownloadClientApiService
	// contains filtered or unexported fields
}

func (ApiListDownloadClientRequest) Execute

type ApiListDownloadClientSchemaRequest

type ApiListDownloadClientSchemaRequest struct {
	ApiService *DownloadClientApiService
	// contains filtered or unexported fields
}

func (ApiListDownloadClientSchemaRequest) Execute

type ApiListHealthRequest

type ApiListHealthRequest struct {
	ApiService *HealthApiService
	// contains filtered or unexported fields
}

func (ApiListHealthRequest) Execute

type ApiListHistoryIndexerRequest

type ApiListHistoryIndexerRequest struct {
	ApiService *HistoryApiService
	// contains filtered or unexported fields
}

func (ApiListHistoryIndexerRequest) EventType

func (ApiListHistoryIndexerRequest) Execute

func (ApiListHistoryIndexerRequest) IndexerId

type ApiListHistorySinceRequest

type ApiListHistorySinceRequest struct {
	ApiService *HistoryApiService
	// contains filtered or unexported fields
}

func (ApiListHistorySinceRequest) Date

func (ApiListHistorySinceRequest) EventType

func (ApiListHistorySinceRequest) Execute

type ApiListIndexerCategoriesRequest

type ApiListIndexerCategoriesRequest struct {
	ApiService *IndexerDefaultCategoriesApiService
	// contains filtered or unexported fields
}

func (ApiListIndexerCategoriesRequest) Execute

type ApiListIndexerProxyRequest

type ApiListIndexerProxyRequest struct {
	ApiService *IndexerProxyApiService
	// contains filtered or unexported fields
}

func (ApiListIndexerProxyRequest) Execute

type ApiListIndexerProxySchemaRequest

type ApiListIndexerProxySchemaRequest struct {
	ApiService *IndexerProxyApiService
	// contains filtered or unexported fields
}

func (ApiListIndexerProxySchemaRequest) Execute

type ApiListIndexerRequest

type ApiListIndexerRequest struct {
	ApiService *IndexerApiService
	// contains filtered or unexported fields
}

func (ApiListIndexerRequest) Execute

type ApiListIndexerSchemaRequest

type ApiListIndexerSchemaRequest struct {
	ApiService *IndexerApiService
	// contains filtered or unexported fields
}

func (ApiListIndexerSchemaRequest) Execute

type ApiListIndexerStatusRequest

type ApiListIndexerStatusRequest struct {
	ApiService *IndexerStatusApiService
	// contains filtered or unexported fields
}

func (ApiListIndexerStatusRequest) Execute

type ApiListLocalizationOptionsRequest

type ApiListLocalizationOptionsRequest struct {
	ApiService *LocalizationApiService
	// contains filtered or unexported fields
}

func (ApiListLocalizationOptionsRequest) Execute

type ApiListLogFileRequest

type ApiListLogFileRequest struct {
	ApiService *LogFileApiService
	// contains filtered or unexported fields
}

func (ApiListLogFileRequest) Execute

type ApiListLogFileUpdateRequest

type ApiListLogFileUpdateRequest struct {
	ApiService *UpdateLogFileApiService
	// contains filtered or unexported fields
}

func (ApiListLogFileUpdateRequest) Execute

type ApiListNotificationRequest

type ApiListNotificationRequest struct {
	ApiService *NotificationApiService
	// contains filtered or unexported fields
}

func (ApiListNotificationRequest) Execute

type ApiListNotificationSchemaRequest

type ApiListNotificationSchemaRequest struct {
	ApiService *NotificationApiService
	// contains filtered or unexported fields
}

func (ApiListNotificationSchemaRequest) Execute

type ApiListSearchRequest

type ApiListSearchRequest struct {
	ApiService *SearchApiService
	// contains filtered or unexported fields
}

func (ApiListSearchRequest) Categories

func (r ApiListSearchRequest) Categories(categories []int32) ApiListSearchRequest

func (ApiListSearchRequest) Execute

func (ApiListSearchRequest) IndexerIds

func (r ApiListSearchRequest) IndexerIds(indexerIds []int32) ApiListSearchRequest

func (ApiListSearchRequest) Limit

func (ApiListSearchRequest) Offset

func (ApiListSearchRequest) Query

func (ApiListSearchRequest) Type_

type ApiListSystemBackupRequest

type ApiListSystemBackupRequest struct {
	ApiService *BackupApiService
	// contains filtered or unexported fields
}

func (ApiListSystemBackupRequest) Execute

type ApiListSystemTaskRequest

type ApiListSystemTaskRequest struct {
	ApiService *TaskApiService
	// contains filtered or unexported fields
}

func (ApiListSystemTaskRequest) Execute

type ApiListTagDetailRequest

type ApiListTagDetailRequest struct {
	ApiService *TagDetailsApiService
	// contains filtered or unexported fields
}

func (ApiListTagDetailRequest) Execute

type ApiListTagRequest

type ApiListTagRequest struct {
	ApiService *TagApiService
	// contains filtered or unexported fields
}

func (ApiListTagRequest) Execute

func (r ApiListTagRequest) Execute() ([]*TagResource, *http.Response, error)

type ApiListUpdateRequest

type ApiListUpdateRequest struct {
	ApiService *UpdateApiService
	// contains filtered or unexported fields
}

func (ApiListUpdateRequest) Execute

type ApiPutIndexerEditorRequest

type ApiPutIndexerEditorRequest struct {
	ApiService *IndexerEditorApiService
	// contains filtered or unexported fields
}

func (ApiPutIndexerEditorRequest) Execute

func (ApiPutIndexerEditorRequest) IndexerEditorResource

func (r ApiPutIndexerEditorRequest) IndexerEditorResource(indexerEditorResource IndexerEditorResource) ApiPutIndexerEditorRequest

type ApiTestApplicationsRequest

type ApiTestApplicationsRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiTestApplicationsRequest) ApplicationResource

func (r ApiTestApplicationsRequest) ApplicationResource(applicationResource ApplicationResource) ApiTestApplicationsRequest

func (ApiTestApplicationsRequest) Execute

type ApiTestDownloadClientRequest

type ApiTestDownloadClientRequest struct {
	ApiService *DownloadClientApiService
	// contains filtered or unexported fields
}

func (ApiTestDownloadClientRequest) DownloadClientResource

func (r ApiTestDownloadClientRequest) DownloadClientResource(downloadClientResource DownloadClientResource) ApiTestDownloadClientRequest

func (ApiTestDownloadClientRequest) Execute

type ApiTestIndexerProxyRequest

type ApiTestIndexerProxyRequest struct {
	ApiService *IndexerProxyApiService
	// contains filtered or unexported fields
}

func (ApiTestIndexerProxyRequest) Execute

func (ApiTestIndexerProxyRequest) IndexerProxyResource

func (r ApiTestIndexerProxyRequest) IndexerProxyResource(indexerProxyResource IndexerProxyResource) ApiTestIndexerProxyRequest

type ApiTestIndexerRequest

type ApiTestIndexerRequest struct {
	ApiService *IndexerApiService
	// contains filtered or unexported fields
}

func (ApiTestIndexerRequest) Execute

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

func (ApiTestIndexerRequest) IndexerResource

func (r ApiTestIndexerRequest) IndexerResource(indexerResource IndexerResource) ApiTestIndexerRequest

type ApiTestNotificationRequest

type ApiTestNotificationRequest struct {
	ApiService *NotificationApiService
	// contains filtered or unexported fields
}

func (ApiTestNotificationRequest) Execute

func (ApiTestNotificationRequest) NotificationResource

func (r ApiTestNotificationRequest) NotificationResource(notificationResource NotificationResource) ApiTestNotificationRequest

type ApiTestallApplicationsRequest

type ApiTestallApplicationsRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiTestallApplicationsRequest) Execute

type ApiTestallDownloadClientRequest

type ApiTestallDownloadClientRequest struct {
	ApiService *DownloadClientApiService
	// contains filtered or unexported fields
}

func (ApiTestallDownloadClientRequest) Execute

type ApiTestallIndexerProxyRequest

type ApiTestallIndexerProxyRequest struct {
	ApiService *IndexerProxyApiService
	// contains filtered or unexported fields
}

func (ApiTestallIndexerProxyRequest) Execute

type ApiTestallIndexerRequest

type ApiTestallIndexerRequest struct {
	ApiService *IndexerApiService
	// contains filtered or unexported fields
}

func (ApiTestallIndexerRequest) Execute

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

type ApiTestallNotificationRequest

type ApiTestallNotificationRequest struct {
	ApiService *NotificationApiService
	// contains filtered or unexported fields
}

func (ApiTestallNotificationRequest) Execute

type ApiUpdateAppProfileRequest

type ApiUpdateAppProfileRequest struct {
	ApiService *AppProfileApiService
	// contains filtered or unexported fields
}

func (ApiUpdateAppProfileRequest) AppProfileResource

func (r ApiUpdateAppProfileRequest) AppProfileResource(appProfileResource AppProfileResource) ApiUpdateAppProfileRequest

func (ApiUpdateAppProfileRequest) Execute

type ApiUpdateApplicationsRequest

type ApiUpdateApplicationsRequest struct {
	ApiService *ApplicationApiService
	// contains filtered or unexported fields
}

func (ApiUpdateApplicationsRequest) ApplicationResource

func (r ApiUpdateApplicationsRequest) ApplicationResource(applicationResource ApplicationResource) ApiUpdateApplicationsRequest

func (ApiUpdateApplicationsRequest) Execute

type ApiUpdateCustomFilterRequest

type ApiUpdateCustomFilterRequest struct {
	ApiService *CustomFilterApiService
	// contains filtered or unexported fields
}

func (ApiUpdateCustomFilterRequest) CustomFilterResource

func (r ApiUpdateCustomFilterRequest) CustomFilterResource(customFilterResource CustomFilterResource) ApiUpdateCustomFilterRequest

func (ApiUpdateCustomFilterRequest) Execute

type ApiUpdateDevelopmentConfigRequest

type ApiUpdateDevelopmentConfigRequest struct {
	ApiService *DevelopmentConfigApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDevelopmentConfigRequest) DevelopmentConfigResource

func (r ApiUpdateDevelopmentConfigRequest) DevelopmentConfigResource(developmentConfigResource DevelopmentConfigResource) ApiUpdateDevelopmentConfigRequest

func (ApiUpdateDevelopmentConfigRequest) Execute

type ApiUpdateDownloadClientConfigRequest

type ApiUpdateDownloadClientConfigRequest struct {
	ApiService *DownloadClientConfigApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDownloadClientConfigRequest) DownloadClientConfigResource

func (r ApiUpdateDownloadClientConfigRequest) DownloadClientConfigResource(downloadClientConfigResource DownloadClientConfigResource) ApiUpdateDownloadClientConfigRequest

func (ApiUpdateDownloadClientConfigRequest) Execute

type ApiUpdateDownloadClientRequest

type ApiUpdateDownloadClientRequest struct {
	ApiService *DownloadClientApiService
	// contains filtered or unexported fields
}

func (ApiUpdateDownloadClientRequest) DownloadClientResource

func (r ApiUpdateDownloadClientRequest) DownloadClientResource(downloadClientResource DownloadClientResource) ApiUpdateDownloadClientRequest

func (ApiUpdateDownloadClientRequest) Execute

type ApiUpdateHostConfigRequest

type ApiUpdateHostConfigRequest struct {
	ApiService *HostConfigApiService
	// contains filtered or unexported fields
}

func (ApiUpdateHostConfigRequest) Execute

func (ApiUpdateHostConfigRequest) HostConfigResource

func (r ApiUpdateHostConfigRequest) HostConfigResource(hostConfigResource HostConfigResource) ApiUpdateHostConfigRequest

type ApiUpdateIndexerProxyRequest

type ApiUpdateIndexerProxyRequest struct {
	ApiService *IndexerProxyApiService
	// contains filtered or unexported fields
}

func (ApiUpdateIndexerProxyRequest) Execute

func (ApiUpdateIndexerProxyRequest) IndexerProxyResource

func (r ApiUpdateIndexerProxyRequest) IndexerProxyResource(indexerProxyResource IndexerProxyResource) ApiUpdateIndexerProxyRequest

type ApiUpdateIndexerRequest

type ApiUpdateIndexerRequest struct {
	ApiService *IndexerApiService
	// contains filtered or unexported fields
}

func (ApiUpdateIndexerRequest) Execute

func (ApiUpdateIndexerRequest) IndexerResource

func (r ApiUpdateIndexerRequest) IndexerResource(indexerResource IndexerResource) ApiUpdateIndexerRequest

type ApiUpdateNotificationRequest

type ApiUpdateNotificationRequest struct {
	ApiService *NotificationApiService
	// contains filtered or unexported fields
}

func (ApiUpdateNotificationRequest) Execute

func (ApiUpdateNotificationRequest) NotificationResource

func (r ApiUpdateNotificationRequest) NotificationResource(notificationResource NotificationResource) ApiUpdateNotificationRequest

type ApiUpdateTagRequest

type ApiUpdateTagRequest struct {
	ApiService *TagApiService
	// contains filtered or unexported fields
}

func (ApiUpdateTagRequest) Execute

func (ApiUpdateTagRequest) TagResource

func (r ApiUpdateTagRequest) TagResource(tagResource TagResource) ApiUpdateTagRequest

type ApiUpdateUiConfigRequest

type ApiUpdateUiConfigRequest struct {
	ApiService *UiConfigApiService
	// contains filtered or unexported fields
}

func (ApiUpdateUiConfigRequest) Execute

func (ApiUpdateUiConfigRequest) UiConfigResource

func (r ApiUpdateUiConfigRequest) UiConfigResource(uiConfigResource UiConfigResource) ApiUpdateUiConfigRequest

type AppProfileApiService

type AppProfileApiService service

AppProfileApiService AppProfileApi service

func (*AppProfileApiService) CreateAppProfile

CreateAppProfile Method for CreateAppProfile

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

func (*AppProfileApiService) CreateAppProfileExecute

Execute executes the request

@return AppProfileResource

func (*AppProfileApiService) DeleteAppProfile

DeleteAppProfile Method for DeleteAppProfile

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

func (*AppProfileApiService) DeleteAppProfileExecute

func (a *AppProfileApiService) DeleteAppProfileExecute(r ApiDeleteAppProfileRequest) (*http.Response, error)

Execute executes the request

func (*AppProfileApiService) GetAppProfileById

GetAppProfileById Method for GetAppProfileById

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

func (*AppProfileApiService) GetAppProfileByIdExecute

Execute executes the request

@return AppProfileResource

func (*AppProfileApiService) ListAppProfile

ListAppProfile Method for ListAppProfile

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

func (*AppProfileApiService) ListAppProfileExecute

Execute executes the request

@return []AppProfileResource

func (*AppProfileApiService) UpdateAppProfile

UpdateAppProfile Method for UpdateAppProfile

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

func (*AppProfileApiService) UpdateAppProfileExecute

Execute executes the request

@return AppProfileResource

type AppProfileResource

type AppProfileResource struct {
	Id                      *int32         `json:"id,omitempty"`
	Name                    NullableString `json:"name,omitempty"`
	EnableRss               *bool          `json:"enableRss,omitempty"`
	EnableInteractiveSearch *bool          `json:"enableInteractiveSearch,omitempty"`
	EnableAutomaticSearch   *bool          `json:"enableAutomaticSearch,omitempty"`
	MinimumSeeders          *int32         `json:"minimumSeeders,omitempty"`
}

AppProfileResource struct for AppProfileResource

func NewAppProfileResource

func NewAppProfileResource() *AppProfileResource

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

func NewAppProfileResourceWithDefaults

func NewAppProfileResourceWithDefaults() *AppProfileResource

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

func (*AppProfileResource) GetEnableAutomaticSearch

func (o *AppProfileResource) GetEnableAutomaticSearch() bool

GetEnableAutomaticSearch returns the EnableAutomaticSearch field value if set, zero value otherwise.

func (*AppProfileResource) GetEnableAutomaticSearchOk

func (o *AppProfileResource) GetEnableAutomaticSearchOk() (*bool, bool)

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

func (*AppProfileResource) GetEnableInteractiveSearch

func (o *AppProfileResource) GetEnableInteractiveSearch() bool

GetEnableInteractiveSearch returns the EnableInteractiveSearch field value if set, zero value otherwise.

func (*AppProfileResource) GetEnableInteractiveSearchOk

func (o *AppProfileResource) GetEnableInteractiveSearchOk() (*bool, bool)

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

func (*AppProfileResource) GetEnableRss

func (o *AppProfileResource) GetEnableRss() bool

GetEnableRss returns the EnableRss field value if set, zero value otherwise.

func (*AppProfileResource) GetEnableRssOk

func (o *AppProfileResource) GetEnableRssOk() (*bool, bool)

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

func (*AppProfileResource) GetId

func (o *AppProfileResource) GetId() int32

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

func (*AppProfileResource) GetIdOk

func (o *AppProfileResource) 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 (*AppProfileResource) GetMinimumSeeders

func (o *AppProfileResource) GetMinimumSeeders() int32

GetMinimumSeeders returns the MinimumSeeders field value if set, zero value otherwise.

func (*AppProfileResource) GetMinimumSeedersOk

func (o *AppProfileResource) GetMinimumSeedersOk() (*int32, bool)

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

func (*AppProfileResource) GetName

func (o *AppProfileResource) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*AppProfileResource) GetNameOk

func (o *AppProfileResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*AppProfileResource) HasEnableAutomaticSearch

func (o *AppProfileResource) HasEnableAutomaticSearch() bool

HasEnableAutomaticSearch returns a boolean if a field has been set.

func (*AppProfileResource) HasEnableInteractiveSearch

func (o *AppProfileResource) HasEnableInteractiveSearch() bool

HasEnableInteractiveSearch returns a boolean if a field has been set.

func (*AppProfileResource) HasEnableRss

func (o *AppProfileResource) HasEnableRss() bool

HasEnableRss returns a boolean if a field has been set.

func (*AppProfileResource) HasId

func (o *AppProfileResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*AppProfileResource) HasMinimumSeeders

func (o *AppProfileResource) HasMinimumSeeders() bool

HasMinimumSeeders returns a boolean if a field has been set.

func (*AppProfileResource) HasName

func (o *AppProfileResource) HasName() bool

HasName returns a boolean if a field has been set.

func (AppProfileResource) MarshalJSON

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

func (*AppProfileResource) SetEnableAutomaticSearch

func (o *AppProfileResource) SetEnableAutomaticSearch(v bool)

SetEnableAutomaticSearch gets a reference to the given bool and assigns it to the EnableAutomaticSearch field.

func (*AppProfileResource) SetEnableInteractiveSearch

func (o *AppProfileResource) SetEnableInteractiveSearch(v bool)

SetEnableInteractiveSearch gets a reference to the given bool and assigns it to the EnableInteractiveSearch field.

func (*AppProfileResource) SetEnableRss

func (o *AppProfileResource) SetEnableRss(v bool)

SetEnableRss gets a reference to the given bool and assigns it to the EnableRss field.

func (*AppProfileResource) SetId

func (o *AppProfileResource) SetId(v int32)

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

func (*AppProfileResource) SetMinimumSeeders

func (o *AppProfileResource) SetMinimumSeeders(v int32)

SetMinimumSeeders gets a reference to the given int32 and assigns it to the MinimumSeeders field.

func (*AppProfileResource) SetName

func (o *AppProfileResource) SetName(v string)

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

func (*AppProfileResource) SetNameNil

func (o *AppProfileResource) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*AppProfileResource) UnsetName

func (o *AppProfileResource) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type ApplicationApiService

type ApplicationApiService service

ApplicationApiService ApplicationApi service

func (*ApplicationApiService) CreateApplications

CreateApplications Method for CreateApplications

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

func (*ApplicationApiService) CreateApplicationsActionByName

func (a *ApplicationApiService) CreateApplicationsActionByName(ctx context.Context, name string) ApiCreateApplicationsActionByNameRequest

CreateApplicationsActionByName Method for CreateApplicationsActionByName

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

func (*ApplicationApiService) CreateApplicationsActionByNameExecute

func (a *ApplicationApiService) CreateApplicationsActionByNameExecute(r ApiCreateApplicationsActionByNameRequest) (*http.Response, error)

Execute executes the request

func (*ApplicationApiService) CreateApplicationsExecute

Execute executes the request

@return ApplicationResource

func (*ApplicationApiService) DeleteApplications

DeleteApplications Method for DeleteApplications

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

func (*ApplicationApiService) DeleteApplicationsExecute

func (a *ApplicationApiService) DeleteApplicationsExecute(r ApiDeleteApplicationsRequest) (*http.Response, error)

Execute executes the request

func (*ApplicationApiService) GetApplicationsById

GetApplicationsById Method for GetApplicationsById

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

func (*ApplicationApiService) GetApplicationsByIdExecute

Execute executes the request

@return ApplicationResource

func (*ApplicationApiService) ListApplications

ListApplications Method for ListApplications

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

func (*ApplicationApiService) ListApplicationsExecute

Execute executes the request

@return []ApplicationResource

func (*ApplicationApiService) ListApplicationsSchema

ListApplicationsSchema Method for ListApplicationsSchema

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

func (*ApplicationApiService) ListApplicationsSchemaExecute

Execute executes the request

@return []ApplicationResource

func (*ApplicationApiService) TestApplications

TestApplications Method for TestApplications

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

func (*ApplicationApiService) TestApplicationsExecute

func (a *ApplicationApiService) TestApplicationsExecute(r ApiTestApplicationsRequest) (*http.Response, error)

Execute executes the request

func (*ApplicationApiService) TestallApplications

TestallApplications Method for TestallApplications

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

func (*ApplicationApiService) TestallApplicationsExecute

func (a *ApplicationApiService) TestallApplicationsExecute(r ApiTestallApplicationsRequest) (*http.Response, error)

Execute executes the request

func (*ApplicationApiService) UpdateApplications

UpdateApplications Method for UpdateApplications

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

func (*ApplicationApiService) UpdateApplicationsExecute

Execute executes the request

@return ApplicationResource

type ApplicationResource

type ApplicationResource struct {
	Id                 *int32                 `json:"id,omitempty"`
	Name               NullableString         `json:"name,omitempty"`
	Fields             []*Field               `json:"fields,omitempty"`
	ImplementationName NullableString         `json:"implementationName,omitempty"`
	Implementation     NullableString         `json:"implementation,omitempty"`
	ConfigContract     NullableString         `json:"configContract,omitempty"`
	InfoLink           NullableString         `json:"infoLink,omitempty"`
	Message            *ProviderMessage       `json:"message,omitempty"`
	Tags               []*int32               `json:"tags,omitempty"`
	Presets            []*ApplicationResource `json:"presets,omitempty"`
	SyncLevel          *ApplicationSyncLevel  `json:"syncLevel,omitempty"`
	TestCommand        NullableString         `json:"testCommand,omitempty"`
}

ApplicationResource struct for ApplicationResource

func NewApplicationResource

func NewApplicationResource() *ApplicationResource

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

func NewApplicationResourceWithDefaults

func NewApplicationResourceWithDefaults() *ApplicationResource

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

func (*ApplicationResource) GetConfigContract

func (o *ApplicationResource) GetConfigContract() string

GetConfigContract returns the ConfigContract field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationResource) GetConfigContractOk

func (o *ApplicationResource) GetConfigContractOk() (*string, bool)

GetConfigContractOk returns a tuple with the ConfigContract 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 (*ApplicationResource) GetFields

func (o *ApplicationResource) GetFields() []*Field

GetFields returns the Fields field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationResource) GetFieldsOk

func (o *ApplicationResource) GetFieldsOk() ([]*Field, bool)

GetFieldsOk returns a tuple with the Fields 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 (*ApplicationResource) GetId

func (o *ApplicationResource) GetId() int32

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

func (*ApplicationResource) GetIdOk

func (o *ApplicationResource) 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 (*ApplicationResource) GetImplementation

func (o *ApplicationResource) GetImplementation() string

GetImplementation returns the Implementation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationResource) GetImplementationName

func (o *ApplicationResource) GetImplementationName() string

GetImplementationName returns the ImplementationName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationResource) GetImplementationNameOk

func (o *ApplicationResource) GetImplementationNameOk() (*string, bool)

GetImplementationNameOk returns a tuple with the ImplementationName 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 (*ApplicationResource) GetImplementationOk

func (o *ApplicationResource) GetImplementationOk() (*string, bool)

GetImplementationOk returns a tuple with the Implementation 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 (o *ApplicationResource) GetInfoLink() string

GetInfoLink returns the InfoLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationResource) GetInfoLinkOk

func (o *ApplicationResource) GetInfoLinkOk() (*string, bool)

GetInfoLinkOk returns a tuple with the InfoLink 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 (*ApplicationResource) GetMessage

func (o *ApplicationResource) GetMessage() ProviderMessage

GetMessage returns the Message field value if set, zero value otherwise.

func (*ApplicationResource) GetMessageOk

func (o *ApplicationResource) GetMessageOk() (*ProviderMessage, 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 (*ApplicationResource) GetName

func (o *ApplicationResource) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationResource) GetNameOk

func (o *ApplicationResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ApplicationResource) GetPresets

func (o *ApplicationResource) GetPresets() []*ApplicationResource

GetPresets returns the Presets field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationResource) GetPresetsOk

func (o *ApplicationResource) GetPresetsOk() ([]*ApplicationResource, bool)

GetPresetsOk returns a tuple with the Presets 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 (*ApplicationResource) GetSyncLevel

func (o *ApplicationResource) GetSyncLevel() ApplicationSyncLevel

GetSyncLevel returns the SyncLevel field value if set, zero value otherwise.

func (*ApplicationResource) GetSyncLevelOk

func (o *ApplicationResource) GetSyncLevelOk() (*ApplicationSyncLevel, bool)

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

func (*ApplicationResource) GetTags

func (o *ApplicationResource) GetTags() []*int32

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationResource) GetTagsOk

func (o *ApplicationResource) GetTagsOk() ([]*int32, bool)

GetTagsOk returns a tuple with the Tags 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 (*ApplicationResource) GetTestCommand

func (o *ApplicationResource) GetTestCommand() string

GetTestCommand returns the TestCommand field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ApplicationResource) GetTestCommandOk

func (o *ApplicationResource) GetTestCommandOk() (*string, bool)

GetTestCommandOk returns a tuple with the TestCommand 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 (*ApplicationResource) HasConfigContract

func (o *ApplicationResource) HasConfigContract() bool

HasConfigContract returns a boolean if a field has been set.

func (*ApplicationResource) HasFields

func (o *ApplicationResource) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*ApplicationResource) HasId

func (o *ApplicationResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*ApplicationResource) HasImplementation

func (o *ApplicationResource) HasImplementation() bool

HasImplementation returns a boolean if a field has been set.

func (*ApplicationResource) HasImplementationName

func (o *ApplicationResource) HasImplementationName() bool

HasImplementationName returns a boolean if a field has been set.

func (o *ApplicationResource) HasInfoLink() bool

HasInfoLink returns a boolean if a field has been set.

func (*ApplicationResource) HasMessage

func (o *ApplicationResource) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ApplicationResource) HasName

func (o *ApplicationResource) HasName() bool

HasName returns a boolean if a field has been set.

func (*ApplicationResource) HasPresets

func (o *ApplicationResource) HasPresets() bool

HasPresets returns a boolean if a field has been set.

func (*ApplicationResource) HasSyncLevel

func (o *ApplicationResource) HasSyncLevel() bool

HasSyncLevel returns a boolean if a field has been set.

func (*ApplicationResource) HasTags

func (o *ApplicationResource) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*ApplicationResource) HasTestCommand

func (o *ApplicationResource) HasTestCommand() bool

HasTestCommand returns a boolean if a field has been set.

func (ApplicationResource) MarshalJSON

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

func (*ApplicationResource) SetConfigContract

func (o *ApplicationResource) SetConfigContract(v string)

SetConfigContract gets a reference to the given NullableString and assigns it to the ConfigContract field.

func (*ApplicationResource) SetConfigContractNil

func (o *ApplicationResource) SetConfigContractNil()

SetConfigContractNil sets the value for ConfigContract to be an explicit nil

func (*ApplicationResource) SetFields

func (o *ApplicationResource) SetFields(v []*Field)

SetFields gets a reference to the given []Field and assigns it to the Fields field.

func (*ApplicationResource) SetId

func (o *ApplicationResource) SetId(v int32)

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

func (*ApplicationResource) SetImplementation

func (o *ApplicationResource) SetImplementation(v string)

SetImplementation gets a reference to the given NullableString and assigns it to the Implementation field.

func (*ApplicationResource) SetImplementationName

func (o *ApplicationResource) SetImplementationName(v string)

SetImplementationName gets a reference to the given NullableString and assigns it to the ImplementationName field.

func (*ApplicationResource) SetImplementationNameNil

func (o *ApplicationResource) SetImplementationNameNil()

SetImplementationNameNil sets the value for ImplementationName to be an explicit nil

func (*ApplicationResource) SetImplementationNil

func (o *ApplicationResource) SetImplementationNil()

SetImplementationNil sets the value for Implementation to be an explicit nil

func (o *ApplicationResource) SetInfoLink(v string)

SetInfoLink gets a reference to the given NullableString and assigns it to the InfoLink field.

func (*ApplicationResource) SetInfoLinkNil

func (o *ApplicationResource) SetInfoLinkNil()

SetInfoLinkNil sets the value for InfoLink to be an explicit nil

func (*ApplicationResource) SetMessage

func (o *ApplicationResource) SetMessage(v ProviderMessage)

SetMessage gets a reference to the given ProviderMessage and assigns it to the Message field.

func (*ApplicationResource) SetName

func (o *ApplicationResource) SetName(v string)

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

func (*ApplicationResource) SetNameNil

func (o *ApplicationResource) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*ApplicationResource) SetPresets

func (o *ApplicationResource) SetPresets(v []*ApplicationResource)

SetPresets gets a reference to the given []ApplicationResource and assigns it to the Presets field.

func (*ApplicationResource) SetSyncLevel

func (o *ApplicationResource) SetSyncLevel(v ApplicationSyncLevel)

SetSyncLevel gets a reference to the given ApplicationSyncLevel and assigns it to the SyncLevel field.

func (*ApplicationResource) SetTags

func (o *ApplicationResource) SetTags(v []*int32)

SetTags gets a reference to the given []int32 and assigns it to the Tags field.

func (*ApplicationResource) SetTestCommand

func (o *ApplicationResource) SetTestCommand(v string)

SetTestCommand gets a reference to the given NullableString and assigns it to the TestCommand field.

func (*ApplicationResource) SetTestCommandNil

func (o *ApplicationResource) SetTestCommandNil()

SetTestCommandNil sets the value for TestCommand to be an explicit nil

func (*ApplicationResource) UnsetConfigContract

func (o *ApplicationResource) UnsetConfigContract()

UnsetConfigContract ensures that no value is present for ConfigContract, not even an explicit nil

func (*ApplicationResource) UnsetImplementation

func (o *ApplicationResource) UnsetImplementation()

UnsetImplementation ensures that no value is present for Implementation, not even an explicit nil

func (*ApplicationResource) UnsetImplementationName

func (o *ApplicationResource) UnsetImplementationName()

UnsetImplementationName ensures that no value is present for ImplementationName, not even an explicit nil

func (o *ApplicationResource) UnsetInfoLink()

UnsetInfoLink ensures that no value is present for InfoLink, not even an explicit nil

func (*ApplicationResource) UnsetName

func (o *ApplicationResource) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*ApplicationResource) UnsetTestCommand

func (o *ApplicationResource) UnsetTestCommand()

UnsetTestCommand ensures that no value is present for TestCommand, not even an explicit nil

type ApplicationSyncLevel

type ApplicationSyncLevel string

ApplicationSyncLevel the model 'ApplicationSyncLevel'

const (
	APPLICATIONSYNCLEVEL_DISABLED  ApplicationSyncLevel = "disabled"
	APPLICATIONSYNCLEVEL_ADD_ONLY  ApplicationSyncLevel = "addOnly"
	APPLICATIONSYNCLEVEL_FULL_SYNC ApplicationSyncLevel = "fullSync"
)

List of ApplicationSyncLevel

func NewApplicationSyncLevelFromValue

func NewApplicationSyncLevelFromValue(v string) (*ApplicationSyncLevel, error)

NewApplicationSyncLevelFromValue returns a pointer to a valid ApplicationSyncLevel for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ApplicationSyncLevel) IsValid

func (v ApplicationSyncLevel) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ApplicationSyncLevel) Ptr

Ptr returns reference to ApplicationSyncLevel value

func (*ApplicationSyncLevel) UnmarshalJSON

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

type ApplyTags

type ApplyTags string

ApplyTags the model 'ApplyTags'

const (
	APPLYTAGS_ADD     ApplyTags = "add"
	APPLYTAGS_REMOVE  ApplyTags = "remove"
	APPLYTAGS_REPLACE ApplyTags = "replace"
)

List of ApplyTags

func NewApplyTagsFromValue

func NewApplyTagsFromValue(v string) (*ApplyTags, error)

NewApplyTagsFromValue returns a pointer to a valid ApplyTags for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ApplyTags) IsValid

func (v ApplyTags) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ApplyTags) Ptr

func (v ApplyTags) Ptr() *ApplyTags

Ptr returns reference to ApplyTags value

func (*ApplyTags) UnmarshalJSON

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

type AuthenticationApiService

type AuthenticationApiService service

AuthenticationApiService AuthenticationApi service

func (*AuthenticationApiService) CreateLogin

CreateLogin Method for CreateLogin

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

func (*AuthenticationApiService) CreateLoginExecute

func (a *AuthenticationApiService) CreateLoginExecute(r ApiCreateLoginRequest) (*http.Response, error)

Execute executes the request

func (*AuthenticationApiService) GetLogout

GetLogout Method for GetLogout

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

func (*AuthenticationApiService) GetLogoutExecute

func (a *AuthenticationApiService) GetLogoutExecute(r ApiGetLogoutRequest) (*http.Response, error)

Execute executes the request

type AuthenticationRequiredType

type AuthenticationRequiredType string

AuthenticationRequiredType the model 'AuthenticationRequiredType'

const (
	AUTHENTICATIONREQUIREDTYPE_ENABLED                      AuthenticationRequiredType = "enabled"
	AUTHENTICATIONREQUIREDTYPE_DISABLED_FOR_LOCAL_ADDRESSES AuthenticationRequiredType = "disabledForLocalAddresses"
)

List of AuthenticationRequiredType

func NewAuthenticationRequiredTypeFromValue

func NewAuthenticationRequiredTypeFromValue(v string) (*AuthenticationRequiredType, error)

NewAuthenticationRequiredTypeFromValue returns a pointer to a valid AuthenticationRequiredType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (AuthenticationRequiredType) IsValid

func (v AuthenticationRequiredType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (AuthenticationRequiredType) Ptr

Ptr returns reference to AuthenticationRequiredType value

func (*AuthenticationRequiredType) UnmarshalJSON

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

type AuthenticationType

type AuthenticationType string

AuthenticationType the model 'AuthenticationType'

const (
	AUTHENTICATIONTYPE_NONE     AuthenticationType = "none"
	AUTHENTICATIONTYPE_BASIC    AuthenticationType = "basic"
	AUTHENTICATIONTYPE_FORMS    AuthenticationType = "forms"
	AUTHENTICATIONTYPE_EXTERNAL AuthenticationType = "external"
)

List of AuthenticationType

func NewAuthenticationTypeFromValue

func NewAuthenticationTypeFromValue(v string) (*AuthenticationType, error)

NewAuthenticationTypeFromValue returns a pointer to a valid AuthenticationType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (AuthenticationType) IsValid

func (v AuthenticationType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (AuthenticationType) Ptr

Ptr returns reference to AuthenticationType value

func (*AuthenticationType) UnmarshalJSON

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

type BackupApiService

type BackupApiService service

BackupApiService BackupApi service

func (*BackupApiService) CreateSystemBackupRestoreById

func (a *BackupApiService) CreateSystemBackupRestoreById(ctx context.Context, id int32) ApiCreateSystemBackupRestoreByIdRequest

CreateSystemBackupRestoreById Method for CreateSystemBackupRestoreById

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

func (*BackupApiService) CreateSystemBackupRestoreByIdExecute

func (a *BackupApiService) CreateSystemBackupRestoreByIdExecute(r ApiCreateSystemBackupRestoreByIdRequest) (*http.Response, error)

Execute executes the request

func (*BackupApiService) CreateSystemBackupRestoreUpload

func (a *BackupApiService) CreateSystemBackupRestoreUpload(ctx context.Context) ApiCreateSystemBackupRestoreUploadRequest

CreateSystemBackupRestoreUpload Method for CreateSystemBackupRestoreUpload

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

func (*BackupApiService) CreateSystemBackupRestoreUploadExecute

func (a *BackupApiService) CreateSystemBackupRestoreUploadExecute(r ApiCreateSystemBackupRestoreUploadRequest) (*http.Response, error)

Execute executes the request

func (*BackupApiService) DeleteSystemBackup

func (a *BackupApiService) DeleteSystemBackup(ctx context.Context, id int32) ApiDeleteSystemBackupRequest

DeleteSystemBackup Method for DeleteSystemBackup

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

func (*BackupApiService) DeleteSystemBackupExecute

func (a *BackupApiService) DeleteSystemBackupExecute(r ApiDeleteSystemBackupRequest) (*http.Response, error)

Execute executes the request

func (*BackupApiService) ListSystemBackup

ListSystemBackup Method for ListSystemBackup

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

func (*BackupApiService) ListSystemBackupExecute

func (a *BackupApiService) ListSystemBackupExecute(r ApiListSystemBackupRequest) ([]*BackupResource, *http.Response, error)

Execute executes the request

@return []BackupResource

type BackupResource

type BackupResource struct {
	Id   *int32         `json:"id,omitempty"`
	Name NullableString `json:"name,omitempty"`
	Path NullableString `json:"path,omitempty"`
	Type *BackupType    `json:"type,omitempty"`
	Size *int64         `json:"size,omitempty"`
	Time *time.Time     `json:"time,omitempty"`
}

BackupResource struct for BackupResource

func NewBackupResource

func NewBackupResource() *BackupResource

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

func NewBackupResourceWithDefaults

func NewBackupResourceWithDefaults() *BackupResource

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

func (*BackupResource) GetId

func (o *BackupResource) GetId() int32

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

func (*BackupResource) GetIdOk

func (o *BackupResource) 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 (*BackupResource) GetName

func (o *BackupResource) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*BackupResource) GetNameOk

func (o *BackupResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*BackupResource) GetPath

func (o *BackupResource) GetPath() string

GetPath returns the Path field value if set, zero value otherwise (both if not set or set to explicit null).

func (*BackupResource) GetPathOk

func (o *BackupResource) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path 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 (*BackupResource) GetSize

func (o *BackupResource) GetSize() int64

GetSize returns the Size field value if set, zero value otherwise.

func (*BackupResource) GetSizeOk

func (o *BackupResource) GetSizeOk() (*int64, bool)

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

func (*BackupResource) GetTime

func (o *BackupResource) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*BackupResource) GetTimeOk

func (o *BackupResource) GetTimeOk() (*time.Time, bool)

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 (*BackupResource) GetType

func (o *BackupResource) GetType() BackupType

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

func (*BackupResource) GetTypeOk

func (o *BackupResource) GetTypeOk() (*BackupType, 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 (*BackupResource) HasId

func (o *BackupResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*BackupResource) HasName

func (o *BackupResource) HasName() bool

HasName returns a boolean if a field has been set.

func (*BackupResource) HasPath

func (o *BackupResource) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*BackupResource) HasSize

func (o *BackupResource) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*BackupResource) HasTime

func (o *BackupResource) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*BackupResource) HasType

func (o *BackupResource) HasType() bool

HasType returns a boolean if a field has been set.

func (BackupResource) MarshalJSON

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

func (*BackupResource) SetId

func (o *BackupResource) SetId(v int32)

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

func (*BackupResource) SetName

func (o *BackupResource) SetName(v string)

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

func (*BackupResource) SetNameNil

func (o *BackupResource) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*BackupResource) SetPath

func (o *BackupResource) SetPath(v string)

SetPath gets a reference to the given NullableString and assigns it to the Path field.

func (*BackupResource) SetPathNil

func (o *BackupResource) SetPathNil()

SetPathNil sets the value for Path to be an explicit nil

func (*BackupResource) SetSize

func (o *BackupResource) SetSize(v int64)

SetSize gets a reference to the given int64 and assigns it to the Size field.

func (*BackupResource) SetTime

func (o *BackupResource) SetTime(v time.Time)

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

func (*BackupResource) SetType

func (o *BackupResource) SetType(v BackupType)

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

func (*BackupResource) UnsetName

func (o *BackupResource) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*BackupResource) UnsetPath

func (o *BackupResource) UnsetPath()

UnsetPath ensures that no value is present for Path, not even an explicit nil

type BackupType

type BackupType string

BackupType the model 'BackupType'

const (
	BACKUPTYPE_SCHEDULED BackupType = "scheduled"
	BACKUPTYPE_MANUAL    BackupType = "manual"
	BACKUPTYPE_UPDATE    BackupType = "update"
)

List of BackupType

func NewBackupTypeFromValue

func NewBackupTypeFromValue(v string) (*BackupType, error)

NewBackupTypeFromValue returns a pointer to a valid BackupType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (BackupType) IsValid

func (v BackupType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (BackupType) Ptr

func (v BackupType) Ptr() *BackupType

Ptr returns reference to BackupType value

func (*BackupType) UnmarshalJSON

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

type BasicAuth

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

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

type BookSearchParam

type BookSearchParam string

BookSearchParam the model 'BookSearchParam'

const (
	BOOKSEARCHPARAM_Q         BookSearchParam = "q"
	BOOKSEARCHPARAM_TITLE     BookSearchParam = "title"
	BOOKSEARCHPARAM_AUTHOR    BookSearchParam = "author"
	BOOKSEARCHPARAM_PUBLISHER BookSearchParam = "publisher"
	BOOKSEARCHPARAM_GENRE     BookSearchParam = "genre"
	BOOKSEARCHPARAM_YEAR      BookSearchParam = "year"
)

List of BookSearchParam

func NewBookSearchParamFromValue

func NewBookSearchParamFromValue(v string) (*BookSearchParam, error)

NewBookSearchParamFromValue returns a pointer to a valid BookSearchParam for the value passed as argument, or an error if the value passed is not allowed by the enum

func (BookSearchParam) IsValid

func (v BookSearchParam) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (BookSearchParam) Ptr

Ptr returns reference to BookSearchParam value

func (*BookSearchParam) UnmarshalJSON

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

type CertificateValidationType

type CertificateValidationType string

CertificateValidationType the model 'CertificateValidationType'

const (
	CERTIFICATEVALIDATIONTYPE_ENABLED                      CertificateValidationType = "enabled"
	CERTIFICATEVALIDATIONTYPE_DISABLED_FOR_LOCAL_ADDRESSES CertificateValidationType = "disabledForLocalAddresses"
	CERTIFICATEVALIDATIONTYPE_DISABLED                     CertificateValidationType = "disabled"
)

List of CertificateValidationType

func NewCertificateValidationTypeFromValue

func NewCertificateValidationTypeFromValue(v string) (*CertificateValidationType, error)

NewCertificateValidationTypeFromValue returns a pointer to a valid CertificateValidationType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CertificateValidationType) IsValid

func (v CertificateValidationType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CertificateValidationType) Ptr

Ptr returns reference to CertificateValidationType value

func (*CertificateValidationType) UnmarshalJSON

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

type Command

type Command struct {
	SendUpdatesToClient *bool           `json:"sendUpdatesToClient,omitempty"`
	UpdateScheduledTask *bool           `json:"updateScheduledTask,omitempty"`
	CompletionMessage   NullableString  `json:"completionMessage,omitempty"`
	RequiresDiskAccess  *bool           `json:"requiresDiskAccess,omitempty"`
	IsExclusive         *bool           `json:"isExclusive,omitempty"`
	IsTypeExclusive     *bool           `json:"isTypeExclusive,omitempty"`
	Name                NullableString  `json:"name,omitempty"`
	LastExecutionTime   NullableTime    `json:"lastExecutionTime,omitempty"`
	LastStartTime       NullableTime    `json:"lastStartTime,omitempty"`
	Trigger             *CommandTrigger `json:"trigger,omitempty"`
	SuppressMessages    *bool           `json:"suppressMessages,omitempty"`
	ClientUserAgent     NullableString  `json:"clientUserAgent,omitempty"`
}

Command struct for Command

func NewCommand

func NewCommand() *Command

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

func NewCommandWithDefaults

func NewCommandWithDefaults() *Command

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

func (*Command) GetClientUserAgent

func (o *Command) GetClientUserAgent() string

GetClientUserAgent returns the ClientUserAgent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Command) GetClientUserAgentOk

func (o *Command) GetClientUserAgentOk() (*string, bool)

GetClientUserAgentOk returns a tuple with the ClientUserAgent 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 (*Command) GetCompletionMessage

func (o *Command) GetCompletionMessage() string

GetCompletionMessage returns the CompletionMessage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Command) GetCompletionMessageOk

func (o *Command) GetCompletionMessageOk() (*string, bool)

GetCompletionMessageOk returns a tuple with the CompletionMessage 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 (*Command) GetIsExclusive

func (o *Command) GetIsExclusive() bool

GetIsExclusive returns the IsExclusive field value if set, zero value otherwise.

func (*Command) GetIsExclusiveOk

func (o *Command) GetIsExclusiveOk() (*bool, bool)

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

func (*Command) GetIsTypeExclusive

func (o *Command) GetIsTypeExclusive() bool

GetIsTypeExclusive returns the IsTypeExclusive field value if set, zero value otherwise.

func (*Command) GetIsTypeExclusiveOk

func (o *Command) GetIsTypeExclusiveOk() (*bool, bool)

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

func (*Command) GetLastExecutionTime

func (o *Command) GetLastExecutionTime() time.Time

GetLastExecutionTime returns the LastExecutionTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Command) GetLastExecutionTimeOk

func (o *Command) GetLastExecutionTimeOk() (*time.Time, bool)

GetLastExecutionTimeOk returns a tuple with the LastExecutionTime 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 (*Command) GetLastStartTime

func (o *Command) GetLastStartTime() time.Time

GetLastStartTime returns the LastStartTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Command) GetLastStartTimeOk

func (o *Command) GetLastStartTimeOk() (*time.Time, bool)

GetLastStartTimeOk returns a tuple with the LastStartTime 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 (*Command) GetName

func (o *Command) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Command) GetNameOk

func (o *Command) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Command) GetRequiresDiskAccess

func (o *Command) GetRequiresDiskAccess() bool

GetRequiresDiskAccess returns the RequiresDiskAccess field value if set, zero value otherwise.

func (*Command) GetRequiresDiskAccessOk

func (o *Command) GetRequiresDiskAccessOk() (*bool, bool)

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

func (*Command) GetSendUpdatesToClient

func (o *Command) GetSendUpdatesToClient() bool

GetSendUpdatesToClient returns the SendUpdatesToClient field value if set, zero value otherwise.

func (*Command) GetSendUpdatesToClientOk

func (o *Command) GetSendUpdatesToClientOk() (*bool, bool)

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

func (*Command) GetSuppressMessages

func (o *Command) GetSuppressMessages() bool

GetSuppressMessages returns the SuppressMessages field value if set, zero value otherwise.

func (*Command) GetSuppressMessagesOk

func (o *Command) GetSuppressMessagesOk() (*bool, bool)

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

func (*Command) GetTrigger

func (o *Command) GetTrigger() CommandTrigger

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*Command) GetTriggerOk

func (o *Command) GetTriggerOk() (*CommandTrigger, bool)

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

func (*Command) GetUpdateScheduledTask

func (o *Command) GetUpdateScheduledTask() bool

GetUpdateScheduledTask returns the UpdateScheduledTask field value if set, zero value otherwise.

func (*Command) GetUpdateScheduledTaskOk

func (o *Command) GetUpdateScheduledTaskOk() (*bool, bool)

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

func (*Command) HasClientUserAgent

func (o *Command) HasClientUserAgent() bool

HasClientUserAgent returns a boolean if a field has been set.

func (*Command) HasCompletionMessage

func (o *Command) HasCompletionMessage() bool

HasCompletionMessage returns a boolean if a field has been set.

func (*Command) HasIsExclusive

func (o *Command) HasIsExclusive() bool

HasIsExclusive returns a boolean if a field has been set.

func (*Command) HasIsTypeExclusive

func (o *Command) HasIsTypeExclusive() bool

HasIsTypeExclusive returns a boolean if a field has been set.

func (*Command) HasLastExecutionTime

func (o *Command) HasLastExecutionTime() bool

HasLastExecutionTime returns a boolean if a field has been set.

func (*Command) HasLastStartTime

func (o *Command) HasLastStartTime() bool

HasLastStartTime returns a boolean if a field has been set.

func (*Command) HasName

func (o *Command) HasName() bool

HasName returns a boolean if a field has been set.

func (*Command) HasRequiresDiskAccess

func (o *Command) HasRequiresDiskAccess() bool

HasRequiresDiskAccess returns a boolean if a field has been set.

func (*Command) HasSendUpdatesToClient

func (o *Command) HasSendUpdatesToClient() bool

HasSendUpdatesToClient returns a boolean if a field has been set.

func (*Command) HasSuppressMessages

func (o *Command) HasSuppressMessages() bool

HasSuppressMessages returns a boolean if a field has been set.

func (*Command) HasTrigger

func (o *Command) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (*Command) HasUpdateScheduledTask

func (o *Command) HasUpdateScheduledTask() bool

HasUpdateScheduledTask returns a boolean if a field has been set.

func (Command) MarshalJSON

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

func (*Command) SetClientUserAgent

func (o *Command) SetClientUserAgent(v string)

SetClientUserAgent gets a reference to the given NullableString and assigns it to the ClientUserAgent field.

func (*Command) SetClientUserAgentNil

func (o *Command) SetClientUserAgentNil()

SetClientUserAgentNil sets the value for ClientUserAgent to be an explicit nil

func (*Command) SetCompletionMessage

func (o *Command) SetCompletionMessage(v string)

SetCompletionMessage gets a reference to the given NullableString and assigns it to the CompletionMessage field.

func (*Command) SetCompletionMessageNil

func (o *Command) SetCompletionMessageNil()

SetCompletionMessageNil sets the value for CompletionMessage to be an explicit nil

func (*Command) SetIsExclusive

func (o *Command) SetIsExclusive(v bool)

SetIsExclusive gets a reference to the given bool and assigns it to the IsExclusive field.

func (*Command) SetIsTypeExclusive

func (o *Command) SetIsTypeExclusive(v bool)

SetIsTypeExclusive gets a reference to the given bool and assigns it to the IsTypeExclusive field.

func (*Command) SetLastExecutionTime

func (o *Command) SetLastExecutionTime(v time.Time)

SetLastExecutionTime gets a reference to the given NullableTime and assigns it to the LastExecutionTime field.

func (*Command) SetLastExecutionTimeNil

func (o *Command) SetLastExecutionTimeNil()

SetLastExecutionTimeNil sets the value for LastExecutionTime to be an explicit nil

func (*Command) SetLastStartTime

func (o *Command) SetLastStartTime(v time.Time)

SetLastStartTime gets a reference to the given NullableTime and assigns it to the LastStartTime field.

func (*Command) SetLastStartTimeNil

func (o *Command) SetLastStartTimeNil()

SetLastStartTimeNil sets the value for LastStartTime to be an explicit nil

func (*Command) SetName

func (o *Command) SetName(v string)

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

func (*Command) SetNameNil

func (o *Command) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Command) SetRequiresDiskAccess

func (o *Command) SetRequiresDiskAccess(v bool)

SetRequiresDiskAccess gets a reference to the given bool and assigns it to the RequiresDiskAccess field.

func (*Command) SetSendUpdatesToClient

func (o *Command) SetSendUpdatesToClient(v bool)

SetSendUpdatesToClient gets a reference to the given bool and assigns it to the SendUpdatesToClient field.

func (*Command) SetSuppressMessages

func (o *Command) SetSuppressMessages(v bool)

SetSuppressMessages gets a reference to the given bool and assigns it to the SuppressMessages field.

func (*Command) SetTrigger

func (o *Command) SetTrigger(v CommandTrigger)

SetTrigger gets a reference to the given CommandTrigger and assigns it to the Trigger field.

func (*Command) SetUpdateScheduledTask

func (o *Command) SetUpdateScheduledTask(v bool)

SetUpdateScheduledTask gets a reference to the given bool and assigns it to the UpdateScheduledTask field.

func (*Command) UnsetClientUserAgent

func (o *Command) UnsetClientUserAgent()

UnsetClientUserAgent ensures that no value is present for ClientUserAgent, not even an explicit nil

func (*Command) UnsetCompletionMessage

func (o *Command) UnsetCompletionMessage()

UnsetCompletionMessage ensures that no value is present for CompletionMessage, not even an explicit nil

func (*Command) UnsetLastExecutionTime

func (o *Command) UnsetLastExecutionTime()

UnsetLastExecutionTime ensures that no value is present for LastExecutionTime, not even an explicit nil

func (*Command) UnsetLastStartTime

func (o *Command) UnsetLastStartTime()

UnsetLastStartTime ensures that no value is present for LastStartTime, not even an explicit nil

func (*Command) UnsetName

func (o *Command) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type CommandApiService

type CommandApiService service

CommandApiService CommandApi service

func (*CommandApiService) CreateCommand

CreateCommand Method for CreateCommand

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

func (*CommandApiService) CreateCommandExecute

Execute executes the request

@return CommandResource

func (*CommandApiService) DeleteCommand

DeleteCommand Method for DeleteCommand

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

func (*CommandApiService) DeleteCommandExecute

func (a *CommandApiService) DeleteCommandExecute(r ApiDeleteCommandRequest) (*http.Response, error)

Execute executes the request

func (*CommandApiService) GetCommandById

func (a *CommandApiService) GetCommandById(ctx context.Context, id int32) ApiGetCommandByIdRequest

GetCommandById Method for GetCommandById

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

func (*CommandApiService) GetCommandByIdExecute

Execute executes the request

@return CommandResource

func (*CommandApiService) ListCommand

ListCommand Method for ListCommand

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

func (*CommandApiService) ListCommandExecute

func (a *CommandApiService) ListCommandExecute(r ApiListCommandRequest) ([]*CommandResource, *http.Response, error)

Execute executes the request

@return []CommandResource

type CommandPriority

type CommandPriority string

CommandPriority the model 'CommandPriority'

const (
	COMMANDPRIORITY_NORMAL CommandPriority = "normal"
	COMMANDPRIORITY_HIGH   CommandPriority = "high"
	COMMANDPRIORITY_LOW    CommandPriority = "low"
)

List of CommandPriority

func NewCommandPriorityFromValue

func NewCommandPriorityFromValue(v string) (*CommandPriority, error)

NewCommandPriorityFromValue returns a pointer to a valid CommandPriority for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CommandPriority) IsValid

func (v CommandPriority) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CommandPriority) Ptr

Ptr returns reference to CommandPriority value

func (*CommandPriority) UnmarshalJSON

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

type CommandResource

type CommandResource struct {
	Id                  *int32           `json:"id,omitempty"`
	Name                NullableString   `json:"name,omitempty"`
	CommandName         NullableString   `json:"commandName,omitempty"`
	Message             NullableString   `json:"message,omitempty"`
	Body                *Command         `json:"body,omitempty"`
	Priority            *CommandPriority `json:"priority,omitempty"`
	Status              *CommandStatus   `json:"status,omitempty"`
	Queued              *time.Time       `json:"queued,omitempty"`
	Started             NullableTime     `json:"started,omitempty"`
	Ended               NullableTime     `json:"ended,omitempty"`
	Duration            *TimeSpan        `json:"duration,omitempty"`
	Exception           NullableString   `json:"exception,omitempty"`
	Trigger             *CommandTrigger  `json:"trigger,omitempty"`
	ClientUserAgent     NullableString   `json:"clientUserAgent,omitempty"`
	StateChangeTime     NullableTime     `json:"stateChangeTime,omitempty"`
	SendUpdatesToClient *bool            `json:"sendUpdatesToClient,omitempty"`
	UpdateScheduledTask *bool            `json:"updateScheduledTask,omitempty"`
	LastExecutionTime   NullableTime     `json:"lastExecutionTime,omitempty"`
}

CommandResource struct for CommandResource

func NewCommandResource

func NewCommandResource() *CommandResource

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

func NewCommandResourceWithDefaults

func NewCommandResourceWithDefaults() *CommandResource

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

func (*CommandResource) GetBody

func (o *CommandResource) GetBody() Command

GetBody returns the Body field value if set, zero value otherwise.

func (*CommandResource) GetBodyOk

func (o *CommandResource) GetBodyOk() (*Command, bool)

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

func (*CommandResource) GetClientUserAgent

func (o *CommandResource) GetClientUserAgent() string

GetClientUserAgent returns the ClientUserAgent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CommandResource) GetClientUserAgentOk

func (o *CommandResource) GetClientUserAgentOk() (*string, bool)

GetClientUserAgentOk returns a tuple with the ClientUserAgent 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 (*CommandResource) GetCommandName

func (o *CommandResource) GetCommandName() string

GetCommandName returns the CommandName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CommandResource) GetCommandNameOk

func (o *CommandResource) GetCommandNameOk() (*string, bool)

GetCommandNameOk returns a tuple with the CommandName 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 (*CommandResource) GetDuration

func (o *CommandResource) GetDuration() TimeSpan

GetDuration returns the Duration field value if set, zero value otherwise.

func (*CommandResource) GetDurationOk

func (o *CommandResource) GetDurationOk() (*TimeSpan, bool)

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

func (*CommandResource) GetEnded

func (o *CommandResource) GetEnded() time.Time

GetEnded returns the Ended field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CommandResource) GetEndedOk

func (o *CommandResource) GetEndedOk() (*time.Time, bool)

GetEndedOk returns a tuple with the Ended 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 (*CommandResource) GetException

func (o *CommandResource) GetException() string

GetException returns the Exception field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CommandResource) GetExceptionOk

func (o *CommandResource) GetExceptionOk() (*string, bool)

GetExceptionOk returns a tuple with the Exception 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 (*CommandResource) GetId

func (o *CommandResource) GetId() int32

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

func (*CommandResource) GetIdOk

func (o *CommandResource) 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 (*CommandResource) GetLastExecutionTime

func (o *CommandResource) GetLastExecutionTime() time.Time

GetLastExecutionTime returns the LastExecutionTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CommandResource) GetLastExecutionTimeOk

func (o *CommandResource) GetLastExecutionTimeOk() (*time.Time, bool)

GetLastExecutionTimeOk returns a tuple with the LastExecutionTime 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 (*CommandResource) GetMessage

func (o *CommandResource) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CommandResource) GetMessageOk

func (o *CommandResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CommandResource) GetName

func (o *CommandResource) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CommandResource) GetNameOk

func (o *CommandResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CommandResource) GetPriority

func (o *CommandResource) GetPriority() CommandPriority

GetPriority returns the Priority field value if set, zero value otherwise.

func (*CommandResource) GetPriorityOk

func (o *CommandResource) GetPriorityOk() (*CommandPriority, bool)

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

func (*CommandResource) GetQueued

func (o *CommandResource) GetQueued() time.Time

GetQueued returns the Queued field value if set, zero value otherwise.

func (*CommandResource) GetQueuedOk

func (o *CommandResource) GetQueuedOk() (*time.Time, bool)

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

func (*CommandResource) GetSendUpdatesToClient

func (o *CommandResource) GetSendUpdatesToClient() bool

GetSendUpdatesToClient returns the SendUpdatesToClient field value if set, zero value otherwise.

func (*CommandResource) GetSendUpdatesToClientOk

func (o *CommandResource) GetSendUpdatesToClientOk() (*bool, bool)

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

func (*CommandResource) GetStarted

func (o *CommandResource) GetStarted() time.Time

GetStarted returns the Started field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CommandResource) GetStartedOk

func (o *CommandResource) GetStartedOk() (*time.Time, bool)

GetStartedOk returns a tuple with the Started 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 (*CommandResource) GetStateChangeTime

func (o *CommandResource) GetStateChangeTime() time.Time

GetStateChangeTime returns the StateChangeTime field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CommandResource) GetStateChangeTimeOk

func (o *CommandResource) GetStateChangeTimeOk() (*time.Time, bool)

GetStateChangeTimeOk returns a tuple with the StateChangeTime 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 (*CommandResource) GetStatus

func (o *CommandResource) GetStatus() CommandStatus

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

func (*CommandResource) GetStatusOk

func (o *CommandResource) GetStatusOk() (*CommandStatus, 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 (*CommandResource) GetTrigger

func (o *CommandResource) GetTrigger() CommandTrigger

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*CommandResource) GetTriggerOk

func (o *CommandResource) GetTriggerOk() (*CommandTrigger, bool)

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

func (*CommandResource) GetUpdateScheduledTask

func (o *CommandResource) GetUpdateScheduledTask() bool

GetUpdateScheduledTask returns the UpdateScheduledTask field value if set, zero value otherwise.

func (*CommandResource) GetUpdateScheduledTaskOk

func (o *CommandResource) GetUpdateScheduledTaskOk() (*bool, bool)

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

func (*CommandResource) HasBody

func (o *CommandResource) HasBody() bool

HasBody returns a boolean if a field has been set.

func (*CommandResource) HasClientUserAgent

func (o *CommandResource) HasClientUserAgent() bool

HasClientUserAgent returns a boolean if a field has been set.

func (*CommandResource) HasCommandName

func (o *CommandResource) HasCommandName() bool

HasCommandName returns a boolean if a field has been set.

func (*CommandResource) HasDuration

func (o *CommandResource) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*CommandResource) HasEnded

func (o *CommandResource) HasEnded() bool

HasEnded returns a boolean if a field has been set.

func (*CommandResource) HasException

func (o *CommandResource) HasException() bool

HasException returns a boolean if a field has been set.

func (*CommandResource) HasId

func (o *CommandResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*CommandResource) HasLastExecutionTime

func (o *CommandResource) HasLastExecutionTime() bool

HasLastExecutionTime returns a boolean if a field has been set.

func (*CommandResource) HasMessage

func (o *CommandResource) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CommandResource) HasName

func (o *CommandResource) HasName() bool

HasName returns a boolean if a field has been set.

func (*CommandResource) HasPriority

func (o *CommandResource) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*CommandResource) HasQueued

func (o *CommandResource) HasQueued() bool

HasQueued returns a boolean if a field has been set.

func (*CommandResource) HasSendUpdatesToClient

func (o *CommandResource) HasSendUpdatesToClient() bool

HasSendUpdatesToClient returns a boolean if a field has been set.

func (*CommandResource) HasStarted

func (o *CommandResource) HasStarted() bool

HasStarted returns a boolean if a field has been set.

func (*CommandResource) HasStateChangeTime

func (o *CommandResource) HasStateChangeTime() bool

HasStateChangeTime returns a boolean if a field has been set.

func (*CommandResource) HasStatus

func (o *CommandResource) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*CommandResource) HasTrigger

func (o *CommandResource) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (*CommandResource) HasUpdateScheduledTask

func (o *CommandResource) HasUpdateScheduledTask() bool

HasUpdateScheduledTask returns a boolean if a field has been set.

func (CommandResource) MarshalJSON

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

func (*CommandResource) SetBody

func (o *CommandResource) SetBody(v Command)

SetBody gets a reference to the given Command and assigns it to the Body field.

func (*CommandResource) SetClientUserAgent

func (o *CommandResource) SetClientUserAgent(v string)

SetClientUserAgent gets a reference to the given NullableString and assigns it to the ClientUserAgent field.

func (*CommandResource) SetClientUserAgentNil

func (o *CommandResource) SetClientUserAgentNil()

SetClientUserAgentNil sets the value for ClientUserAgent to be an explicit nil

func (*CommandResource) SetCommandName

func (o *CommandResource) SetCommandName(v string)

SetCommandName gets a reference to the given NullableString and assigns it to the CommandName field.

func (*CommandResource) SetCommandNameNil

func (o *CommandResource) SetCommandNameNil()

SetCommandNameNil sets the value for CommandName to be an explicit nil

func (*CommandResource) SetDuration

func (o *CommandResource) SetDuration(v TimeSpan)

SetDuration gets a reference to the given TimeSpan and assigns it to the Duration field.

func (*CommandResource) SetEnded

func (o *CommandResource) SetEnded(v time.Time)

SetEnded gets a reference to the given NullableTime and assigns it to the Ended field.

func (*CommandResource) SetEndedNil

func (o *CommandResource) SetEndedNil()

SetEndedNil sets the value for Ended to be an explicit nil

func (*CommandResource) SetException

func (o *CommandResource) SetException(v string)

SetException gets a reference to the given NullableString and assigns it to the Exception field.

func (*CommandResource) SetExceptionNil

func (o *CommandResource) SetExceptionNil()

SetExceptionNil sets the value for Exception to be an explicit nil

func (*CommandResource) SetId

func (o *CommandResource) SetId(v int32)

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

func (*CommandResource) SetLastExecutionTime

func (o *CommandResource) SetLastExecutionTime(v time.Time)

SetLastExecutionTime gets a reference to the given NullableTime and assigns it to the LastExecutionTime field.

func (*CommandResource) SetLastExecutionTimeNil

func (o *CommandResource) SetLastExecutionTimeNil()

SetLastExecutionTimeNil sets the value for LastExecutionTime to be an explicit nil

func (*CommandResource) SetMessage

func (o *CommandResource) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*CommandResource) SetMessageNil

func (o *CommandResource) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*CommandResource) SetName

func (o *CommandResource) SetName(v string)

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

func (*CommandResource) SetNameNil

func (o *CommandResource) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*CommandResource) SetPriority

func (o *CommandResource) SetPriority(v CommandPriority)

SetPriority gets a reference to the given CommandPriority and assigns it to the Priority field.

func (*CommandResource) SetQueued

func (o *CommandResource) SetQueued(v time.Time)

SetQueued gets a reference to the given time.Time and assigns it to the Queued field.

func (*CommandResource) SetSendUpdatesToClient

func (o *CommandResource) SetSendUpdatesToClient(v bool)

SetSendUpdatesToClient gets a reference to the given bool and assigns it to the SendUpdatesToClient field.

func (*CommandResource) SetStarted

func (o *CommandResource) SetStarted(v time.Time)

SetStarted gets a reference to the given NullableTime and assigns it to the Started field.

func (*CommandResource) SetStartedNil

func (o *CommandResource) SetStartedNil()

SetStartedNil sets the value for Started to be an explicit nil

func (*CommandResource) SetStateChangeTime

func (o *CommandResource) SetStateChangeTime(v time.Time)

SetStateChangeTime gets a reference to the given NullableTime and assigns it to the StateChangeTime field.

func (*CommandResource) SetStateChangeTimeNil

func (o *CommandResource) SetStateChangeTimeNil()

SetStateChangeTimeNil sets the value for StateChangeTime to be an explicit nil

func (*CommandResource) SetStatus

func (o *CommandResource) SetStatus(v CommandStatus)

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

func (*CommandResource) SetTrigger

func (o *CommandResource) SetTrigger(v CommandTrigger)

SetTrigger gets a reference to the given CommandTrigger and assigns it to the Trigger field.

func (*CommandResource) SetUpdateScheduledTask

func (o *CommandResource) SetUpdateScheduledTask(v bool)

SetUpdateScheduledTask gets a reference to the given bool and assigns it to the UpdateScheduledTask field.

func (*CommandResource) UnsetClientUserAgent

func (o *CommandResource) UnsetClientUserAgent()

UnsetClientUserAgent ensures that no value is present for ClientUserAgent, not even an explicit nil

func (*CommandResource) UnsetCommandName

func (o *CommandResource) UnsetCommandName()

UnsetCommandName ensures that no value is present for CommandName, not even an explicit nil

func (*CommandResource) UnsetEnded

func (o *CommandResource) UnsetEnded()

UnsetEnded ensures that no value is present for Ended, not even an explicit nil

func (*CommandResource) UnsetException

func (o *CommandResource) UnsetException()

UnsetException ensures that no value is present for Exception, not even an explicit nil

func (*CommandResource) UnsetLastExecutionTime

func (o *CommandResource) UnsetLastExecutionTime()

UnsetLastExecutionTime ensures that no value is present for LastExecutionTime, not even an explicit nil

func (*CommandResource) UnsetMessage

func (o *CommandResource) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*CommandResource) UnsetName

func (o *CommandResource) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*CommandResource) UnsetStarted

func (o *CommandResource) UnsetStarted()

UnsetStarted ensures that no value is present for Started, not even an explicit nil

func (*CommandResource) UnsetStateChangeTime

func (o *CommandResource) UnsetStateChangeTime()

UnsetStateChangeTime ensures that no value is present for StateChangeTime, not even an explicit nil

type CommandStatus

type CommandStatus string

CommandStatus the model 'CommandStatus'

const (
	COMMANDSTATUS_QUEUED    CommandStatus = "queued"
	COMMANDSTATUS_STARTED   CommandStatus = "started"
	COMMANDSTATUS_COMPLETED CommandStatus = "completed"
	COMMANDSTATUS_FAILED    CommandStatus = "failed"
	COMMANDSTATUS_ABORTED   CommandStatus = "aborted"
	COMMANDSTATUS_CANCELLED CommandStatus = "cancelled"
	COMMANDSTATUS_ORPHANED  CommandStatus = "orphaned"
)

List of CommandStatus

func NewCommandStatusFromValue

func NewCommandStatusFromValue(v string) (*CommandStatus, error)

NewCommandStatusFromValue returns a pointer to a valid CommandStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CommandStatus) IsValid

func (v CommandStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CommandStatus) Ptr

func (v CommandStatus) Ptr() *CommandStatus

Ptr returns reference to CommandStatus value

func (*CommandStatus) UnmarshalJSON

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

type CommandTrigger

type CommandTrigger string

CommandTrigger the model 'CommandTrigger'

const (
	COMMANDTRIGGER_UNSPECIFIED CommandTrigger = "unspecified"
	COMMANDTRIGGER_MANUAL      CommandTrigger = "manual"
	COMMANDTRIGGER_SCHEDULED   CommandTrigger = "scheduled"
)

List of CommandTrigger

func NewCommandTriggerFromValue

func NewCommandTriggerFromValue(v string) (*CommandTrigger, error)

NewCommandTriggerFromValue returns a pointer to a valid CommandTrigger for the value passed as argument, or an error if the value passed is not allowed by the enum

func (CommandTrigger) IsValid

func (v CommandTrigger) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (CommandTrigger) Ptr

func (v CommandTrigger) Ptr() *CommandTrigger

Ptr returns reference to CommandTrigger value

func (*CommandTrigger) UnmarshalJSON

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

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

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

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

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CustomFilterApiService

type CustomFilterApiService service

CustomFilterApiService CustomFilterApi service

func (*CustomFilterApiService) CreateCustomFilter

CreateCustomFilter Method for CreateCustomFilter

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

func (*CustomFilterApiService) CreateCustomFilterExecute

Execute executes the request

@return CustomFilterResource

func (*CustomFilterApiService) DeleteCustomFilter

DeleteCustomFilter Method for DeleteCustomFilter

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

func (*CustomFilterApiService) DeleteCustomFilterExecute

func (a *CustomFilterApiService) DeleteCustomFilterExecute(r ApiDeleteCustomFilterRequest) (*http.Response, error)

Execute executes the request

func (*CustomFilterApiService) GetCustomFilterById

GetCustomFilterById Method for GetCustomFilterById

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

func (*CustomFilterApiService) GetCustomFilterByIdExecute

Execute executes the request

@return CustomFilterResource

func (*CustomFilterApiService) ListCustomFilter

ListCustomFilter Method for ListCustomFilter

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

func (*CustomFilterApiService) ListCustomFilterExecute

Execute executes the request

@return []CustomFilterResource

func (*CustomFilterApiService) UpdateCustomFilter

UpdateCustomFilter Method for UpdateCustomFilter

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

func (*CustomFilterApiService) UpdateCustomFilterExecute

Execute executes the request

@return CustomFilterResource

type CustomFilterResource

type CustomFilterResource struct {
	Id      *int32                    `json:"id,omitempty"`
	Type    NullableString            `json:"type,omitempty"`
	Label   NullableString            `json:"label,omitempty"`
	Filters []*map[string]interface{} `json:"filters,omitempty"`
}

CustomFilterResource struct for CustomFilterResource

func NewCustomFilterResource

func NewCustomFilterResource() *CustomFilterResource

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

func NewCustomFilterResourceWithDefaults

func NewCustomFilterResourceWithDefaults() *CustomFilterResource

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

func (*CustomFilterResource) GetFilters

func (o *CustomFilterResource) GetFilters() []*map[string]interface{}

GetFilters returns the Filters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CustomFilterResource) GetFiltersOk

func (o *CustomFilterResource) GetFiltersOk() ([]*map[string]interface{}, bool)

GetFiltersOk returns a tuple with the Filters 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 (*CustomFilterResource) GetId

func (o *CustomFilterResource) GetId() int32

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

func (*CustomFilterResource) GetIdOk

func (o *CustomFilterResource) 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 (*CustomFilterResource) GetLabel

func (o *CustomFilterResource) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CustomFilterResource) GetLabelOk

func (o *CustomFilterResource) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label 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 (*CustomFilterResource) GetType

func (o *CustomFilterResource) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*CustomFilterResource) GetTypeOk

func (o *CustomFilterResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*CustomFilterResource) HasFilters

func (o *CustomFilterResource) HasFilters() bool

HasFilters returns a boolean if a field has been set.

func (*CustomFilterResource) HasId

func (o *CustomFilterResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*CustomFilterResource) HasLabel

func (o *CustomFilterResource) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*CustomFilterResource) HasType

func (o *CustomFilterResource) HasType() bool

HasType returns a boolean if a field has been set.

func (CustomFilterResource) MarshalJSON

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

func (*CustomFilterResource) SetFilters

func (o *CustomFilterResource) SetFilters(v []*map[string]interface{})

SetFilters gets a reference to the given []map[string]interface{} and assigns it to the Filters field.

func (*CustomFilterResource) SetId

func (o *CustomFilterResource) SetId(v int32)

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

func (*CustomFilterResource) SetLabel

func (o *CustomFilterResource) SetLabel(v string)

SetLabel gets a reference to the given NullableString and assigns it to the Label field.

func (*CustomFilterResource) SetLabelNil

func (o *CustomFilterResource) SetLabelNil()

SetLabelNil sets the value for Label to be an explicit nil

func (*CustomFilterResource) SetType

func (o *CustomFilterResource) SetType(v string)

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

func (*CustomFilterResource) SetTypeNil

func (o *CustomFilterResource) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*CustomFilterResource) UnsetLabel

func (o *CustomFilterResource) UnsetLabel()

UnsetLabel ensures that no value is present for Label, not even an explicit nil

func (*CustomFilterResource) UnsetType

func (o *CustomFilterResource) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

type DevelopmentConfigApiService

type DevelopmentConfigApiService service

DevelopmentConfigApiService DevelopmentConfigApi service

func (*DevelopmentConfigApiService) GetDevelopmentConfig

GetDevelopmentConfig Method for GetDevelopmentConfig

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

func (*DevelopmentConfigApiService) GetDevelopmentConfigById

GetDevelopmentConfigById Method for GetDevelopmentConfigById

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

func (*DevelopmentConfigApiService) GetDevelopmentConfigByIdExecute

Execute executes the request

@return DevelopmentConfigResource

func (*DevelopmentConfigApiService) GetDevelopmentConfigExecute

Execute executes the request

@return DevelopmentConfigResource

func (*DevelopmentConfigApiService) UpdateDevelopmentConfig

UpdateDevelopmentConfig Method for UpdateDevelopmentConfig

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

func (*DevelopmentConfigApiService) UpdateDevelopmentConfigExecute

Execute executes the request

@return DevelopmentConfigResource

type DevelopmentConfigResource

type DevelopmentConfigResource struct {
	Id                 *int32         `json:"id,omitempty"`
	ConsoleLogLevel    NullableString `json:"consoleLogLevel,omitempty"`
	LogSql             *bool          `json:"logSql,omitempty"`
	LogIndexerResponse *bool          `json:"logIndexerResponse,omitempty"`
	LogRotate          *int32         `json:"logRotate,omitempty"`
	FilterSentryEvents *bool          `json:"filterSentryEvents,omitempty"`
}

DevelopmentConfigResource struct for DevelopmentConfigResource

func NewDevelopmentConfigResource

func NewDevelopmentConfigResource() *DevelopmentConfigResource

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

func NewDevelopmentConfigResourceWithDefaults

func NewDevelopmentConfigResourceWithDefaults() *DevelopmentConfigResource

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

func (*DevelopmentConfigResource) GetConsoleLogLevel

func (o *DevelopmentConfigResource) GetConsoleLogLevel() string

GetConsoleLogLevel returns the ConsoleLogLevel field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DevelopmentConfigResource) GetConsoleLogLevelOk

func (o *DevelopmentConfigResource) GetConsoleLogLevelOk() (*string, bool)

GetConsoleLogLevelOk returns a tuple with the ConsoleLogLevel 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 (*DevelopmentConfigResource) GetFilterSentryEvents

func (o *DevelopmentConfigResource) GetFilterSentryEvents() bool

GetFilterSentryEvents returns the FilterSentryEvents field value if set, zero value otherwise.

func (*DevelopmentConfigResource) GetFilterSentryEventsOk

func (o *DevelopmentConfigResource) GetFilterSentryEventsOk() (*bool, bool)

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

func (*DevelopmentConfigResource) GetId

func (o *DevelopmentConfigResource) GetId() int32

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

func (*DevelopmentConfigResource) GetIdOk

func (o *DevelopmentConfigResource) 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 (*DevelopmentConfigResource) GetLogIndexerResponse

func (o *DevelopmentConfigResource) GetLogIndexerResponse() bool

GetLogIndexerResponse returns the LogIndexerResponse field value if set, zero value otherwise.

func (*DevelopmentConfigResource) GetLogIndexerResponseOk

func (o *DevelopmentConfigResource) GetLogIndexerResponseOk() (*bool, bool)

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

func (*DevelopmentConfigResource) GetLogRotate

func (o *DevelopmentConfigResource) GetLogRotate() int32

GetLogRotate returns the LogRotate field value if set, zero value otherwise.

func (*DevelopmentConfigResource) GetLogRotateOk

func (o *DevelopmentConfigResource) GetLogRotateOk() (*int32, bool)

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

func (*DevelopmentConfigResource) GetLogSql

func (o *DevelopmentConfigResource) GetLogSql() bool

GetLogSql returns the LogSql field value if set, zero value otherwise.

func (*DevelopmentConfigResource) GetLogSqlOk

func (o *DevelopmentConfigResource) GetLogSqlOk() (*bool, bool)

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

func (*DevelopmentConfigResource) HasConsoleLogLevel

func (o *DevelopmentConfigResource) HasConsoleLogLevel() bool

HasConsoleLogLevel returns a boolean if a field has been set.

func (*DevelopmentConfigResource) HasFilterSentryEvents

func (o *DevelopmentConfigResource) HasFilterSentryEvents() bool

HasFilterSentryEvents returns a boolean if a field has been set.

func (*DevelopmentConfigResource) HasId

func (o *DevelopmentConfigResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*DevelopmentConfigResource) HasLogIndexerResponse

func (o *DevelopmentConfigResource) HasLogIndexerResponse() bool

HasLogIndexerResponse returns a boolean if a field has been set.

func (*DevelopmentConfigResource) HasLogRotate

func (o *DevelopmentConfigResource) HasLogRotate() bool

HasLogRotate returns a boolean if a field has been set.

func (*DevelopmentConfigResource) HasLogSql

func (o *DevelopmentConfigResource) HasLogSql() bool

HasLogSql returns a boolean if a field has been set.

func (DevelopmentConfigResource) MarshalJSON

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

func (*DevelopmentConfigResource) SetConsoleLogLevel

func (o *DevelopmentConfigResource) SetConsoleLogLevel(v string)

SetConsoleLogLevel gets a reference to the given NullableString and assigns it to the ConsoleLogLevel field.

func (*DevelopmentConfigResource) SetConsoleLogLevelNil

func (o *DevelopmentConfigResource) SetConsoleLogLevelNil()

SetConsoleLogLevelNil sets the value for ConsoleLogLevel to be an explicit nil

func (*DevelopmentConfigResource) SetFilterSentryEvents

func (o *DevelopmentConfigResource) SetFilterSentryEvents(v bool)

SetFilterSentryEvents gets a reference to the given bool and assigns it to the FilterSentryEvents field.

func (*DevelopmentConfigResource) SetId

func (o *DevelopmentConfigResource) SetId(v int32)

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

func (*DevelopmentConfigResource) SetLogIndexerResponse

func (o *DevelopmentConfigResource) SetLogIndexerResponse(v bool)

SetLogIndexerResponse gets a reference to the given bool and assigns it to the LogIndexerResponse field.

func (*DevelopmentConfigResource) SetLogRotate

func (o *DevelopmentConfigResource) SetLogRotate(v int32)

SetLogRotate gets a reference to the given int32 and assigns it to the LogRotate field.

func (*DevelopmentConfigResource) SetLogSql

func (o *DevelopmentConfigResource) SetLogSql(v bool)

SetLogSql gets a reference to the given bool and assigns it to the LogSql field.

func (*DevelopmentConfigResource) UnsetConsoleLogLevel

func (o *DevelopmentConfigResource) UnsetConsoleLogLevel()

UnsetConsoleLogLevel ensures that no value is present for ConsoleLogLevel, not even an explicit nil

type DownloadClientApiService

type DownloadClientApiService service

DownloadClientApiService DownloadClientApi service

func (*DownloadClientApiService) CreateDownloadClient

CreateDownloadClient Method for CreateDownloadClient

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

func (*DownloadClientApiService) CreateDownloadClientActionByName

func (a *DownloadClientApiService) CreateDownloadClientActionByName(ctx context.Context, name string) ApiCreateDownloadClientActionByNameRequest

CreateDownloadClientActionByName Method for CreateDownloadClientActionByName

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

func (*DownloadClientApiService) CreateDownloadClientActionByNameExecute

func (a *DownloadClientApiService) CreateDownloadClientActionByNameExecute(r ApiCreateDownloadClientActionByNameRequest) (*http.Response, error)

Execute executes the request

func (*DownloadClientApiService) CreateDownloadClientExecute

Execute executes the request

@return DownloadClientResource

func (*DownloadClientApiService) DeleteDownloadClient

DeleteDownloadClient Method for DeleteDownloadClient

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

func (*DownloadClientApiService) DeleteDownloadClientExecute

func (a *DownloadClientApiService) DeleteDownloadClientExecute(r ApiDeleteDownloadClientRequest) (*http.Response, error)

Execute executes the request

func (*DownloadClientApiService) GetDownloadClientById

GetDownloadClientById Method for GetDownloadClientById

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

func (*DownloadClientApiService) GetDownloadClientByIdExecute

Execute executes the request

@return DownloadClientResource

func (*DownloadClientApiService) ListDownloadClient

ListDownloadClient Method for ListDownloadClient

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

func (*DownloadClientApiService) ListDownloadClientExecute

Execute executes the request

@return []DownloadClientResource

func (*DownloadClientApiService) ListDownloadClientSchema

ListDownloadClientSchema Method for ListDownloadClientSchema

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

func (*DownloadClientApiService) ListDownloadClientSchemaExecute

Execute executes the request

@return []DownloadClientResource

func (*DownloadClientApiService) TestDownloadClient

TestDownloadClient Method for TestDownloadClient

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

func (*DownloadClientApiService) TestDownloadClientExecute

func (a *DownloadClientApiService) TestDownloadClientExecute(r ApiTestDownloadClientRequest) (*http.Response, error)

Execute executes the request

func (*DownloadClientApiService) TestallDownloadClient

TestallDownloadClient Method for TestallDownloadClient

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

func (*DownloadClientApiService) TestallDownloadClientExecute

func (a *DownloadClientApiService) TestallDownloadClientExecute(r ApiTestallDownloadClientRequest) (*http.Response, error)

Execute executes the request

func (*DownloadClientApiService) UpdateDownloadClient

UpdateDownloadClient Method for UpdateDownloadClient

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

func (*DownloadClientApiService) UpdateDownloadClientExecute

Execute executes the request

@return DownloadClientResource

type DownloadClientCategory

type DownloadClientCategory struct {
	ClientCategory NullableString `json:"clientCategory,omitempty"`
	Categories     []*int32       `json:"categories,omitempty"`
}

DownloadClientCategory struct for DownloadClientCategory

func NewDownloadClientCategory

func NewDownloadClientCategory() *DownloadClientCategory

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

func NewDownloadClientCategoryWithDefaults

func NewDownloadClientCategoryWithDefaults() *DownloadClientCategory

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

func (*DownloadClientCategory) GetCategories

func (o *DownloadClientCategory) GetCategories() []*int32

GetCategories returns the Categories field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DownloadClientCategory) GetCategoriesOk

func (o *DownloadClientCategory) GetCategoriesOk() ([]*int32, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DownloadClientCategory) GetClientCategory

func (o *DownloadClientCategory) GetClientCategory() string

GetClientCategory returns the ClientCategory field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DownloadClientCategory) GetClientCategoryOk

func (o *DownloadClientCategory) GetClientCategoryOk() (*string, bool)

GetClientCategoryOk returns a tuple with the ClientCategory 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 (*DownloadClientCategory) HasCategories

func (o *DownloadClientCategory) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*DownloadClientCategory) HasClientCategory

func (o *DownloadClientCategory) HasClientCategory() bool

HasClientCategory returns a boolean if a field has been set.

func (DownloadClientCategory) MarshalJSON

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

func (*DownloadClientCategory) SetCategories

func (o *DownloadClientCategory) SetCategories(v []*int32)

SetCategories gets a reference to the given []int32 and assigns it to the Categories field.

func (*DownloadClientCategory) SetClientCategory

func (o *DownloadClientCategory) SetClientCategory(v string)

SetClientCategory gets a reference to the given NullableString and assigns it to the ClientCategory field.

func (*DownloadClientCategory) SetClientCategoryNil

func (o *DownloadClientCategory) SetClientCategoryNil()

SetClientCategoryNil sets the value for ClientCategory to be an explicit nil

func (*DownloadClientCategory) UnsetClientCategory

func (o *DownloadClientCategory) UnsetClientCategory()

UnsetClientCategory ensures that no value is present for ClientCategory, not even an explicit nil

type DownloadClientConfigApiService

type DownloadClientConfigApiService service

DownloadClientConfigApiService DownloadClientConfigApi service

func (*DownloadClientConfigApiService) GetDownloadClientConfig

GetDownloadClientConfig Method for GetDownloadClientConfig

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

func (*DownloadClientConfigApiService) GetDownloadClientConfigById

GetDownloadClientConfigById Method for GetDownloadClientConfigById

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

func (*DownloadClientConfigApiService) GetDownloadClientConfigByIdExecute

Execute executes the request

@return DownloadClientConfigResource

func (*DownloadClientConfigApiService) GetDownloadClientConfigExecute

Execute executes the request

@return DownloadClientConfigResource

func (*DownloadClientConfigApiService) UpdateDownloadClientConfig

UpdateDownloadClientConfig Method for UpdateDownloadClientConfig

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

func (*DownloadClientConfigApiService) UpdateDownloadClientConfigExecute

Execute executes the request

@return DownloadClientConfigResource

type DownloadClientConfigResource

type DownloadClientConfigResource struct {
	Id *int32 `json:"id,omitempty"`
}

DownloadClientConfigResource struct for DownloadClientConfigResource

func NewDownloadClientConfigResource

func NewDownloadClientConfigResource() *DownloadClientConfigResource

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

func NewDownloadClientConfigResourceWithDefaults

func NewDownloadClientConfigResourceWithDefaults() *DownloadClientConfigResource

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

func (*DownloadClientConfigResource) GetId

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

func (*DownloadClientConfigResource) GetIdOk

func (o *DownloadClientConfigResource) 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 (*DownloadClientConfigResource) HasId

HasId returns a boolean if a field has been set.

func (DownloadClientConfigResource) MarshalJSON

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

func (*DownloadClientConfigResource) SetId

func (o *DownloadClientConfigResource) SetId(v int32)

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

type DownloadClientResource

type DownloadClientResource struct {
	Id                 *int32                    `json:"id,omitempty"`
	Name               NullableString            `json:"name,omitempty"`
	Fields             []*Field                  `json:"fields,omitempty"`
	ImplementationName NullableString            `json:"implementationName,omitempty"`
	Implementation     NullableString            `json:"implementation,omitempty"`
	ConfigContract     NullableString            `json:"configContract,omitempty"`
	InfoLink           NullableString            `json:"infoLink,omitempty"`
	Message            *ProviderMessage          `json:"message,omitempty"`
	Tags               []*int32                  `json:"tags,omitempty"`
	Presets            []*DownloadClientResource `json:"presets,omitempty"`
	Enable             *bool                     `json:"enable,omitempty"`
	Protocol           *DownloadProtocol         `json:"protocol,omitempty"`
	Priority           *int32                    `json:"priority,omitempty"`
	Categories         []*DownloadClientCategory `json:"categories,omitempty"`
	SupportsCategories *bool                     `json:"supportsCategories,omitempty"`
}

DownloadClientResource struct for DownloadClientResource

func NewDownloadClientResource

func NewDownloadClientResource() *DownloadClientResource

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

func NewDownloadClientResourceWithDefaults

func NewDownloadClientResourceWithDefaults() *DownloadClientResource

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

func (*DownloadClientResource) GetCategories

func (o *DownloadClientResource) GetCategories() []*DownloadClientCategory

GetCategories returns the Categories field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DownloadClientResource) GetCategoriesOk

func (o *DownloadClientResource) GetCategoriesOk() ([]*DownloadClientCategory, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DownloadClientResource) GetConfigContract

func (o *DownloadClientResource) GetConfigContract() string

GetConfigContract returns the ConfigContract field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DownloadClientResource) GetConfigContractOk

func (o *DownloadClientResource) GetConfigContractOk() (*string, bool)

GetConfigContractOk returns a tuple with the ConfigContract 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 (*DownloadClientResource) GetEnable

func (o *DownloadClientResource) GetEnable() bool

GetEnable returns the Enable field value if set, zero value otherwise.

func (*DownloadClientResource) GetEnableOk

func (o *DownloadClientResource) GetEnableOk() (*bool, bool)

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

func (*DownloadClientResource) GetFields

func (o *DownloadClientResource) GetFields() []*Field

GetFields returns the Fields field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DownloadClientResource) GetFieldsOk

func (o *DownloadClientResource) GetFieldsOk() ([]*Field, bool)

GetFieldsOk returns a tuple with the Fields 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 (*DownloadClientResource) GetId

func (o *DownloadClientResource) GetId() int32

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

func (*DownloadClientResource) GetIdOk

func (o *DownloadClientResource) 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 (*DownloadClientResource) GetImplementation

func (o *DownloadClientResource) GetImplementation() string

GetImplementation returns the Implementation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DownloadClientResource) GetImplementationName

func (o *DownloadClientResource) GetImplementationName() string

GetImplementationName returns the ImplementationName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DownloadClientResource) GetImplementationNameOk

func (o *DownloadClientResource) GetImplementationNameOk() (*string, bool)

GetImplementationNameOk returns a tuple with the ImplementationName 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 (*DownloadClientResource) GetImplementationOk

func (o *DownloadClientResource) GetImplementationOk() (*string, bool)

GetImplementationOk returns a tuple with the Implementation 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 (o *DownloadClientResource) GetInfoLink() string

GetInfoLink returns the InfoLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DownloadClientResource) GetInfoLinkOk

func (o *DownloadClientResource) GetInfoLinkOk() (*string, bool)

GetInfoLinkOk returns a tuple with the InfoLink 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 (*DownloadClientResource) GetMessage

func (o *DownloadClientResource) GetMessage() ProviderMessage

GetMessage returns the Message field value if set, zero value otherwise.

func (*DownloadClientResource) GetMessageOk

func (o *DownloadClientResource) GetMessageOk() (*ProviderMessage, 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 (*DownloadClientResource) GetName

func (o *DownloadClientResource) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DownloadClientResource) GetNameOk

func (o *DownloadClientResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DownloadClientResource) GetPresets

GetPresets returns the Presets field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DownloadClientResource) GetPresetsOk

func (o *DownloadClientResource) GetPresetsOk() ([]*DownloadClientResource, bool)

GetPresetsOk returns a tuple with the Presets 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 (*DownloadClientResource) GetPriority

func (o *DownloadClientResource) GetPriority() int32

GetPriority returns the Priority field value if set, zero value otherwise.

func (*DownloadClientResource) GetPriorityOk

func (o *DownloadClientResource) GetPriorityOk() (*int32, bool)

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

func (*DownloadClientResource) GetProtocol

func (o *DownloadClientResource) GetProtocol() DownloadProtocol

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*DownloadClientResource) GetProtocolOk

func (o *DownloadClientResource) GetProtocolOk() (*DownloadProtocol, bool)

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

func (*DownloadClientResource) GetSupportsCategories

func (o *DownloadClientResource) GetSupportsCategories() bool

GetSupportsCategories returns the SupportsCategories field value if set, zero value otherwise.

func (*DownloadClientResource) GetSupportsCategoriesOk

func (o *DownloadClientResource) GetSupportsCategoriesOk() (*bool, bool)

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

func (*DownloadClientResource) GetTags

func (o *DownloadClientResource) GetTags() []*int32

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DownloadClientResource) GetTagsOk

func (o *DownloadClientResource) GetTagsOk() ([]*int32, bool)

GetTagsOk returns a tuple with the Tags 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 (*DownloadClientResource) HasCategories

func (o *DownloadClientResource) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*DownloadClientResource) HasConfigContract

func (o *DownloadClientResource) HasConfigContract() bool

HasConfigContract returns a boolean if a field has been set.

func (*DownloadClientResource) HasEnable

func (o *DownloadClientResource) HasEnable() bool

HasEnable returns a boolean if a field has been set.

func (*DownloadClientResource) HasFields

func (o *DownloadClientResource) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*DownloadClientResource) HasId

func (o *DownloadClientResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*DownloadClientResource) HasImplementation

func (o *DownloadClientResource) HasImplementation() bool

HasImplementation returns a boolean if a field has been set.

func (*DownloadClientResource) HasImplementationName

func (o *DownloadClientResource) HasImplementationName() bool

HasImplementationName returns a boolean if a field has been set.

func (o *DownloadClientResource) HasInfoLink() bool

HasInfoLink returns a boolean if a field has been set.

func (*DownloadClientResource) HasMessage

func (o *DownloadClientResource) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DownloadClientResource) HasName

func (o *DownloadClientResource) HasName() bool

HasName returns a boolean if a field has been set.

func (*DownloadClientResource) HasPresets

func (o *DownloadClientResource) HasPresets() bool

HasPresets returns a boolean if a field has been set.

func (*DownloadClientResource) HasPriority

func (o *DownloadClientResource) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*DownloadClientResource) HasProtocol

func (o *DownloadClientResource) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*DownloadClientResource) HasSupportsCategories

func (o *DownloadClientResource) HasSupportsCategories() bool

HasSupportsCategories returns a boolean if a field has been set.

func (*DownloadClientResource) HasTags

func (o *DownloadClientResource) HasTags() bool

HasTags returns a boolean if a field has been set.

func (DownloadClientResource) MarshalJSON

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

func (*DownloadClientResource) SetCategories

func (o *DownloadClientResource) SetCategories(v []*DownloadClientCategory)

SetCategories gets a reference to the given []DownloadClientCategory and assigns it to the Categories field.

func (*DownloadClientResource) SetConfigContract

func (o *DownloadClientResource) SetConfigContract(v string)

SetConfigContract gets a reference to the given NullableString and assigns it to the ConfigContract field.

func (*DownloadClientResource) SetConfigContractNil

func (o *DownloadClientResource) SetConfigContractNil()

SetConfigContractNil sets the value for ConfigContract to be an explicit nil

func (*DownloadClientResource) SetEnable

func (o *DownloadClientResource) SetEnable(v bool)

SetEnable gets a reference to the given bool and assigns it to the Enable field.

func (*DownloadClientResource) SetFields

func (o *DownloadClientResource) SetFields(v []*Field)

SetFields gets a reference to the given []Field and assigns it to the Fields field.

func (*DownloadClientResource) SetId

func (o *DownloadClientResource) SetId(v int32)

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

func (*DownloadClientResource) SetImplementation

func (o *DownloadClientResource) SetImplementation(v string)

SetImplementation gets a reference to the given NullableString and assigns it to the Implementation field.

func (*DownloadClientResource) SetImplementationName

func (o *DownloadClientResource) SetImplementationName(v string)

SetImplementationName gets a reference to the given NullableString and assigns it to the ImplementationName field.

func (*DownloadClientResource) SetImplementationNameNil

func (o *DownloadClientResource) SetImplementationNameNil()

SetImplementationNameNil sets the value for ImplementationName to be an explicit nil

func (*DownloadClientResource) SetImplementationNil

func (o *DownloadClientResource) SetImplementationNil()

SetImplementationNil sets the value for Implementation to be an explicit nil

func (o *DownloadClientResource) SetInfoLink(v string)

SetInfoLink gets a reference to the given NullableString and assigns it to the InfoLink field.

func (*DownloadClientResource) SetInfoLinkNil

func (o *DownloadClientResource) SetInfoLinkNil()

SetInfoLinkNil sets the value for InfoLink to be an explicit nil

func (*DownloadClientResource) SetMessage

func (o *DownloadClientResource) SetMessage(v ProviderMessage)

SetMessage gets a reference to the given ProviderMessage and assigns it to the Message field.

func (*DownloadClientResource) SetName

func (o *DownloadClientResource) SetName(v string)

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

func (*DownloadClientResource) SetNameNil

func (o *DownloadClientResource) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*DownloadClientResource) SetPresets

func (o *DownloadClientResource) SetPresets(v []*DownloadClientResource)

SetPresets gets a reference to the given []DownloadClientResource and assigns it to the Presets field.

func (*DownloadClientResource) SetPriority

func (o *DownloadClientResource) SetPriority(v int32)

SetPriority gets a reference to the given int32 and assigns it to the Priority field.

func (*DownloadClientResource) SetProtocol

func (o *DownloadClientResource) SetProtocol(v DownloadProtocol)

SetProtocol gets a reference to the given DownloadProtocol and assigns it to the Protocol field.

func (*DownloadClientResource) SetSupportsCategories

func (o *DownloadClientResource) SetSupportsCategories(v bool)

SetSupportsCategories gets a reference to the given bool and assigns it to the SupportsCategories field.

func (*DownloadClientResource) SetTags

func (o *DownloadClientResource) SetTags(v []*int32)

SetTags gets a reference to the given []int32 and assigns it to the Tags field.

func (*DownloadClientResource) UnsetConfigContract

func (o *DownloadClientResource) UnsetConfigContract()

UnsetConfigContract ensures that no value is present for ConfigContract, not even an explicit nil

func (*DownloadClientResource) UnsetImplementation

func (o *DownloadClientResource) UnsetImplementation()

UnsetImplementation ensures that no value is present for Implementation, not even an explicit nil

func (*DownloadClientResource) UnsetImplementationName

func (o *DownloadClientResource) UnsetImplementationName()

UnsetImplementationName ensures that no value is present for ImplementationName, not even an explicit nil

func (o *DownloadClientResource) UnsetInfoLink()

UnsetInfoLink ensures that no value is present for InfoLink, not even an explicit nil

func (*DownloadClientResource) UnsetName

func (o *DownloadClientResource) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type DownloadProtocol

type DownloadProtocol string

DownloadProtocol the model 'DownloadProtocol'

const (
	DOWNLOADPROTOCOL_UNKNOWN DownloadProtocol = "unknown"
	DOWNLOADPROTOCOL_USENET  DownloadProtocol = "usenet"
	DOWNLOADPROTOCOL_TORRENT DownloadProtocol = "torrent"
)

List of DownloadProtocol

func NewDownloadProtocolFromValue

func NewDownloadProtocolFromValue(v string) (*DownloadProtocol, error)

NewDownloadProtocolFromValue returns a pointer to a valid DownloadProtocol for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DownloadProtocol) IsValid

func (v DownloadProtocol) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DownloadProtocol) Ptr

Ptr returns reference to DownloadProtocol value

func (*DownloadProtocol) UnmarshalJSON

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

type Field

type Field struct {
	Order                       *int32          `json:"order,omitempty"`
	Name                        NullableString  `json:"name,omitempty"`
	Label                       NullableString  `json:"label,omitempty"`
	Unit                        NullableString  `json:"unit,omitempty"`
	HelpText                    NullableString  `json:"helpText,omitempty"`
	HelpLink                    NullableString  `json:"helpLink,omitempty"`
	Value                       interface{}     `json:"value,omitempty"`
	Type                        NullableString  `json:"type,omitempty"`
	Advanced                    *bool           `json:"advanced,omitempty"`
	SelectOptions               []*SelectOption `json:"selectOptions,omitempty"`
	SelectOptionsProviderAction NullableString  `json:"selectOptionsProviderAction,omitempty"`
	Section                     NullableString  `json:"section,omitempty"`
	Hidden                      NullableString  `json:"hidden,omitempty"`
	Placeholder                 NullableString  `json:"placeholder,omitempty"`
}

Field struct for Field

func NewField

func NewField() *Field

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

func NewFieldWithDefaults

func NewFieldWithDefaults() *Field

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

func (*Field) GetAdvanced

func (o *Field) GetAdvanced() bool

GetAdvanced returns the Advanced field value if set, zero value otherwise.

func (*Field) GetAdvancedOk

func (o *Field) GetAdvancedOk() (*bool, bool)

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

func (o *Field) GetHelpLink() string

GetHelpLink returns the HelpLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetHelpLinkOk

func (o *Field) GetHelpLinkOk() (*string, bool)

GetHelpLinkOk returns a tuple with the HelpLink 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 (*Field) GetHelpText

func (o *Field) GetHelpText() string

GetHelpText returns the HelpText field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetHelpTextOk

func (o *Field) GetHelpTextOk() (*string, bool)

GetHelpTextOk returns a tuple with the HelpText 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 (*Field) GetHidden

func (o *Field) GetHidden() string

GetHidden returns the Hidden field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetHiddenOk

func (o *Field) GetHiddenOk() (*string, bool)

GetHiddenOk returns a tuple with the Hidden 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 (*Field) GetLabel

func (o *Field) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetLabelOk

func (o *Field) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label 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 (*Field) GetName

func (o *Field) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetNameOk

func (o *Field) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Field) GetOrder

func (o *Field) GetOrder() int32

GetOrder returns the Order field value if set, zero value otherwise.

func (*Field) GetOrderOk

func (o *Field) GetOrderOk() (*int32, bool)

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

func (*Field) GetPlaceholder

func (o *Field) GetPlaceholder() string

GetPlaceholder returns the Placeholder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetPlaceholderOk

func (o *Field) GetPlaceholderOk() (*string, bool)

GetPlaceholderOk returns a tuple with the Placeholder 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 (*Field) GetSection

func (o *Field) GetSection() string

GetSection returns the Section field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetSectionOk

func (o *Field) GetSectionOk() (*string, bool)

GetSectionOk returns a tuple with the Section 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 (*Field) GetSelectOptions

func (o *Field) GetSelectOptions() []*SelectOption

GetSelectOptions returns the SelectOptions field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetSelectOptionsOk

func (o *Field) GetSelectOptionsOk() ([]*SelectOption, bool)

GetSelectOptionsOk returns a tuple with the SelectOptions 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 (*Field) GetSelectOptionsProviderAction

func (o *Field) GetSelectOptionsProviderAction() string

GetSelectOptionsProviderAction returns the SelectOptionsProviderAction field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetSelectOptionsProviderActionOk

func (o *Field) GetSelectOptionsProviderActionOk() (*string, bool)

GetSelectOptionsProviderActionOk returns a tuple with the SelectOptionsProviderAction 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 (*Field) GetType

func (o *Field) GetType() string

GetType returns the Type field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetTypeOk

func (o *Field) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Field) GetUnit

func (o *Field) GetUnit() string

GetUnit returns the Unit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetUnitOk

func (o *Field) GetUnitOk() (*string, bool)

GetUnitOk returns a tuple with the Unit 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 (*Field) GetValue

func (o *Field) GetValue() interface{}

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*Field) GetValueOk

func (o *Field) GetValueOk() (*interface{}, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*Field) HasAdvanced

func (o *Field) HasAdvanced() bool

HasAdvanced returns a boolean if a field has been set.

func (o *Field) HasHelpLink() bool

HasHelpLink returns a boolean if a field has been set.

func (*Field) HasHelpText

func (o *Field) HasHelpText() bool

HasHelpText returns a boolean if a field has been set.

func (*Field) HasHidden

func (o *Field) HasHidden() bool

HasHidden returns a boolean if a field has been set.

func (*Field) HasLabel

func (o *Field) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*Field) HasName

func (o *Field) HasName() bool

HasName returns a boolean if a field has been set.

func (*Field) HasOrder

func (o *Field) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*Field) HasPlaceholder

func (o *Field) HasPlaceholder() bool

HasPlaceholder returns a boolean if a field has been set.

func (*Field) HasSection

func (o *Field) HasSection() bool

HasSection returns a boolean if a field has been set.

func (*Field) HasSelectOptions

func (o *Field) HasSelectOptions() bool

HasSelectOptions returns a boolean if a field has been set.

func (*Field) HasSelectOptionsProviderAction

func (o *Field) HasSelectOptionsProviderAction() bool

HasSelectOptionsProviderAction returns a boolean if a field has been set.

func (*Field) HasType

func (o *Field) HasType() bool

HasType returns a boolean if a field has been set.

func (*Field) HasUnit

func (o *Field) HasUnit() bool

HasUnit returns a boolean if a field has been set.

func (*Field) HasValue

func (o *Field) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Field) MarshalJSON

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

func (*Field) SetAdvanced

func (o *Field) SetAdvanced(v bool)

SetAdvanced gets a reference to the given bool and assigns it to the Advanced field.

func (o *Field) SetHelpLink(v string)

SetHelpLink gets a reference to the given NullableString and assigns it to the HelpLink field.

func (*Field) SetHelpLinkNil

func (o *Field) SetHelpLinkNil()

SetHelpLinkNil sets the value for HelpLink to be an explicit nil

func (*Field) SetHelpText

func (o *Field) SetHelpText(v string)

SetHelpText gets a reference to the given NullableString and assigns it to the HelpText field.

func (*Field) SetHelpTextNil

func (o *Field) SetHelpTextNil()

SetHelpTextNil sets the value for HelpText to be an explicit nil

func (*Field) SetHidden

func (o *Field) SetHidden(v string)

SetHidden gets a reference to the given NullableString and assigns it to the Hidden field.

func (*Field) SetHiddenNil

func (o *Field) SetHiddenNil()

SetHiddenNil sets the value for Hidden to be an explicit nil

func (*Field) SetLabel

func (o *Field) SetLabel(v string)

SetLabel gets a reference to the given NullableString and assigns it to the Label field.

func (*Field) SetLabelNil

func (o *Field) SetLabelNil()

SetLabelNil sets the value for Label to be an explicit nil

func (*Field) SetName

func (o *Field) SetName(v string)

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

func (*Field) SetNameNil

func (o *Field) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*Field) SetOrder

func (o *Field) SetOrder(v int32)

SetOrder gets a reference to the given int32 and assigns it to the Order field.

func (*Field) SetPlaceholder

func (o *Field) SetPlaceholder(v string)

SetPlaceholder gets a reference to the given NullableString and assigns it to the Placeholder field.

func (*Field) SetPlaceholderNil

func (o *Field) SetPlaceholderNil()

SetPlaceholderNil sets the value for Placeholder to be an explicit nil

func (*Field) SetSection

func (o *Field) SetSection(v string)

SetSection gets a reference to the given NullableString and assigns it to the Section field.

func (*Field) SetSectionNil

func (o *Field) SetSectionNil()

SetSectionNil sets the value for Section to be an explicit nil

func (*Field) SetSelectOptions

func (o *Field) SetSelectOptions(v []*SelectOption)

SetSelectOptions gets a reference to the given []SelectOption and assigns it to the SelectOptions field.

func (*Field) SetSelectOptionsProviderAction

func (o *Field) SetSelectOptionsProviderAction(v string)

SetSelectOptionsProviderAction gets a reference to the given NullableString and assigns it to the SelectOptionsProviderAction field.

func (*Field) SetSelectOptionsProviderActionNil

func (o *Field) SetSelectOptionsProviderActionNil()

SetSelectOptionsProviderActionNil sets the value for SelectOptionsProviderAction to be an explicit nil

func (*Field) SetType

func (o *Field) SetType(v string)

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

func (*Field) SetTypeNil

func (o *Field) SetTypeNil()

SetTypeNil sets the value for Type to be an explicit nil

func (*Field) SetUnit

func (o *Field) SetUnit(v string)

SetUnit gets a reference to the given NullableString and assigns it to the Unit field.

func (*Field) SetUnitNil

func (o *Field) SetUnitNil()

SetUnitNil sets the value for Unit to be an explicit nil

func (*Field) SetValue

func (o *Field) SetValue(v interface{})

SetValue gets a reference to the given interface{} and assigns it to the Value field.

func (o *Field) UnsetHelpLink()

UnsetHelpLink ensures that no value is present for HelpLink, not even an explicit nil

func (*Field) UnsetHelpText

func (o *Field) UnsetHelpText()

UnsetHelpText ensures that no value is present for HelpText, not even an explicit nil

func (*Field) UnsetHidden

func (o *Field) UnsetHidden()

UnsetHidden ensures that no value is present for Hidden, not even an explicit nil

func (*Field) UnsetLabel

func (o *Field) UnsetLabel()

UnsetLabel ensures that no value is present for Label, not even an explicit nil

func (*Field) UnsetName

func (o *Field) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*Field) UnsetPlaceholder

func (o *Field) UnsetPlaceholder()

UnsetPlaceholder ensures that no value is present for Placeholder, not even an explicit nil

func (*Field) UnsetSection

func (o *Field) UnsetSection()

UnsetSection ensures that no value is present for Section, not even an explicit nil

func (*Field) UnsetSelectOptionsProviderAction

func (o *Field) UnsetSelectOptionsProviderAction()

UnsetSelectOptionsProviderAction ensures that no value is present for SelectOptionsProviderAction, not even an explicit nil

func (*Field) UnsetType

func (o *Field) UnsetType()

UnsetType ensures that no value is present for Type, not even an explicit nil

func (*Field) UnsetUnit

func (o *Field) UnsetUnit()

UnsetUnit ensures that no value is present for Unit, not even an explicit nil

type FileSystemApiService

type FileSystemApiService service

FileSystemApiService FileSystemApi service

func (*FileSystemApiService) GetFileSystem

GetFileSystem Method for GetFileSystem

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

func (*FileSystemApiService) GetFileSystemExecute

func (a *FileSystemApiService) GetFileSystemExecute(r ApiGetFileSystemRequest) (*http.Response, error)

Execute executes the request

func (*FileSystemApiService) GetFileSystemType

GetFileSystemType Method for GetFileSystemType

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

func (*FileSystemApiService) GetFileSystemTypeExecute

func (a *FileSystemApiService) GetFileSystemTypeExecute(r ApiGetFileSystemTypeRequest) (*http.Response, error)

Execute executes the request

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 HealthApiService

type HealthApiService service

HealthApiService HealthApi service

func (*HealthApiService) GetHealthById

func (a *HealthApiService) GetHealthById(ctx context.Context, id int32) ApiGetHealthByIdRequest

GetHealthById Method for GetHealthById

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

func (*HealthApiService) GetHealthByIdExecute

func (a *HealthApiService) GetHealthByIdExecute(r ApiGetHealthByIdRequest) (*HealthResource, *http.Response, error)

Execute executes the request

@return HealthResource

func (*HealthApiService) ListHealth

ListHealth Method for ListHealth

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

func (*HealthApiService) ListHealthExecute

func (a *HealthApiService) ListHealthExecute(r ApiListHealthRequest) ([]*HealthResource, *http.Response, error)

Execute executes the request

@return []HealthResource

type HealthCheckResult

type HealthCheckResult string

HealthCheckResult the model 'HealthCheckResult'

const (
	HEALTHCHECKRESULT_OK      HealthCheckResult = "ok"
	HEALTHCHECKRESULT_NOTICE  HealthCheckResult = "notice"
	HEALTHCHECKRESULT_WARNING HealthCheckResult = "warning"
	HEALTHCHECKRESULT_ERROR   HealthCheckResult = "error"
)

List of HealthCheckResult

func NewHealthCheckResultFromValue

func NewHealthCheckResultFromValue(v string) (*HealthCheckResult, error)

NewHealthCheckResultFromValue returns a pointer to a valid HealthCheckResult for the value passed as argument, or an error if the value passed is not allowed by the enum

func (HealthCheckResult) IsValid

func (v HealthCheckResult) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (HealthCheckResult) Ptr

Ptr returns reference to HealthCheckResult value

func (*HealthCheckResult) UnmarshalJSON

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

type HealthResource

type HealthResource struct {
	Id      *int32             `json:"id,omitempty"`
	Source  NullableString     `json:"source,omitempty"`
	Type    *HealthCheckResult `json:"type,omitempty"`
	Message NullableString     `json:"message,omitempty"`
	WikiUrl *HttpUri           `json:"wikiUrl,omitempty"`
}

HealthResource struct for HealthResource

func NewHealthResource

func NewHealthResource() *HealthResource

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

func NewHealthResourceWithDefaults

func NewHealthResourceWithDefaults() *HealthResource

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

func (*HealthResource) GetId

func (o *HealthResource) GetId() int32

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

func (*HealthResource) GetIdOk

func (o *HealthResource) 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 (*HealthResource) GetMessage

func (o *HealthResource) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HealthResource) GetMessageOk

func (o *HealthResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HealthResource) GetSource

func (o *HealthResource) GetSource() string

GetSource returns the Source field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HealthResource) GetSourceOk

func (o *HealthResource) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source 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 (*HealthResource) GetType

func (o *HealthResource) GetType() HealthCheckResult

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

func (*HealthResource) GetTypeOk

func (o *HealthResource) GetTypeOk() (*HealthCheckResult, 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 (*HealthResource) GetWikiUrl

func (o *HealthResource) GetWikiUrl() HttpUri

GetWikiUrl returns the WikiUrl field value if set, zero value otherwise.

func (*HealthResource) GetWikiUrlOk

func (o *HealthResource) GetWikiUrlOk() (*HttpUri, bool)

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

func (*HealthResource) HasId

func (o *HealthResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*HealthResource) HasMessage

func (o *HealthResource) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*HealthResource) HasSource

func (o *HealthResource) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*HealthResource) HasType

func (o *HealthResource) HasType() bool

HasType returns a boolean if a field has been set.

func (*HealthResource) HasWikiUrl

func (o *HealthResource) HasWikiUrl() bool

HasWikiUrl returns a boolean if a field has been set.

func (HealthResource) MarshalJSON

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

func (*HealthResource) SetId

func (o *HealthResource) SetId(v int32)

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

func (*HealthResource) SetMessage

func (o *HealthResource) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*HealthResource) SetMessageNil

func (o *HealthResource) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*HealthResource) SetSource

func (o *HealthResource) SetSource(v string)

SetSource gets a reference to the given NullableString and assigns it to the Source field.

func (*HealthResource) SetSourceNil

func (o *HealthResource) SetSourceNil()

SetSourceNil sets the value for Source to be an explicit nil

func (*HealthResource) SetType

func (o *HealthResource) SetType(v HealthCheckResult)

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

func (*HealthResource) SetWikiUrl

func (o *HealthResource) SetWikiUrl(v HttpUri)

SetWikiUrl gets a reference to the given HttpUri and assigns it to the WikiUrl field.

func (*HealthResource) UnsetMessage

func (o *HealthResource) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*HealthResource) UnsetSource

func (o *HealthResource) UnsetSource()

UnsetSource ensures that no value is present for Source, not even an explicit nil

type HistoryApiService

type HistoryApiService service

HistoryApiService HistoryApi service

func (*HistoryApiService) GetHistory

GetHistory Method for GetHistory

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

func (*HistoryApiService) GetHistoryExecute

Execute executes the request

@return HistoryResourcePagingResource

func (*HistoryApiService) ListHistoryIndexer

ListHistoryIndexer Method for ListHistoryIndexer

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

func (*HistoryApiService) ListHistoryIndexerExecute

func (a *HistoryApiService) ListHistoryIndexerExecute(r ApiListHistoryIndexerRequest) ([]*HistoryResource, *http.Response, error)

Execute executes the request

@return []HistoryResource

func (*HistoryApiService) ListHistorySince

ListHistorySince Method for ListHistorySince

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

func (*HistoryApiService) ListHistorySinceExecute

func (a *HistoryApiService) ListHistorySinceExecute(r ApiListHistorySinceRequest) ([]*HistoryResource, *http.Response, error)

Execute executes the request

@return []HistoryResource

type HistoryEventType

type HistoryEventType string

HistoryEventType the model 'HistoryEventType'

const (
	HISTORYEVENTTYPE_UNKNOWN         HistoryEventType = "unknown"
	HISTORYEVENTTYPE_RELEASE_GRABBED HistoryEventType = "releaseGrabbed"
	HISTORYEVENTTYPE_INDEXER_QUERY   HistoryEventType = "indexerQuery"
	HISTORYEVENTTYPE_INDEXER_RSS     HistoryEventType = "indexerRss"
	HISTORYEVENTTYPE_INDEXER_AUTH    HistoryEventType = "indexerAuth"
	HISTORYEVENTTYPE_INDEXER_INFO    HistoryEventType = "indexerInfo"
)

List of HistoryEventType

func NewHistoryEventTypeFromValue

func NewHistoryEventTypeFromValue(v string) (*HistoryEventType, error)

NewHistoryEventTypeFromValue returns a pointer to a valid HistoryEventType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (HistoryEventType) IsValid

func (v HistoryEventType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (HistoryEventType) Ptr

Ptr returns reference to HistoryEventType value

func (*HistoryEventType) UnmarshalJSON

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

type HistoryResource

type HistoryResource struct {
	Id         *int32            `json:"id,omitempty"`
	IndexerId  *int32            `json:"indexerId,omitempty"`
	Date       *time.Time        `json:"date,omitempty"`
	DownloadId NullableString    `json:"downloadId,omitempty"`
	Successful *bool             `json:"successful,omitempty"`
	EventType  *HistoryEventType `json:"eventType,omitempty"`
	Data       map[string]string `json:"data,omitempty"`
}

HistoryResource struct for HistoryResource

func NewHistoryResource

func NewHistoryResource() *HistoryResource

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

func NewHistoryResourceWithDefaults

func NewHistoryResourceWithDefaults() *HistoryResource

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

func (*HistoryResource) GetData

func (o *HistoryResource) GetData() map[string]string

GetData returns the Data field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HistoryResource) GetDataOk

func (o *HistoryResource) GetDataOk() (*map[string]string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HistoryResource) GetDate

func (o *HistoryResource) GetDate() time.Time

GetDate returns the Date field value if set, zero value otherwise.

func (*HistoryResource) GetDateOk

func (o *HistoryResource) GetDateOk() (*time.Time, bool)

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

func (*HistoryResource) GetDownloadId

func (o *HistoryResource) GetDownloadId() string

GetDownloadId returns the DownloadId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HistoryResource) GetDownloadIdOk

func (o *HistoryResource) GetDownloadIdOk() (*string, bool)

GetDownloadIdOk returns a tuple with the DownloadId 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 (*HistoryResource) GetEventType

func (o *HistoryResource) GetEventType() HistoryEventType

GetEventType returns the EventType field value if set, zero value otherwise.

func (*HistoryResource) GetEventTypeOk

func (o *HistoryResource) GetEventTypeOk() (*HistoryEventType, bool)

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

func (*HistoryResource) GetId

func (o *HistoryResource) GetId() int32

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

func (*HistoryResource) GetIdOk

func (o *HistoryResource) 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 (*HistoryResource) GetIndexerId

func (o *HistoryResource) GetIndexerId() int32

GetIndexerId returns the IndexerId field value if set, zero value otherwise.

func (*HistoryResource) GetIndexerIdOk

func (o *HistoryResource) GetIndexerIdOk() (*int32, bool)

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

func (*HistoryResource) GetSuccessful

func (o *HistoryResource) GetSuccessful() bool

GetSuccessful returns the Successful field value if set, zero value otherwise.

func (*HistoryResource) GetSuccessfulOk

func (o *HistoryResource) GetSuccessfulOk() (*bool, bool)

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

func (*HistoryResource) HasData

func (o *HistoryResource) HasData() bool

HasData returns a boolean if a field has been set.

func (*HistoryResource) HasDate

func (o *HistoryResource) HasDate() bool

HasDate returns a boolean if a field has been set.

func (*HistoryResource) HasDownloadId

func (o *HistoryResource) HasDownloadId() bool

HasDownloadId returns a boolean if a field has been set.

func (*HistoryResource) HasEventType

func (o *HistoryResource) HasEventType() bool

HasEventType returns a boolean if a field has been set.

func (*HistoryResource) HasId

func (o *HistoryResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*HistoryResource) HasIndexerId

func (o *HistoryResource) HasIndexerId() bool

HasIndexerId returns a boolean if a field has been set.

func (*HistoryResource) HasSuccessful

func (o *HistoryResource) HasSuccessful() bool

HasSuccessful returns a boolean if a field has been set.

func (HistoryResource) MarshalJSON

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

func (*HistoryResource) SetData

func (o *HistoryResource) SetData(v map[string]string)

SetData gets a reference to the given map[string]string and assigns it to the Data field.

func (*HistoryResource) SetDate

func (o *HistoryResource) SetDate(v time.Time)

SetDate gets a reference to the given time.Time and assigns it to the Date field.

func (*HistoryResource) SetDownloadId

func (o *HistoryResource) SetDownloadId(v string)

SetDownloadId gets a reference to the given NullableString and assigns it to the DownloadId field.

func (*HistoryResource) SetDownloadIdNil

func (o *HistoryResource) SetDownloadIdNil()

SetDownloadIdNil sets the value for DownloadId to be an explicit nil

func (*HistoryResource) SetEventType

func (o *HistoryResource) SetEventType(v HistoryEventType)

SetEventType gets a reference to the given HistoryEventType and assigns it to the EventType field.

func (*HistoryResource) SetId

func (o *HistoryResource) SetId(v int32)

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

func (*HistoryResource) SetIndexerId

func (o *HistoryResource) SetIndexerId(v int32)

SetIndexerId gets a reference to the given int32 and assigns it to the IndexerId field.

func (*HistoryResource) SetSuccessful

func (o *HistoryResource) SetSuccessful(v bool)

SetSuccessful gets a reference to the given bool and assigns it to the Successful field.

func (*HistoryResource) UnsetDownloadId

func (o *HistoryResource) UnsetDownloadId()

UnsetDownloadId ensures that no value is present for DownloadId, not even an explicit nil

type HistoryResourcePagingResource

type HistoryResourcePagingResource struct {
	Page          *int32                  `json:"page,omitempty"`
	PageSize      *int32                  `json:"pageSize,omitempty"`
	SortKey       NullableString          `json:"sortKey,omitempty"`
	SortDirection *SortDirection          `json:"sortDirection,omitempty"`
	Filters       []*PagingResourceFilter `json:"filters,omitempty"`
	TotalRecords  *int32                  `json:"totalRecords,omitempty"`
	Records       []*HistoryResource      `json:"records,omitempty"`
}

HistoryResourcePagingResource struct for HistoryResourcePagingResource

func NewHistoryResourcePagingResource

func NewHistoryResourcePagingResource() *HistoryResourcePagingResource

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

func NewHistoryResourcePagingResourceWithDefaults

func NewHistoryResourcePagingResourceWithDefaults() *HistoryResourcePagingResource

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

func (*HistoryResourcePagingResource) GetFilters

GetFilters returns the Filters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HistoryResourcePagingResource) GetFiltersOk

GetFiltersOk returns a tuple with the Filters 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 (*HistoryResourcePagingResource) GetPage

func (o *HistoryResourcePagingResource) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*HistoryResourcePagingResource) GetPageOk

func (o *HistoryResourcePagingResource) GetPageOk() (*int32, bool)

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

func (*HistoryResourcePagingResource) GetPageSize

func (o *HistoryResourcePagingResource) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*HistoryResourcePagingResource) GetPageSizeOk

func (o *HistoryResourcePagingResource) GetPageSizeOk() (*int32, bool)

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

func (*HistoryResourcePagingResource) GetRecords

GetRecords returns the Records field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HistoryResourcePagingResource) GetRecordsOk

func (o *HistoryResourcePagingResource) GetRecordsOk() ([]*HistoryResource, bool)

GetRecordsOk returns a tuple with the Records 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 (*HistoryResourcePagingResource) GetSortDirection

func (o *HistoryResourcePagingResource) GetSortDirection() SortDirection

GetSortDirection returns the SortDirection field value if set, zero value otherwise.

func (*HistoryResourcePagingResource) GetSortDirectionOk

func (o *HistoryResourcePagingResource) GetSortDirectionOk() (*SortDirection, bool)

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

func (*HistoryResourcePagingResource) GetSortKey

func (o *HistoryResourcePagingResource) GetSortKey() string

GetSortKey returns the SortKey field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HistoryResourcePagingResource) GetSortKeyOk

func (o *HistoryResourcePagingResource) GetSortKeyOk() (*string, bool)

GetSortKeyOk returns a tuple with the SortKey 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 (*HistoryResourcePagingResource) GetTotalRecords

func (o *HistoryResourcePagingResource) GetTotalRecords() int32

GetTotalRecords returns the TotalRecords field value if set, zero value otherwise.

func (*HistoryResourcePagingResource) GetTotalRecordsOk

func (o *HistoryResourcePagingResource) GetTotalRecordsOk() (*int32, bool)

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

func (*HistoryResourcePagingResource) HasFilters

func (o *HistoryResourcePagingResource) HasFilters() bool

HasFilters returns a boolean if a field has been set.

func (*HistoryResourcePagingResource) HasPage

func (o *HistoryResourcePagingResource) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*HistoryResourcePagingResource) HasPageSize

func (o *HistoryResourcePagingResource) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*HistoryResourcePagingResource) HasRecords

func (o *HistoryResourcePagingResource) HasRecords() bool

HasRecords returns a boolean if a field has been set.

func (*HistoryResourcePagingResource) HasSortDirection

func (o *HistoryResourcePagingResource) HasSortDirection() bool

HasSortDirection returns a boolean if a field has been set.

func (*HistoryResourcePagingResource) HasSortKey

func (o *HistoryResourcePagingResource) HasSortKey() bool

HasSortKey returns a boolean if a field has been set.

func (*HistoryResourcePagingResource) HasTotalRecords

func (o *HistoryResourcePagingResource) HasTotalRecords() bool

HasTotalRecords returns a boolean if a field has been set.

func (HistoryResourcePagingResource) MarshalJSON

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

func (*HistoryResourcePagingResource) SetFilters

SetFilters gets a reference to the given []PagingResourceFilter and assigns it to the Filters field.

func (*HistoryResourcePagingResource) SetPage

func (o *HistoryResourcePagingResource) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*HistoryResourcePagingResource) SetPageSize

func (o *HistoryResourcePagingResource) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*HistoryResourcePagingResource) SetRecords

func (o *HistoryResourcePagingResource) SetRecords(v []*HistoryResource)

SetRecords gets a reference to the given []HistoryResource and assigns it to the Records field.

func (*HistoryResourcePagingResource) SetSortDirection

func (o *HistoryResourcePagingResource) SetSortDirection(v SortDirection)

SetSortDirection gets a reference to the given SortDirection and assigns it to the SortDirection field.

func (*HistoryResourcePagingResource) SetSortKey

func (o *HistoryResourcePagingResource) SetSortKey(v string)

SetSortKey gets a reference to the given NullableString and assigns it to the SortKey field.

func (*HistoryResourcePagingResource) SetSortKeyNil

func (o *HistoryResourcePagingResource) SetSortKeyNil()

SetSortKeyNil sets the value for SortKey to be an explicit nil

func (*HistoryResourcePagingResource) SetTotalRecords

func (o *HistoryResourcePagingResource) SetTotalRecords(v int32)

SetTotalRecords gets a reference to the given int32 and assigns it to the TotalRecords field.

func (*HistoryResourcePagingResource) UnsetSortKey

func (o *HistoryResourcePagingResource) UnsetSortKey()

UnsetSortKey ensures that no value is present for SortKey, not even an explicit nil

type HostConfigApiService

type HostConfigApiService service

HostConfigApiService HostConfigApi service

func (*HostConfigApiService) GetHostConfig

GetHostConfig Method for GetHostConfig

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

func (*HostConfigApiService) GetHostConfigById

GetHostConfigById Method for GetHostConfigById

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

func (*HostConfigApiService) GetHostConfigByIdExecute

Execute executes the request

@return HostConfigResource

func (*HostConfigApiService) GetHostConfigExecute

Execute executes the request

@return HostConfigResource

func (*HostConfigApiService) UpdateHostConfig

UpdateHostConfig Method for UpdateHostConfig

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

func (*HostConfigApiService) UpdateHostConfigExecute

Execute executes the request

@return HostConfigResource

type HostConfigResource

type HostConfigResource struct {
	Id                        *int32                      `json:"id,omitempty"`
	BindAddress               NullableString              `json:"bindAddress,omitempty"`
	Port                      *int32                      `json:"port,omitempty"`
	SslPort                   *int32                      `json:"sslPort,omitempty"`
	EnableSsl                 *bool                       `json:"enableSsl,omitempty"`
	LaunchBrowser             *bool                       `json:"launchBrowser,omitempty"`
	AuthenticationMethod      *AuthenticationType         `json:"authenticationMethod,omitempty"`
	AuthenticationRequired    *AuthenticationRequiredType `json:"authenticationRequired,omitempty"`
	AnalyticsEnabled          *bool                       `json:"analyticsEnabled,omitempty"`
	Username                  NullableString              `json:"username,omitempty"`
	Password                  NullableString              `json:"password,omitempty"`
	LogLevel                  NullableString              `json:"logLevel,omitempty"`
	ConsoleLogLevel           NullableString              `json:"consoleLogLevel,omitempty"`
	Branch                    NullableString              `json:"branch,omitempty"`
	ApiKey                    NullableString              `json:"apiKey,omitempty"`
	SslCertPath               NullableString              `json:"sslCertPath,omitempty"`
	SslCertPassword           NullableString              `json:"sslCertPassword,omitempty"`
	UrlBase                   NullableString              `json:"urlBase,omitempty"`
	InstanceName              NullableString              `json:"instanceName,omitempty"`
	UpdateAutomatically       *bool                       `json:"updateAutomatically,omitempty"`
	UpdateMechanism           *UpdateMechanism            `json:"updateMechanism,omitempty"`
	UpdateScriptPath          NullableString              `json:"updateScriptPath,omitempty"`
	ProxyEnabled              *bool                       `json:"proxyEnabled,omitempty"`
	ProxyType                 *ProxyType                  `json:"proxyType,omitempty"`
	ProxyHostname             NullableString              `json:"proxyHostname,omitempty"`
	ProxyPort                 *int32                      `json:"proxyPort,omitempty"`
	ProxyUsername             NullableString              `json:"proxyUsername,omitempty"`
	ProxyPassword             NullableString              `json:"proxyPassword,omitempty"`
	ProxyBypassFilter         NullableString              `json:"proxyBypassFilter,omitempty"`
	ProxyBypassLocalAddresses *bool                       `json:"proxyBypassLocalAddresses,omitempty"`
	CertificateValidation     *CertificateValidationType  `json:"certificateValidation,omitempty"`
	BackupFolder              NullableString              `json:"backupFolder,omitempty"`
	BackupInterval            *int32                      `json:"backupInterval,omitempty"`
	BackupRetention           *int32                      `json:"backupRetention,omitempty"`
	HistoryCleanupDays        *int32                      `json:"historyCleanupDays,omitempty"`
}

HostConfigResource struct for HostConfigResource

func NewHostConfigResource

func NewHostConfigResource() *HostConfigResource

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

func NewHostConfigResourceWithDefaults

func NewHostConfigResourceWithDefaults() *HostConfigResource

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

func (*HostConfigResource) GetAnalyticsEnabled

func (o *HostConfigResource) GetAnalyticsEnabled() bool

GetAnalyticsEnabled returns the AnalyticsEnabled field value if set, zero value otherwise.

func (*HostConfigResource) GetAnalyticsEnabledOk

func (o *HostConfigResource) GetAnalyticsEnabledOk() (*bool, bool)

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

func (*HostConfigResource) GetApiKey

func (o *HostConfigResource) GetApiKey() string

GetApiKey returns the ApiKey field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetApiKeyOk

func (o *HostConfigResource) GetApiKeyOk() (*string, bool)

GetApiKeyOk returns a tuple with the ApiKey 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 (*HostConfigResource) GetAuthenticationMethod

func (o *HostConfigResource) GetAuthenticationMethod() AuthenticationType

GetAuthenticationMethod returns the AuthenticationMethod field value if set, zero value otherwise.

func (*HostConfigResource) GetAuthenticationMethodOk

func (o *HostConfigResource) GetAuthenticationMethodOk() (*AuthenticationType, bool)

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

func (*HostConfigResource) GetAuthenticationRequired

func (o *HostConfigResource) GetAuthenticationRequired() AuthenticationRequiredType

GetAuthenticationRequired returns the AuthenticationRequired field value if set, zero value otherwise.

func (*HostConfigResource) GetAuthenticationRequiredOk

func (o *HostConfigResource) GetAuthenticationRequiredOk() (*AuthenticationRequiredType, bool)

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

func (*HostConfigResource) GetBackupFolder

func (o *HostConfigResource) GetBackupFolder() string

GetBackupFolder returns the BackupFolder field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetBackupFolderOk

func (o *HostConfigResource) GetBackupFolderOk() (*string, bool)

GetBackupFolderOk returns a tuple with the BackupFolder 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 (*HostConfigResource) GetBackupInterval

func (o *HostConfigResource) GetBackupInterval() int32

GetBackupInterval returns the BackupInterval field value if set, zero value otherwise.

func (*HostConfigResource) GetBackupIntervalOk

func (o *HostConfigResource) GetBackupIntervalOk() (*int32, bool)

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

func (*HostConfigResource) GetBackupRetention

func (o *HostConfigResource) GetBackupRetention() int32

GetBackupRetention returns the BackupRetention field value if set, zero value otherwise.

func (*HostConfigResource) GetBackupRetentionOk

func (o *HostConfigResource) GetBackupRetentionOk() (*int32, bool)

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

func (*HostConfigResource) GetBindAddress

func (o *HostConfigResource) GetBindAddress() string

GetBindAddress returns the BindAddress field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetBindAddressOk

func (o *HostConfigResource) GetBindAddressOk() (*string, bool)

GetBindAddressOk returns a tuple with the BindAddress 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 (*HostConfigResource) GetBranch

func (o *HostConfigResource) GetBranch() string

GetBranch returns the Branch field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetBranchOk

func (o *HostConfigResource) GetBranchOk() (*string, bool)

GetBranchOk returns a tuple with the Branch 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 (*HostConfigResource) GetCertificateValidation

func (o *HostConfigResource) GetCertificateValidation() CertificateValidationType

GetCertificateValidation returns the CertificateValidation field value if set, zero value otherwise.

func (*HostConfigResource) GetCertificateValidationOk

func (o *HostConfigResource) GetCertificateValidationOk() (*CertificateValidationType, bool)

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

func (*HostConfigResource) GetConsoleLogLevel

func (o *HostConfigResource) GetConsoleLogLevel() string

GetConsoleLogLevel returns the ConsoleLogLevel field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetConsoleLogLevelOk

func (o *HostConfigResource) GetConsoleLogLevelOk() (*string, bool)

GetConsoleLogLevelOk returns a tuple with the ConsoleLogLevel 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 (*HostConfigResource) GetEnableSsl

func (o *HostConfigResource) GetEnableSsl() bool

GetEnableSsl returns the EnableSsl field value if set, zero value otherwise.

func (*HostConfigResource) GetEnableSslOk

func (o *HostConfigResource) GetEnableSslOk() (*bool, bool)

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

func (*HostConfigResource) GetHistoryCleanupDays

func (o *HostConfigResource) GetHistoryCleanupDays() int32

GetHistoryCleanupDays returns the HistoryCleanupDays field value if set, zero value otherwise.

func (*HostConfigResource) GetHistoryCleanupDaysOk

func (o *HostConfigResource) GetHistoryCleanupDaysOk() (*int32, bool)

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

func (*HostConfigResource) GetId

func (o *HostConfigResource) GetId() int32

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

func (*HostConfigResource) GetIdOk

func (o *HostConfigResource) 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 (*HostConfigResource) GetInstanceName

func (o *HostConfigResource) GetInstanceName() string

GetInstanceName returns the InstanceName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetInstanceNameOk

func (o *HostConfigResource) GetInstanceNameOk() (*string, bool)

GetInstanceNameOk returns a tuple with the InstanceName 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 (*HostConfigResource) GetLaunchBrowser

func (o *HostConfigResource) GetLaunchBrowser() bool

GetLaunchBrowser returns the LaunchBrowser field value if set, zero value otherwise.

func (*HostConfigResource) GetLaunchBrowserOk

func (o *HostConfigResource) GetLaunchBrowserOk() (*bool, bool)

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

func (*HostConfigResource) GetLogLevel

func (o *HostConfigResource) GetLogLevel() string

GetLogLevel returns the LogLevel field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetLogLevelOk

func (o *HostConfigResource) GetLogLevelOk() (*string, bool)

GetLogLevelOk returns a tuple with the LogLevel 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 (*HostConfigResource) GetPassword

func (o *HostConfigResource) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetPasswordOk

func (o *HostConfigResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HostConfigResource) GetPort

func (o *HostConfigResource) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*HostConfigResource) GetPortOk

func (o *HostConfigResource) 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 (*HostConfigResource) GetProxyBypassFilter

func (o *HostConfigResource) GetProxyBypassFilter() string

GetProxyBypassFilter returns the ProxyBypassFilter field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetProxyBypassFilterOk

func (o *HostConfigResource) GetProxyBypassFilterOk() (*string, bool)

GetProxyBypassFilterOk returns a tuple with the ProxyBypassFilter 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 (*HostConfigResource) GetProxyBypassLocalAddresses

func (o *HostConfigResource) GetProxyBypassLocalAddresses() bool

GetProxyBypassLocalAddresses returns the ProxyBypassLocalAddresses field value if set, zero value otherwise.

func (*HostConfigResource) GetProxyBypassLocalAddressesOk

func (o *HostConfigResource) GetProxyBypassLocalAddressesOk() (*bool, bool)

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

func (*HostConfigResource) GetProxyEnabled

func (o *HostConfigResource) GetProxyEnabled() bool

GetProxyEnabled returns the ProxyEnabled field value if set, zero value otherwise.

func (*HostConfigResource) GetProxyEnabledOk

func (o *HostConfigResource) GetProxyEnabledOk() (*bool, bool)

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

func (*HostConfigResource) GetProxyHostname

func (o *HostConfigResource) GetProxyHostname() string

GetProxyHostname returns the ProxyHostname field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetProxyHostnameOk

func (o *HostConfigResource) GetProxyHostnameOk() (*string, bool)

GetProxyHostnameOk returns a tuple with the ProxyHostname 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 (*HostConfigResource) GetProxyPassword

func (o *HostConfigResource) GetProxyPassword() string

GetProxyPassword returns the ProxyPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetProxyPasswordOk

func (o *HostConfigResource) GetProxyPasswordOk() (*string, bool)

GetProxyPasswordOk returns a tuple with the ProxyPassword 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 (*HostConfigResource) GetProxyPort

func (o *HostConfigResource) GetProxyPort() int32

GetProxyPort returns the ProxyPort field value if set, zero value otherwise.

func (*HostConfigResource) GetProxyPortOk

func (o *HostConfigResource) GetProxyPortOk() (*int32, bool)

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

func (*HostConfigResource) GetProxyType

func (o *HostConfigResource) GetProxyType() ProxyType

GetProxyType returns the ProxyType field value if set, zero value otherwise.

func (*HostConfigResource) GetProxyTypeOk

func (o *HostConfigResource) GetProxyTypeOk() (*ProxyType, bool)

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

func (*HostConfigResource) GetProxyUsername

func (o *HostConfigResource) GetProxyUsername() string

GetProxyUsername returns the ProxyUsername field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetProxyUsernameOk

func (o *HostConfigResource) GetProxyUsernameOk() (*string, bool)

GetProxyUsernameOk returns a tuple with the ProxyUsername 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 (*HostConfigResource) GetSslCertPassword

func (o *HostConfigResource) GetSslCertPassword() string

GetSslCertPassword returns the SslCertPassword field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetSslCertPasswordOk

func (o *HostConfigResource) GetSslCertPasswordOk() (*string, bool)

GetSslCertPasswordOk returns a tuple with the SslCertPassword 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 (*HostConfigResource) GetSslCertPath

func (o *HostConfigResource) GetSslCertPath() string

GetSslCertPath returns the SslCertPath field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetSslCertPathOk

func (o *HostConfigResource) GetSslCertPathOk() (*string, bool)

GetSslCertPathOk returns a tuple with the SslCertPath 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 (*HostConfigResource) GetSslPort

func (o *HostConfigResource) GetSslPort() int32

GetSslPort returns the SslPort field value if set, zero value otherwise.

func (*HostConfigResource) GetSslPortOk

func (o *HostConfigResource) GetSslPortOk() (*int32, bool)

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

func (*HostConfigResource) GetUpdateAutomatically

func (o *HostConfigResource) GetUpdateAutomatically() bool

GetUpdateAutomatically returns the UpdateAutomatically field value if set, zero value otherwise.

func (*HostConfigResource) GetUpdateAutomaticallyOk

func (o *HostConfigResource) GetUpdateAutomaticallyOk() (*bool, bool)

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

func (*HostConfigResource) GetUpdateMechanism

func (o *HostConfigResource) GetUpdateMechanism() UpdateMechanism

GetUpdateMechanism returns the UpdateMechanism field value if set, zero value otherwise.

func (*HostConfigResource) GetUpdateMechanismOk

func (o *HostConfigResource) GetUpdateMechanismOk() (*UpdateMechanism, bool)

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

func (*HostConfigResource) GetUpdateScriptPath

func (o *HostConfigResource) GetUpdateScriptPath() string

GetUpdateScriptPath returns the UpdateScriptPath field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetUpdateScriptPathOk

func (o *HostConfigResource) GetUpdateScriptPathOk() (*string, bool)

GetUpdateScriptPathOk returns a tuple with the UpdateScriptPath 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 (*HostConfigResource) GetUrlBase

func (o *HostConfigResource) GetUrlBase() string

GetUrlBase returns the UrlBase field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetUrlBaseOk

func (o *HostConfigResource) GetUrlBaseOk() (*string, bool)

GetUrlBaseOk returns a tuple with the UrlBase 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 (*HostConfigResource) GetUsername

func (o *HostConfigResource) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostConfigResource) GetUsernameOk

func (o *HostConfigResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HostConfigResource) HasAnalyticsEnabled

func (o *HostConfigResource) HasAnalyticsEnabled() bool

HasAnalyticsEnabled returns a boolean if a field has been set.

func (*HostConfigResource) HasApiKey

func (o *HostConfigResource) HasApiKey() bool

HasApiKey returns a boolean if a field has been set.

func (*HostConfigResource) HasAuthenticationMethod

func (o *HostConfigResource) HasAuthenticationMethod() bool

HasAuthenticationMethod returns a boolean if a field has been set.

func (*HostConfigResource) HasAuthenticationRequired

func (o *HostConfigResource) HasAuthenticationRequired() bool

HasAuthenticationRequired returns a boolean if a field has been set.

func (*HostConfigResource) HasBackupFolder

func (o *HostConfigResource) HasBackupFolder() bool

HasBackupFolder returns a boolean if a field has been set.

func (*HostConfigResource) HasBackupInterval

func (o *HostConfigResource) HasBackupInterval() bool

HasBackupInterval returns a boolean if a field has been set.

func (*HostConfigResource) HasBackupRetention

func (o *HostConfigResource) HasBackupRetention() bool

HasBackupRetention returns a boolean if a field has been set.

func (*HostConfigResource) HasBindAddress

func (o *HostConfigResource) HasBindAddress() bool

HasBindAddress returns a boolean if a field has been set.

func (*HostConfigResource) HasBranch

func (o *HostConfigResource) HasBranch() bool

HasBranch returns a boolean if a field has been set.

func (*HostConfigResource) HasCertificateValidation

func (o *HostConfigResource) HasCertificateValidation() bool

HasCertificateValidation returns a boolean if a field has been set.

func (*HostConfigResource) HasConsoleLogLevel

func (o *HostConfigResource) HasConsoleLogLevel() bool

HasConsoleLogLevel returns a boolean if a field has been set.

func (*HostConfigResource) HasEnableSsl

func (o *HostConfigResource) HasEnableSsl() bool

HasEnableSsl returns a boolean if a field has been set.

func (*HostConfigResource) HasHistoryCleanupDays

func (o *HostConfigResource) HasHistoryCleanupDays() bool

HasHistoryCleanupDays returns a boolean if a field has been set.

func (*HostConfigResource) HasId

func (o *HostConfigResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*HostConfigResource) HasInstanceName

func (o *HostConfigResource) HasInstanceName() bool

HasInstanceName returns a boolean if a field has been set.

func (*HostConfigResource) HasLaunchBrowser

func (o *HostConfigResource) HasLaunchBrowser() bool

HasLaunchBrowser returns a boolean if a field has been set.

func (*HostConfigResource) HasLogLevel

func (o *HostConfigResource) HasLogLevel() bool

HasLogLevel returns a boolean if a field has been set.

func (*HostConfigResource) HasPassword

func (o *HostConfigResource) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*HostConfigResource) HasPort

func (o *HostConfigResource) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*HostConfigResource) HasProxyBypassFilter

func (o *HostConfigResource) HasProxyBypassFilter() bool

HasProxyBypassFilter returns a boolean if a field has been set.

func (*HostConfigResource) HasProxyBypassLocalAddresses

func (o *HostConfigResource) HasProxyBypassLocalAddresses() bool

HasProxyBypassLocalAddresses returns a boolean if a field has been set.

func (*HostConfigResource) HasProxyEnabled

func (o *HostConfigResource) HasProxyEnabled() bool

HasProxyEnabled returns a boolean if a field has been set.

func (*HostConfigResource) HasProxyHostname

func (o *HostConfigResource) HasProxyHostname() bool

HasProxyHostname returns a boolean if a field has been set.

func (*HostConfigResource) HasProxyPassword

func (o *HostConfigResource) HasProxyPassword() bool

HasProxyPassword returns a boolean if a field has been set.

func (*HostConfigResource) HasProxyPort

func (o *HostConfigResource) HasProxyPort() bool

HasProxyPort returns a boolean if a field has been set.

func (*HostConfigResource) HasProxyType

func (o *HostConfigResource) HasProxyType() bool

HasProxyType returns a boolean if a field has been set.

func (*HostConfigResource) HasProxyUsername

func (o *HostConfigResource) HasProxyUsername() bool

HasProxyUsername returns a boolean if a field has been set.

func (*HostConfigResource) HasSslCertPassword

func (o *HostConfigResource) HasSslCertPassword() bool

HasSslCertPassword returns a boolean if a field has been set.

func (*HostConfigResource) HasSslCertPath

func (o *HostConfigResource) HasSslCertPath() bool

HasSslCertPath returns a boolean if a field has been set.

func (*HostConfigResource) HasSslPort

func (o *HostConfigResource) HasSslPort() bool

HasSslPort returns a boolean if a field has been set.

func (*HostConfigResource) HasUpdateAutomatically

func (o *HostConfigResource) HasUpdateAutomatically() bool

HasUpdateAutomatically returns a boolean if a field has been set.

func (*HostConfigResource) HasUpdateMechanism

func (o *HostConfigResource) HasUpdateMechanism() bool

HasUpdateMechanism returns a boolean if a field has been set.

func (*HostConfigResource) HasUpdateScriptPath

func (o *HostConfigResource) HasUpdateScriptPath() bool

HasUpdateScriptPath returns a boolean if a field has been set.

func (*HostConfigResource) HasUrlBase

func (o *HostConfigResource) HasUrlBase() bool

HasUrlBase returns a boolean if a field has been set.

func (*HostConfigResource) HasUsername

func (o *HostConfigResource) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (HostConfigResource) MarshalJSON

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

func (*HostConfigResource) SetAnalyticsEnabled

func (o *HostConfigResource) SetAnalyticsEnabled(v bool)

SetAnalyticsEnabled gets a reference to the given bool and assigns it to the AnalyticsEnabled field.

func (*HostConfigResource) SetApiKey

func (o *HostConfigResource) SetApiKey(v string)

SetApiKey gets a reference to the given NullableString and assigns it to the ApiKey field.

func (*HostConfigResource) SetApiKeyNil

func (o *HostConfigResource) SetApiKeyNil()

SetApiKeyNil sets the value for ApiKey to be an explicit nil

func (*HostConfigResource) SetAuthenticationMethod

func (o *HostConfigResource) SetAuthenticationMethod(v AuthenticationType)

SetAuthenticationMethod gets a reference to the given AuthenticationType and assigns it to the AuthenticationMethod field.

func (*HostConfigResource) SetAuthenticationRequired

func (o *HostConfigResource) SetAuthenticationRequired(v AuthenticationRequiredType)

SetAuthenticationRequired gets a reference to the given AuthenticationRequiredType and assigns it to the AuthenticationRequired field.

func (*HostConfigResource) SetBackupFolder

func (o *HostConfigResource) SetBackupFolder(v string)

SetBackupFolder gets a reference to the given NullableString and assigns it to the BackupFolder field.

func (*HostConfigResource) SetBackupFolderNil

func (o *HostConfigResource) SetBackupFolderNil()

SetBackupFolderNil sets the value for BackupFolder to be an explicit nil

func (*HostConfigResource) SetBackupInterval

func (o *HostConfigResource) SetBackupInterval(v int32)

SetBackupInterval gets a reference to the given int32 and assigns it to the BackupInterval field.

func (*HostConfigResource) SetBackupRetention

func (o *HostConfigResource) SetBackupRetention(v int32)

SetBackupRetention gets a reference to the given int32 and assigns it to the BackupRetention field.

func (*HostConfigResource) SetBindAddress

func (o *HostConfigResource) SetBindAddress(v string)

SetBindAddress gets a reference to the given NullableString and assigns it to the BindAddress field.

func (*HostConfigResource) SetBindAddressNil

func (o *HostConfigResource) SetBindAddressNil()

SetBindAddressNil sets the value for BindAddress to be an explicit nil

func (*HostConfigResource) SetBranch

func (o *HostConfigResource) SetBranch(v string)

SetBranch gets a reference to the given NullableString and assigns it to the Branch field.

func (*HostConfigResource) SetBranchNil

func (o *HostConfigResource) SetBranchNil()

SetBranchNil sets the value for Branch to be an explicit nil

func (*HostConfigResource) SetCertificateValidation

func (o *HostConfigResource) SetCertificateValidation(v CertificateValidationType)

SetCertificateValidation gets a reference to the given CertificateValidationType and assigns it to the CertificateValidation field.

func (*HostConfigResource) SetConsoleLogLevel

func (o *HostConfigResource) SetConsoleLogLevel(v string)

SetConsoleLogLevel gets a reference to the given NullableString and assigns it to the ConsoleLogLevel field.

func (*HostConfigResource) SetConsoleLogLevelNil

func (o *HostConfigResource) SetConsoleLogLevelNil()

SetConsoleLogLevelNil sets the value for ConsoleLogLevel to be an explicit nil

func (*HostConfigResource) SetEnableSsl

func (o *HostConfigResource) SetEnableSsl(v bool)

SetEnableSsl gets a reference to the given bool and assigns it to the EnableSsl field.

func (*HostConfigResource) SetHistoryCleanupDays

func (o *HostConfigResource) SetHistoryCleanupDays(v int32)

SetHistoryCleanupDays gets a reference to the given int32 and assigns it to the HistoryCleanupDays field.

func (*HostConfigResource) SetId

func (o *HostConfigResource) SetId(v int32)

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

func (*HostConfigResource) SetInstanceName

func (o *HostConfigResource) SetInstanceName(v string)

SetInstanceName gets a reference to the given NullableString and assigns it to the InstanceName field.

func (*HostConfigResource) SetInstanceNameNil

func (o *HostConfigResource) SetInstanceNameNil()

SetInstanceNameNil sets the value for InstanceName to be an explicit nil

func (*HostConfigResource) SetLaunchBrowser

func (o *HostConfigResource) SetLaunchBrowser(v bool)

SetLaunchBrowser gets a reference to the given bool and assigns it to the LaunchBrowser field.

func (*HostConfigResource) SetLogLevel

func (o *HostConfigResource) SetLogLevel(v string)

SetLogLevel gets a reference to the given NullableString and assigns it to the LogLevel field.

func (*HostConfigResource) SetLogLevelNil

func (o *HostConfigResource) SetLogLevelNil()

SetLogLevelNil sets the value for LogLevel to be an explicit nil

func (*HostConfigResource) SetPassword

func (o *HostConfigResource) SetPassword(v string)

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

func (*HostConfigResource) SetPasswordNil

func (o *HostConfigResource) SetPasswordNil()

SetPasswordNil sets the value for Password to be an explicit nil

func (*HostConfigResource) SetPort

func (o *HostConfigResource) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*HostConfigResource) SetProxyBypassFilter

func (o *HostConfigResource) SetProxyBypassFilter(v string)

SetProxyBypassFilter gets a reference to the given NullableString and assigns it to the ProxyBypassFilter field.

func (*HostConfigResource) SetProxyBypassFilterNil

func (o *HostConfigResource) SetProxyBypassFilterNil()

SetProxyBypassFilterNil sets the value for ProxyBypassFilter to be an explicit nil

func (*HostConfigResource) SetProxyBypassLocalAddresses

func (o *HostConfigResource) SetProxyBypassLocalAddresses(v bool)

SetProxyBypassLocalAddresses gets a reference to the given bool and assigns it to the ProxyBypassLocalAddresses field.

func (*HostConfigResource) SetProxyEnabled

func (o *HostConfigResource) SetProxyEnabled(v bool)

SetProxyEnabled gets a reference to the given bool and assigns it to the ProxyEnabled field.

func (*HostConfigResource) SetProxyHostname

func (o *HostConfigResource) SetProxyHostname(v string)

SetProxyHostname gets a reference to the given NullableString and assigns it to the ProxyHostname field.

func (*HostConfigResource) SetProxyHostnameNil

func (o *HostConfigResource) SetProxyHostnameNil()

SetProxyHostnameNil sets the value for ProxyHostname to be an explicit nil

func (*HostConfigResource) SetProxyPassword

func (o *HostConfigResource) SetProxyPassword(v string)

SetProxyPassword gets a reference to the given NullableString and assigns it to the ProxyPassword field.

func (*HostConfigResource) SetProxyPasswordNil

func (o *HostConfigResource) SetProxyPasswordNil()

SetProxyPasswordNil sets the value for ProxyPassword to be an explicit nil

func (*HostConfigResource) SetProxyPort

func (o *HostConfigResource) SetProxyPort(v int32)

SetProxyPort gets a reference to the given int32 and assigns it to the ProxyPort field.

func (*HostConfigResource) SetProxyType

func (o *HostConfigResource) SetProxyType(v ProxyType)

SetProxyType gets a reference to the given ProxyType and assigns it to the ProxyType field.

func (*HostConfigResource) SetProxyUsername

func (o *HostConfigResource) SetProxyUsername(v string)

SetProxyUsername gets a reference to the given NullableString and assigns it to the ProxyUsername field.

func (*HostConfigResource) SetProxyUsernameNil

func (o *HostConfigResource) SetProxyUsernameNil()

SetProxyUsernameNil sets the value for ProxyUsername to be an explicit nil

func (*HostConfigResource) SetSslCertPassword

func (o *HostConfigResource) SetSslCertPassword(v string)

SetSslCertPassword gets a reference to the given NullableString and assigns it to the SslCertPassword field.

func (*HostConfigResource) SetSslCertPasswordNil

func (o *HostConfigResource) SetSslCertPasswordNil()

SetSslCertPasswordNil sets the value for SslCertPassword to be an explicit nil

func (*HostConfigResource) SetSslCertPath

func (o *HostConfigResource) SetSslCertPath(v string)

SetSslCertPath gets a reference to the given NullableString and assigns it to the SslCertPath field.

func (*HostConfigResource) SetSslCertPathNil

func (o *HostConfigResource) SetSslCertPathNil()

SetSslCertPathNil sets the value for SslCertPath to be an explicit nil

func (*HostConfigResource) SetSslPort

func (o *HostConfigResource) SetSslPort(v int32)

SetSslPort gets a reference to the given int32 and assigns it to the SslPort field.

func (*HostConfigResource) SetUpdateAutomatically

func (o *HostConfigResource) SetUpdateAutomatically(v bool)

SetUpdateAutomatically gets a reference to the given bool and assigns it to the UpdateAutomatically field.

func (*HostConfigResource) SetUpdateMechanism

func (o *HostConfigResource) SetUpdateMechanism(v UpdateMechanism)

SetUpdateMechanism gets a reference to the given UpdateMechanism and assigns it to the UpdateMechanism field.

func (*HostConfigResource) SetUpdateScriptPath

func (o *HostConfigResource) SetUpdateScriptPath(v string)

SetUpdateScriptPath gets a reference to the given NullableString and assigns it to the UpdateScriptPath field.

func (*HostConfigResource) SetUpdateScriptPathNil

func (o *HostConfigResource) SetUpdateScriptPathNil()

SetUpdateScriptPathNil sets the value for UpdateScriptPath to be an explicit nil

func (*HostConfigResource) SetUrlBase

func (o *HostConfigResource) SetUrlBase(v string)

SetUrlBase gets a reference to the given NullableString and assigns it to the UrlBase field.

func (*HostConfigResource) SetUrlBaseNil

func (o *HostConfigResource) SetUrlBaseNil()

SetUrlBaseNil sets the value for UrlBase to be an explicit nil

func (*HostConfigResource) SetUsername

func (o *HostConfigResource) SetUsername(v string)

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

func (*HostConfigResource) SetUsernameNil

func (o *HostConfigResource) SetUsernameNil()

SetUsernameNil sets the value for Username to be an explicit nil

func (*HostConfigResource) UnsetApiKey

func (o *HostConfigResource) UnsetApiKey()

UnsetApiKey ensures that no value is present for ApiKey, not even an explicit nil

func (*HostConfigResource) UnsetBackupFolder

func (o *HostConfigResource) UnsetBackupFolder()

UnsetBackupFolder ensures that no value is present for BackupFolder, not even an explicit nil

func (*HostConfigResource) UnsetBindAddress

func (o *HostConfigResource) UnsetBindAddress()

UnsetBindAddress ensures that no value is present for BindAddress, not even an explicit nil

func (*HostConfigResource) UnsetBranch

func (o *HostConfigResource) UnsetBranch()

UnsetBranch ensures that no value is present for Branch, not even an explicit nil

func (*HostConfigResource) UnsetConsoleLogLevel

func (o *HostConfigResource) UnsetConsoleLogLevel()

UnsetConsoleLogLevel ensures that no value is present for ConsoleLogLevel, not even an explicit nil

func (*HostConfigResource) UnsetInstanceName

func (o *HostConfigResource) UnsetInstanceName()

UnsetInstanceName ensures that no value is present for InstanceName, not even an explicit nil

func (*HostConfigResource) UnsetLogLevel

func (o *HostConfigResource) UnsetLogLevel()

UnsetLogLevel ensures that no value is present for LogLevel, not even an explicit nil

func (*HostConfigResource) UnsetPassword

func (o *HostConfigResource) UnsetPassword()

UnsetPassword ensures that no value is present for Password, not even an explicit nil

func (*HostConfigResource) UnsetProxyBypassFilter

func (o *HostConfigResource) UnsetProxyBypassFilter()

UnsetProxyBypassFilter ensures that no value is present for ProxyBypassFilter, not even an explicit nil

func (*HostConfigResource) UnsetProxyHostname

func (o *HostConfigResource) UnsetProxyHostname()

UnsetProxyHostname ensures that no value is present for ProxyHostname, not even an explicit nil

func (*HostConfigResource) UnsetProxyPassword

func (o *HostConfigResource) UnsetProxyPassword()

UnsetProxyPassword ensures that no value is present for ProxyPassword, not even an explicit nil

func (*HostConfigResource) UnsetProxyUsername

func (o *HostConfigResource) UnsetProxyUsername()

UnsetProxyUsername ensures that no value is present for ProxyUsername, not even an explicit nil

func (*HostConfigResource) UnsetSslCertPassword

func (o *HostConfigResource) UnsetSslCertPassword()

UnsetSslCertPassword ensures that no value is present for SslCertPassword, not even an explicit nil

func (*HostConfigResource) UnsetSslCertPath

func (o *HostConfigResource) UnsetSslCertPath()

UnsetSslCertPath ensures that no value is present for SslCertPath, not even an explicit nil

func (*HostConfigResource) UnsetUpdateScriptPath

func (o *HostConfigResource) UnsetUpdateScriptPath()

UnsetUpdateScriptPath ensures that no value is present for UpdateScriptPath, not even an explicit nil

func (*HostConfigResource) UnsetUrlBase

func (o *HostConfigResource) UnsetUrlBase()

UnsetUrlBase ensures that no value is present for UrlBase, not even an explicit nil

func (*HostConfigResource) UnsetUsername

func (o *HostConfigResource) UnsetUsername()

UnsetUsername ensures that no value is present for Username, not even an explicit nil

type HostStatistics

type HostStatistics struct {
	Host            NullableString `json:"host,omitempty"`
	NumberOfQueries *int32         `json:"numberOfQueries,omitempty"`
	NumberOfGrabs   *int32         `json:"numberOfGrabs,omitempty"`
}

HostStatistics struct for HostStatistics

func NewHostStatistics

func NewHostStatistics() *HostStatistics

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

func NewHostStatisticsWithDefaults

func NewHostStatisticsWithDefaults() *HostStatistics

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

func (*HostStatistics) GetHost

func (o *HostStatistics) GetHost() string

GetHost returns the Host field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HostStatistics) GetHostOk

func (o *HostStatistics) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HostStatistics) GetNumberOfGrabs

func (o *HostStatistics) GetNumberOfGrabs() int32

GetNumberOfGrabs returns the NumberOfGrabs field value if set, zero value otherwise.

func (*HostStatistics) GetNumberOfGrabsOk

func (o *HostStatistics) GetNumberOfGrabsOk() (*int32, bool)

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

func (*HostStatistics) GetNumberOfQueries

func (o *HostStatistics) GetNumberOfQueries() int32

GetNumberOfQueries returns the NumberOfQueries field value if set, zero value otherwise.

func (*HostStatistics) GetNumberOfQueriesOk

func (o *HostStatistics) GetNumberOfQueriesOk() (*int32, bool)

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

func (*HostStatistics) HasHost

func (o *HostStatistics) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*HostStatistics) HasNumberOfGrabs

func (o *HostStatistics) HasNumberOfGrabs() bool

HasNumberOfGrabs returns a boolean if a field has been set.

func (*HostStatistics) HasNumberOfQueries

func (o *HostStatistics) HasNumberOfQueries() bool

HasNumberOfQueries returns a boolean if a field has been set.

func (HostStatistics) MarshalJSON

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

func (*HostStatistics) SetHost

func (o *HostStatistics) SetHost(v string)

SetHost gets a reference to the given NullableString and assigns it to the Host field.

func (*HostStatistics) SetHostNil

func (o *HostStatistics) SetHostNil()

SetHostNil sets the value for Host to be an explicit nil

func (*HostStatistics) SetNumberOfGrabs

func (o *HostStatistics) SetNumberOfGrabs(v int32)

SetNumberOfGrabs gets a reference to the given int32 and assigns it to the NumberOfGrabs field.

func (*HostStatistics) SetNumberOfQueries

func (o *HostStatistics) SetNumberOfQueries(v int32)

SetNumberOfQueries gets a reference to the given int32 and assigns it to the NumberOfQueries field.

func (*HostStatistics) UnsetHost

func (o *HostStatistics) UnsetHost()

UnsetHost ensures that no value is present for Host, not even an explicit nil

type HttpUri

type HttpUri struct {
	FullUri  NullableString `json:"fullUri,omitempty"`
	Scheme   NullableString `json:"scheme,omitempty"`
	Host     NullableString `json:"host,omitempty"`
	Port     NullableInt32  `json:"port,omitempty"`
	Path     NullableString `json:"path,omitempty"`
	Query    NullableString `json:"query,omitempty"`
	Fragment NullableString `json:"fragment,omitempty"`
}

HttpUri struct for HttpUri

func NewHttpUri

func NewHttpUri() *HttpUri

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

func NewHttpUriWithDefaults

func NewHttpUriWithDefaults() *HttpUri

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

func (*HttpUri) GetFragment

func (o *HttpUri) GetFragment() string

GetFragment returns the Fragment field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpUri) GetFragmentOk

func (o *HttpUri) GetFragmentOk() (*string, bool)

GetFragmentOk returns a tuple with the Fragment 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 (*HttpUri) GetFullUri

func (o *HttpUri) GetFullUri() string

GetFullUri returns the FullUri field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpUri) GetFullUriOk

func (o *HttpUri) GetFullUriOk() (*string, bool)

GetFullUriOk returns a tuple with the FullUri 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 (*HttpUri) GetHost

func (o *HttpUri) GetHost() string

GetHost returns the Host field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpUri) GetHostOk

func (o *HttpUri) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HttpUri) GetPath

func (o *HttpUri) GetPath() string

GetPath returns the Path field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpUri) GetPathOk

func (o *HttpUri) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path 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 (*HttpUri) GetPort

func (o *HttpUri) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpUri) GetPortOk

func (o *HttpUri) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HttpUri) GetQuery

func (o *HttpUri) GetQuery() string

GetQuery returns the Query field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpUri) GetQueryOk

func (o *HttpUri) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*HttpUri) GetScheme

func (o *HttpUri) GetScheme() string

GetScheme returns the Scheme field value if set, zero value otherwise (both if not set or set to explicit null).

func (*HttpUri) GetSchemeOk

func (o *HttpUri) GetSchemeOk() (*string, bool)

GetSchemeOk returns a tuple with the Scheme 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 (*HttpUri) HasFragment

func (o *HttpUri) HasFragment() bool

HasFragment returns a boolean if a field has been set.

func (*HttpUri) HasFullUri

func (o *HttpUri) HasFullUri() bool

HasFullUri returns a boolean if a field has been set.

func (*HttpUri) HasHost

func (o *HttpUri) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*HttpUri) HasPath

func (o *HttpUri) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*HttpUri) HasPort

func (o *HttpUri) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*HttpUri) HasQuery

func (o *HttpUri) HasQuery() bool

HasQuery returns a boolean if a field has been set.

func (*HttpUri) HasScheme

func (o *HttpUri) HasScheme() bool

HasScheme returns a boolean if a field has been set.

func (HttpUri) MarshalJSON

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

func (*HttpUri) SetFragment

func (o *HttpUri) SetFragment(v string)

SetFragment gets a reference to the given NullableString and assigns it to the Fragment field.

func (*HttpUri) SetFragmentNil

func (o *HttpUri) SetFragmentNil()

SetFragmentNil sets the value for Fragment to be an explicit nil

func (*HttpUri) SetFullUri

func (o *HttpUri) SetFullUri(v string)

SetFullUri gets a reference to the given NullableString and assigns it to the FullUri field.

func (*HttpUri) SetFullUriNil

func (o *HttpUri) SetFullUriNil()

SetFullUriNil sets the value for FullUri to be an explicit nil

func (*HttpUri) SetHost

func (o *HttpUri) SetHost(v string)

SetHost gets a reference to the given NullableString and assigns it to the Host field.

func (*HttpUri) SetHostNil

func (o *HttpUri) SetHostNil()

SetHostNil sets the value for Host to be an explicit nil

func (*HttpUri) SetPath

func (o *HttpUri) SetPath(v string)

SetPath gets a reference to the given NullableString and assigns it to the Path field.

func (*HttpUri) SetPathNil

func (o *HttpUri) SetPathNil()

SetPathNil sets the value for Path to be an explicit nil

func (*HttpUri) SetPort

func (o *HttpUri) SetPort(v int32)

SetPort gets a reference to the given NullableInt32 and assigns it to the Port field.

func (*HttpUri) SetPortNil

func (o *HttpUri) SetPortNil()

SetPortNil sets the value for Port to be an explicit nil

func (*HttpUri) SetQuery

func (o *HttpUri) SetQuery(v string)

SetQuery gets a reference to the given NullableString and assigns it to the Query field.

func (*HttpUri) SetQueryNil

func (o *HttpUri) SetQueryNil()

SetQueryNil sets the value for Query to be an explicit nil

func (*HttpUri) SetScheme

func (o *HttpUri) SetScheme(v string)

SetScheme gets a reference to the given NullableString and assigns it to the Scheme field.

func (*HttpUri) SetSchemeNil

func (o *HttpUri) SetSchemeNil()

SetSchemeNil sets the value for Scheme to be an explicit nil

func (*HttpUri) UnsetFragment

func (o *HttpUri) UnsetFragment()

UnsetFragment ensures that no value is present for Fragment, not even an explicit nil

func (*HttpUri) UnsetFullUri

func (o *HttpUri) UnsetFullUri()

UnsetFullUri ensures that no value is present for FullUri, not even an explicit nil

func (*HttpUri) UnsetHost

func (o *HttpUri) UnsetHost()

UnsetHost ensures that no value is present for Host, not even an explicit nil

func (*HttpUri) UnsetPath

func (o *HttpUri) UnsetPath()

UnsetPath ensures that no value is present for Path, not even an explicit nil

func (*HttpUri) UnsetPort

func (o *HttpUri) UnsetPort()

UnsetPort ensures that no value is present for Port, not even an explicit nil

func (*HttpUri) UnsetQuery

func (o *HttpUri) UnsetQuery()

UnsetQuery ensures that no value is present for Query, not even an explicit nil

func (*HttpUri) UnsetScheme

func (o *HttpUri) UnsetScheme()

UnsetScheme ensures that no value is present for Scheme, not even an explicit nil

type IndexerApiService

type IndexerApiService service

IndexerApiService IndexerApi service

func (*IndexerApiService) CreateIndexer

CreateIndexer Method for CreateIndexer

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

func (*IndexerApiService) CreateIndexerActionByName

func (a *IndexerApiService) CreateIndexerActionByName(ctx context.Context, name string) ApiCreateIndexerActionByNameRequest

CreateIndexerActionByName Method for CreateIndexerActionByName

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

func (*IndexerApiService) CreateIndexerActionByNameExecute

func (a *IndexerApiService) CreateIndexerActionByNameExecute(r ApiCreateIndexerActionByNameRequest) (*http.Response, error)

Execute executes the request

func (*IndexerApiService) CreateIndexerExecute

Execute executes the request

@return IndexerResource

func (*IndexerApiService) DeleteIndexer

DeleteIndexer Method for DeleteIndexer

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

func (*IndexerApiService) DeleteIndexerExecute

func (a *IndexerApiService) DeleteIndexerExecute(r ApiDeleteIndexerRequest) (*http.Response, error)

Execute executes the request

func (*IndexerApiService) GetIndexerById

func (a *IndexerApiService) GetIndexerById(ctx context.Context, id int32) ApiGetIndexerByIdRequest

GetIndexerById Method for GetIndexerById

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

func (*IndexerApiService) GetIndexerByIdExecute

Execute executes the request

@return IndexerResource

func (*IndexerApiService) ListIndexer

ListIndexer Method for ListIndexer

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

func (*IndexerApiService) ListIndexerExecute

func (a *IndexerApiService) ListIndexerExecute(r ApiListIndexerRequest) ([]*IndexerResource, *http.Response, error)

Execute executes the request

@return []IndexerResource

func (*IndexerApiService) ListIndexerSchema

ListIndexerSchema Method for ListIndexerSchema

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

func (*IndexerApiService) ListIndexerSchemaExecute

func (a *IndexerApiService) ListIndexerSchemaExecute(r ApiListIndexerSchemaRequest) ([]*IndexerResource, *http.Response, error)

Execute executes the request

@return []IndexerResource

func (*IndexerApiService) TestIndexer

TestIndexer Method for TestIndexer

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

func (*IndexerApiService) TestIndexerExecute

func (a *IndexerApiService) TestIndexerExecute(r ApiTestIndexerRequest) (*http.Response, error)

Execute executes the request

func (*IndexerApiService) TestallIndexer

TestallIndexer Method for TestallIndexer

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

func (*IndexerApiService) TestallIndexerExecute

func (a *IndexerApiService) TestallIndexerExecute(r ApiTestallIndexerRequest) (*http.Response, error)

Execute executes the request

func (*IndexerApiService) UpdateIndexer

UpdateIndexer Method for UpdateIndexer

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

func (*IndexerApiService) UpdateIndexerExecute

Execute executes the request

@return IndexerResource

type IndexerCapabilityResource

type IndexerCapabilityResource struct {
	Id                *int32              `json:"id,omitempty"`
	LimitsMax         NullableInt32       `json:"limitsMax,omitempty"`
	LimitsDefault     NullableInt32       `json:"limitsDefault,omitempty"`
	Categories        []*IndexerCategory  `json:"categories,omitempty"`
	SupportsRawSearch *bool               `json:"supportsRawSearch,omitempty"`
	SearchParams      []*SearchParam      `json:"searchParams,omitempty"`
	TvSearchParams    []*TvSearchParam    `json:"tvSearchParams,omitempty"`
	MovieSearchParams []*MovieSearchParam `json:"movieSearchParams,omitempty"`
	MusicSearchParams []*MusicSearchParam `json:"musicSearchParams,omitempty"`
	BookSearchParams  []*BookSearchParam  `json:"bookSearchParams,omitempty"`
}

IndexerCapabilityResource struct for IndexerCapabilityResource

func NewIndexerCapabilityResource

func NewIndexerCapabilityResource() *IndexerCapabilityResource

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

func NewIndexerCapabilityResourceWithDefaults

func NewIndexerCapabilityResourceWithDefaults() *IndexerCapabilityResource

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

func (*IndexerCapabilityResource) GetBookSearchParams

func (o *IndexerCapabilityResource) GetBookSearchParams() []*BookSearchParam

GetBookSearchParams returns the BookSearchParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerCapabilityResource) GetBookSearchParamsOk

func (o *IndexerCapabilityResource) GetBookSearchParamsOk() ([]*BookSearchParam, bool)

GetBookSearchParamsOk returns a tuple with the BookSearchParams 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 (*IndexerCapabilityResource) GetCategories

func (o *IndexerCapabilityResource) GetCategories() []*IndexerCategory

GetCategories returns the Categories field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerCapabilityResource) GetCategoriesOk

func (o *IndexerCapabilityResource) GetCategoriesOk() ([]*IndexerCategory, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IndexerCapabilityResource) GetId

func (o *IndexerCapabilityResource) GetId() int32

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

func (*IndexerCapabilityResource) GetIdOk

func (o *IndexerCapabilityResource) 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 (*IndexerCapabilityResource) GetLimitsDefault

func (o *IndexerCapabilityResource) GetLimitsDefault() int32

GetLimitsDefault returns the LimitsDefault field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerCapabilityResource) GetLimitsDefaultOk

func (o *IndexerCapabilityResource) GetLimitsDefaultOk() (*int32, bool)

GetLimitsDefaultOk returns a tuple with the LimitsDefault 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 (*IndexerCapabilityResource) GetLimitsMax

func (o *IndexerCapabilityResource) GetLimitsMax() int32

GetLimitsMax returns the LimitsMax field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerCapabilityResource) GetLimitsMaxOk

func (o *IndexerCapabilityResource) GetLimitsMaxOk() (*int32, bool)

GetLimitsMaxOk returns a tuple with the LimitsMax 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 (*IndexerCapabilityResource) GetMovieSearchParams

func (o *IndexerCapabilityResource) GetMovieSearchParams() []*MovieSearchParam

GetMovieSearchParams returns the MovieSearchParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerCapabilityResource) GetMovieSearchParamsOk

func (o *IndexerCapabilityResource) GetMovieSearchParamsOk() ([]*MovieSearchParam, bool)

GetMovieSearchParamsOk returns a tuple with the MovieSearchParams 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 (*IndexerCapabilityResource) GetMusicSearchParams

func (o *IndexerCapabilityResource) GetMusicSearchParams() []*MusicSearchParam

GetMusicSearchParams returns the MusicSearchParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerCapabilityResource) GetMusicSearchParamsOk

func (o *IndexerCapabilityResource) GetMusicSearchParamsOk() ([]*MusicSearchParam, bool)

GetMusicSearchParamsOk returns a tuple with the MusicSearchParams 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 (*IndexerCapabilityResource) GetSearchParams

func (o *IndexerCapabilityResource) GetSearchParams() []*SearchParam

GetSearchParams returns the SearchParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerCapabilityResource) GetSearchParamsOk

func (o *IndexerCapabilityResource) GetSearchParamsOk() ([]*SearchParam, bool)

GetSearchParamsOk returns a tuple with the SearchParams 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 (*IndexerCapabilityResource) GetSupportsRawSearch

func (o *IndexerCapabilityResource) GetSupportsRawSearch() bool

GetSupportsRawSearch returns the SupportsRawSearch field value if set, zero value otherwise.

func (*IndexerCapabilityResource) GetSupportsRawSearchOk

func (o *IndexerCapabilityResource) GetSupportsRawSearchOk() (*bool, bool)

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

func (*IndexerCapabilityResource) GetTvSearchParams

func (o *IndexerCapabilityResource) GetTvSearchParams() []*TvSearchParam

GetTvSearchParams returns the TvSearchParams field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerCapabilityResource) GetTvSearchParamsOk

func (o *IndexerCapabilityResource) GetTvSearchParamsOk() ([]*TvSearchParam, bool)

GetTvSearchParamsOk returns a tuple with the TvSearchParams 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 (*IndexerCapabilityResource) HasBookSearchParams

func (o *IndexerCapabilityResource) HasBookSearchParams() bool

HasBookSearchParams returns a boolean if a field has been set.

func (*IndexerCapabilityResource) HasCategories

func (o *IndexerCapabilityResource) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*IndexerCapabilityResource) HasId

func (o *IndexerCapabilityResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*IndexerCapabilityResource) HasLimitsDefault

func (o *IndexerCapabilityResource) HasLimitsDefault() bool

HasLimitsDefault returns a boolean if a field has been set.

func (*IndexerCapabilityResource) HasLimitsMax

func (o *IndexerCapabilityResource) HasLimitsMax() bool

HasLimitsMax returns a boolean if a field has been set.

func (*IndexerCapabilityResource) HasMovieSearchParams

func (o *IndexerCapabilityResource) HasMovieSearchParams() bool

HasMovieSearchParams returns a boolean if a field has been set.

func (*IndexerCapabilityResource) HasMusicSearchParams

func (o *IndexerCapabilityResource) HasMusicSearchParams() bool

HasMusicSearchParams returns a boolean if a field has been set.

func (*IndexerCapabilityResource) HasSearchParams

func (o *IndexerCapabilityResource) HasSearchParams() bool

HasSearchParams returns a boolean if a field has been set.

func (*IndexerCapabilityResource) HasSupportsRawSearch

func (o *IndexerCapabilityResource) HasSupportsRawSearch() bool

HasSupportsRawSearch returns a boolean if a field has been set.

func (*IndexerCapabilityResource) HasTvSearchParams

func (o *IndexerCapabilityResource) HasTvSearchParams() bool

HasTvSearchParams returns a boolean if a field has been set.

func (IndexerCapabilityResource) MarshalJSON

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

func (*IndexerCapabilityResource) SetBookSearchParams

func (o *IndexerCapabilityResource) SetBookSearchParams(v []*BookSearchParam)

SetBookSearchParams gets a reference to the given []BookSearchParam and assigns it to the BookSearchParams field.

func (*IndexerCapabilityResource) SetCategories

func (o *IndexerCapabilityResource) SetCategories(v []*IndexerCategory)

SetCategories gets a reference to the given []IndexerCategory and assigns it to the Categories field.

func (*IndexerCapabilityResource) SetId

func (o *IndexerCapabilityResource) SetId(v int32)

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

func (*IndexerCapabilityResource) SetLimitsDefault

func (o *IndexerCapabilityResource) SetLimitsDefault(v int32)

SetLimitsDefault gets a reference to the given NullableInt32 and assigns it to the LimitsDefault field.

func (*IndexerCapabilityResource) SetLimitsDefaultNil

func (o *IndexerCapabilityResource) SetLimitsDefaultNil()

SetLimitsDefaultNil sets the value for LimitsDefault to be an explicit nil

func (*IndexerCapabilityResource) SetLimitsMax

func (o *IndexerCapabilityResource) SetLimitsMax(v int32)

SetLimitsMax gets a reference to the given NullableInt32 and assigns it to the LimitsMax field.

func (*IndexerCapabilityResource) SetLimitsMaxNil

func (o *IndexerCapabilityResource) SetLimitsMaxNil()

SetLimitsMaxNil sets the value for LimitsMax to be an explicit nil

func (*IndexerCapabilityResource) SetMovieSearchParams

func (o *IndexerCapabilityResource) SetMovieSearchParams(v []*MovieSearchParam)

SetMovieSearchParams gets a reference to the given []MovieSearchParam and assigns it to the MovieSearchParams field.

func (*IndexerCapabilityResource) SetMusicSearchParams

func (o *IndexerCapabilityResource) SetMusicSearchParams(v []*MusicSearchParam)

SetMusicSearchParams gets a reference to the given []MusicSearchParam and assigns it to the MusicSearchParams field.

func (*IndexerCapabilityResource) SetSearchParams

func (o *IndexerCapabilityResource) SetSearchParams(v []*SearchParam)

SetSearchParams gets a reference to the given []SearchParam and assigns it to the SearchParams field.

func (*IndexerCapabilityResource) SetSupportsRawSearch

func (o *IndexerCapabilityResource) SetSupportsRawSearch(v bool)

SetSupportsRawSearch gets a reference to the given bool and assigns it to the SupportsRawSearch field.

func (*IndexerCapabilityResource) SetTvSearchParams

func (o *IndexerCapabilityResource) SetTvSearchParams(v []*TvSearchParam)

SetTvSearchParams gets a reference to the given []TvSearchParam and assigns it to the TvSearchParams field.

func (*IndexerCapabilityResource) UnsetLimitsDefault

func (o *IndexerCapabilityResource) UnsetLimitsDefault()

UnsetLimitsDefault ensures that no value is present for LimitsDefault, not even an explicit nil

func (*IndexerCapabilityResource) UnsetLimitsMax

func (o *IndexerCapabilityResource) UnsetLimitsMax()

UnsetLimitsMax ensures that no value is present for LimitsMax, not even an explicit nil

type IndexerCategory

type IndexerCategory struct {
	Id            *int32             `json:"id,omitempty"`
	Name          NullableString     `json:"name,omitempty"`
	Description   NullableString     `json:"description,omitempty"`
	SubCategories []*IndexerCategory `json:"subCategories,omitempty"`
}

IndexerCategory struct for IndexerCategory

func NewIndexerCategory

func NewIndexerCategory() *IndexerCategory

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

func NewIndexerCategoryWithDefaults

func NewIndexerCategoryWithDefaults() *IndexerCategory

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

func (*IndexerCategory) GetDescription

func (o *IndexerCategory) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerCategory) GetDescriptionOk

func (o *IndexerCategory) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IndexerCategory) GetId

func (o *IndexerCategory) GetId() int32

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

func (*IndexerCategory) GetIdOk

func (o *IndexerCategory) 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 (*IndexerCategory) GetName

func (o *IndexerCategory) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerCategory) GetNameOk

func (o *IndexerCategory) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IndexerCategory) GetSubCategories

func (o *IndexerCategory) GetSubCategories() []*IndexerCategory

GetSubCategories returns the SubCategories field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerCategory) GetSubCategoriesOk

func (o *IndexerCategory) GetSubCategoriesOk() ([]*IndexerCategory, bool)

GetSubCategoriesOk returns a tuple with the SubCategories 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 (*IndexerCategory) HasDescription

func (o *IndexerCategory) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*IndexerCategory) HasId

func (o *IndexerCategory) HasId() bool

HasId returns a boolean if a field has been set.

func (*IndexerCategory) HasName

func (o *IndexerCategory) HasName() bool

HasName returns a boolean if a field has been set.

func (*IndexerCategory) HasSubCategories

func (o *IndexerCategory) HasSubCategories() bool

HasSubCategories returns a boolean if a field has been set.

func (IndexerCategory) MarshalJSON

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

func (*IndexerCategory) SetDescription

func (o *IndexerCategory) SetDescription(v string)

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

func (*IndexerCategory) SetDescriptionNil

func (o *IndexerCategory) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*IndexerCategory) SetId

func (o *IndexerCategory) SetId(v int32)

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

func (*IndexerCategory) SetName

func (o *IndexerCategory) SetName(v string)

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

func (*IndexerCategory) SetNameNil

func (o *IndexerCategory) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*IndexerCategory) SetSubCategories

func (o *IndexerCategory) SetSubCategories(v []*IndexerCategory)

SetSubCategories gets a reference to the given []IndexerCategory and assigns it to the SubCategories field.

func (*IndexerCategory) UnsetDescription

func (o *IndexerCategory) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*IndexerCategory) UnsetName

func (o *IndexerCategory) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

type IndexerDefaultCategoriesApiService

type IndexerDefaultCategoriesApiService service

IndexerDefaultCategoriesApiService IndexerDefaultCategoriesApi service

func (*IndexerDefaultCategoriesApiService) ListIndexerCategories

ListIndexerCategories Method for ListIndexerCategories

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

func (*IndexerDefaultCategoriesApiService) ListIndexerCategoriesExecute

Execute executes the request

@return []IndexerCategory

type IndexerEditorApiService

type IndexerEditorApiService service

IndexerEditorApiService IndexerEditorApi service

func (*IndexerEditorApiService) DeleteIndexerEditor

DeleteIndexerEditor Method for DeleteIndexerEditor

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

func (*IndexerEditorApiService) DeleteIndexerEditorExecute

func (a *IndexerEditorApiService) DeleteIndexerEditorExecute(r ApiDeleteIndexerEditorRequest) (*http.Response, error)

Execute executes the request

func (*IndexerEditorApiService) PutIndexerEditor

PutIndexerEditor Method for PutIndexerEditor

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

func (*IndexerEditorApiService) PutIndexerEditorExecute

func (a *IndexerEditorApiService) PutIndexerEditorExecute(r ApiPutIndexerEditorRequest) (*http.Response, error)

Execute executes the request

type IndexerEditorResource

type IndexerEditorResource struct {
	IndexerIds   []*int32       `json:"indexerIds,omitempty"`
	Enable       NullableString `json:"enable,omitempty"`
	AppProfileId NullableInt32  `json:"appProfileId,omitempty"`
	Tags         []*int32       `json:"tags,omitempty"`
	ApplyTags    *ApplyTags     `json:"applyTags,omitempty"`
}

IndexerEditorResource struct for IndexerEditorResource

func NewIndexerEditorResource

func NewIndexerEditorResource() *IndexerEditorResource

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

func NewIndexerEditorResourceWithDefaults

func NewIndexerEditorResourceWithDefaults() *IndexerEditorResource

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

func (*IndexerEditorResource) GetAppProfileId

func (o *IndexerEditorResource) GetAppProfileId() int32

GetAppProfileId returns the AppProfileId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerEditorResource) GetAppProfileIdOk

func (o *IndexerEditorResource) GetAppProfileIdOk() (*int32, bool)

GetAppProfileIdOk returns a tuple with the AppProfileId 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 (*IndexerEditorResource) GetApplyTags

func (o *IndexerEditorResource) GetApplyTags() ApplyTags

GetApplyTags returns the ApplyTags field value if set, zero value otherwise.

func (*IndexerEditorResource) GetApplyTagsOk

func (o *IndexerEditorResource) GetApplyTagsOk() (*ApplyTags, bool)

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

func (*IndexerEditorResource) GetEnable

func (o *IndexerEditorResource) GetEnable() string

GetEnable returns the Enable field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerEditorResource) GetEnableOk

func (o *IndexerEditorResource) GetEnableOk() (*string, bool)

GetEnableOk returns a tuple with the Enable 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 (*IndexerEditorResource) GetIndexerIds

func (o *IndexerEditorResource) GetIndexerIds() []*int32

GetIndexerIds returns the IndexerIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerEditorResource) GetIndexerIdsOk

func (o *IndexerEditorResource) GetIndexerIdsOk() ([]*int32, bool)

GetIndexerIdsOk returns a tuple with the IndexerIds 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 (*IndexerEditorResource) GetTags

func (o *IndexerEditorResource) GetTags() []*int32

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerEditorResource) GetTagsOk

func (o *IndexerEditorResource) GetTagsOk() ([]*int32, bool)

GetTagsOk returns a tuple with the Tags 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 (*IndexerEditorResource) HasAppProfileId

func (o *IndexerEditorResource) HasAppProfileId() bool

HasAppProfileId returns a boolean if a field has been set.

func (*IndexerEditorResource) HasApplyTags

func (o *IndexerEditorResource) HasApplyTags() bool

HasApplyTags returns a boolean if a field has been set.

func (*IndexerEditorResource) HasEnable

func (o *IndexerEditorResource) HasEnable() bool

HasEnable returns a boolean if a field has been set.

func (*IndexerEditorResource) HasIndexerIds

func (o *IndexerEditorResource) HasIndexerIds() bool

HasIndexerIds returns a boolean if a field has been set.

func (*IndexerEditorResource) HasTags

func (o *IndexerEditorResource) HasTags() bool

HasTags returns a boolean if a field has been set.

func (IndexerEditorResource) MarshalJSON

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

func (*IndexerEditorResource) SetAppProfileId

func (o *IndexerEditorResource) SetAppProfileId(v int32)

SetAppProfileId gets a reference to the given NullableInt32 and assigns it to the AppProfileId field.

func (*IndexerEditorResource) SetAppProfileIdNil

func (o *IndexerEditorResource) SetAppProfileIdNil()

SetAppProfileIdNil sets the value for AppProfileId to be an explicit nil

func (*IndexerEditorResource) SetApplyTags

func (o *IndexerEditorResource) SetApplyTags(v ApplyTags)

SetApplyTags gets a reference to the given ApplyTags and assigns it to the ApplyTags field.

func (*IndexerEditorResource) SetEnable

func (o *IndexerEditorResource) SetEnable(v string)

SetEnable gets a reference to the given NullableString and assigns it to the Enable field.

func (*IndexerEditorResource) SetEnableNil

func (o *IndexerEditorResource) SetEnableNil()

SetEnableNil sets the value for Enable to be an explicit nil

func (*IndexerEditorResource) SetIndexerIds

func (o *IndexerEditorResource) SetIndexerIds(v []*int32)

SetIndexerIds gets a reference to the given []int32 and assigns it to the IndexerIds field.

func (*IndexerEditorResource) SetTags

func (o *IndexerEditorResource) SetTags(v []*int32)

SetTags gets a reference to the given []int32 and assigns it to the Tags field.

func (*IndexerEditorResource) UnsetAppProfileId

func (o *IndexerEditorResource) UnsetAppProfileId()

UnsetAppProfileId ensures that no value is present for AppProfileId, not even an explicit nil

func (*IndexerEditorResource) UnsetEnable

func (o *IndexerEditorResource) UnsetEnable()

UnsetEnable ensures that no value is present for Enable, not even an explicit nil

type IndexerPrivacy

type IndexerPrivacy string

IndexerPrivacy the model 'IndexerPrivacy'

const (
	INDEXERPRIVACY_PUBLIC       IndexerPrivacy = "public"
	INDEXERPRIVACY_SEMI_PRIVATE IndexerPrivacy = "semiPrivate"
	INDEXERPRIVACY_PRIVATE      IndexerPrivacy = "private"
)

List of IndexerPrivacy

func NewIndexerPrivacyFromValue

func NewIndexerPrivacyFromValue(v string) (*IndexerPrivacy, error)

NewIndexerPrivacyFromValue returns a pointer to a valid IndexerPrivacy for the value passed as argument, or an error if the value passed is not allowed by the enum

func (IndexerPrivacy) IsValid

func (v IndexerPrivacy) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (IndexerPrivacy) Ptr

func (v IndexerPrivacy) Ptr() *IndexerPrivacy

Ptr returns reference to IndexerPrivacy value

func (*IndexerPrivacy) UnmarshalJSON

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

type IndexerProxyApiService

type IndexerProxyApiService service

IndexerProxyApiService IndexerProxyApi service

func (*IndexerProxyApiService) CreateIndexerProxy

CreateIndexerProxy Method for CreateIndexerProxy

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

func (*IndexerProxyApiService) CreateIndexerProxyActionByName

func (a *IndexerProxyApiService) CreateIndexerProxyActionByName(ctx context.Context, name string) ApiCreateIndexerProxyActionByNameRequest

CreateIndexerProxyActionByName Method for CreateIndexerProxyActionByName

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

func (*IndexerProxyApiService) CreateIndexerProxyActionByNameExecute

func (a *IndexerProxyApiService) CreateIndexerProxyActionByNameExecute(r ApiCreateIndexerProxyActionByNameRequest) (*http.Response, error)

Execute executes the request

func (*IndexerProxyApiService) CreateIndexerProxyExecute

Execute executes the request

@return IndexerProxyResource

func (*IndexerProxyApiService) DeleteIndexerProxy

DeleteIndexerProxy Method for DeleteIndexerProxy

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

func (*IndexerProxyApiService) DeleteIndexerProxyExecute

func (a *IndexerProxyApiService) DeleteIndexerProxyExecute(r ApiDeleteIndexerProxyRequest) (*http.Response, error)

Execute executes the request

func (*IndexerProxyApiService) GetIndexerProxyById

GetIndexerProxyById Method for GetIndexerProxyById

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

func (*IndexerProxyApiService) GetIndexerProxyByIdExecute

Execute executes the request

@return IndexerProxyResource

func (*IndexerProxyApiService) ListIndexerProxy

ListIndexerProxy Method for ListIndexerProxy

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

func (*IndexerProxyApiService) ListIndexerProxyExecute

Execute executes the request

@return []IndexerProxyResource

func (*IndexerProxyApiService) ListIndexerProxySchema

ListIndexerProxySchema Method for ListIndexerProxySchema

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

func (*IndexerProxyApiService) ListIndexerProxySchemaExecute

Execute executes the request

@return []IndexerProxyResource

func (*IndexerProxyApiService) TestIndexerProxy

TestIndexerProxy Method for TestIndexerProxy

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

func (*IndexerProxyApiService) TestIndexerProxyExecute

func (a *IndexerProxyApiService) TestIndexerProxyExecute(r ApiTestIndexerProxyRequest) (*http.Response, error)

Execute executes the request

func (*IndexerProxyApiService) TestallIndexerProxy

TestallIndexerProxy Method for TestallIndexerProxy

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

func (*IndexerProxyApiService) TestallIndexerProxyExecute

func (a *IndexerProxyApiService) TestallIndexerProxyExecute(r ApiTestallIndexerProxyRequest) (*http.Response, error)

Execute executes the request

func (*IndexerProxyApiService) UpdateIndexerProxy

UpdateIndexerProxy Method for UpdateIndexerProxy

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

func (*IndexerProxyApiService) UpdateIndexerProxyExecute

Execute executes the request

@return IndexerProxyResource

type IndexerProxyResource

type IndexerProxyResource struct {
	Id                    *int32                  `json:"id,omitempty"`
	Name                  NullableString          `json:"name,omitempty"`
	Fields                []*Field                `json:"fields,omitempty"`
	ImplementationName    NullableString          `json:"implementationName,omitempty"`
	Implementation        NullableString          `json:"implementation,omitempty"`
	ConfigContract        NullableString          `json:"configContract,omitempty"`
	InfoLink              NullableString          `json:"infoLink,omitempty"`
	Message               *ProviderMessage        `json:"message,omitempty"`
	Tags                  []*int32                `json:"tags,omitempty"`
	Presets               []*IndexerProxyResource `json:"presets,omitempty"`
	Link                  NullableString          `json:"link,omitempty"`
	OnHealthIssue         *bool                   `json:"onHealthIssue,omitempty"`
	SupportsOnHealthIssue *bool                   `json:"supportsOnHealthIssue,omitempty"`
	IncludeHealthWarnings *bool                   `json:"includeHealthWarnings,omitempty"`
	TestCommand           NullableString          `json:"testCommand,omitempty"`
}

IndexerProxyResource struct for IndexerProxyResource

func NewIndexerProxyResource

func NewIndexerProxyResource() *IndexerProxyResource

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

func NewIndexerProxyResourceWithDefaults

func NewIndexerProxyResourceWithDefaults() *IndexerProxyResource

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

func (*IndexerProxyResource) GetConfigContract

func (o *IndexerProxyResource) GetConfigContract() string

GetConfigContract returns the ConfigContract field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerProxyResource) GetConfigContractOk

func (o *IndexerProxyResource) GetConfigContractOk() (*string, bool)

GetConfigContractOk returns a tuple with the ConfigContract 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 (*IndexerProxyResource) GetFields

func (o *IndexerProxyResource) GetFields() []*Field

GetFields returns the Fields field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerProxyResource) GetFieldsOk

func (o *IndexerProxyResource) GetFieldsOk() ([]*Field, bool)

GetFieldsOk returns a tuple with the Fields 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 (*IndexerProxyResource) GetId

func (o *IndexerProxyResource) GetId() int32

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

func (*IndexerProxyResource) GetIdOk

func (o *IndexerProxyResource) 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 (*IndexerProxyResource) GetImplementation

func (o *IndexerProxyResource) GetImplementation() string

GetImplementation returns the Implementation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerProxyResource) GetImplementationName

func (o *IndexerProxyResource) GetImplementationName() string

GetImplementationName returns the ImplementationName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerProxyResource) GetImplementationNameOk

func (o *IndexerProxyResource) GetImplementationNameOk() (*string, bool)

GetImplementationNameOk returns a tuple with the ImplementationName 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 (*IndexerProxyResource) GetImplementationOk

func (o *IndexerProxyResource) GetImplementationOk() (*string, bool)

GetImplementationOk returns a tuple with the Implementation 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 (*IndexerProxyResource) GetIncludeHealthWarnings

func (o *IndexerProxyResource) GetIncludeHealthWarnings() bool

GetIncludeHealthWarnings returns the IncludeHealthWarnings field value if set, zero value otherwise.

func (*IndexerProxyResource) GetIncludeHealthWarningsOk

func (o *IndexerProxyResource) GetIncludeHealthWarningsOk() (*bool, bool)

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

func (o *IndexerProxyResource) GetInfoLink() string

GetInfoLink returns the InfoLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerProxyResource) GetInfoLinkOk

func (o *IndexerProxyResource) GetInfoLinkOk() (*string, bool)

GetInfoLinkOk returns a tuple with the InfoLink 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 (o *IndexerProxyResource) GetLink() string

GetLink returns the Link field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerProxyResource) GetLinkOk

func (o *IndexerProxyResource) GetLinkOk() (*string, bool)

GetLinkOk returns a tuple with the Link 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 (*IndexerProxyResource) GetMessage

func (o *IndexerProxyResource) GetMessage() ProviderMessage

GetMessage returns the Message field value if set, zero value otherwise.

func (*IndexerProxyResource) GetMessageOk

func (o *IndexerProxyResource) GetMessageOk() (*ProviderMessage, 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 (*IndexerProxyResource) GetName

func (o *IndexerProxyResource) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerProxyResource) GetNameOk

func (o *IndexerProxyResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IndexerProxyResource) GetOnHealthIssue

func (o *IndexerProxyResource) GetOnHealthIssue() bool

GetOnHealthIssue returns the OnHealthIssue field value if set, zero value otherwise.

func (*IndexerProxyResource) GetOnHealthIssueOk

func (o *IndexerProxyResource) GetOnHealthIssueOk() (*bool, bool)

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

func (*IndexerProxyResource) GetPresets

func (o *IndexerProxyResource) GetPresets() []*IndexerProxyResource

GetPresets returns the Presets field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerProxyResource) GetPresetsOk

func (o *IndexerProxyResource) GetPresetsOk() ([]*IndexerProxyResource, bool)

GetPresetsOk returns a tuple with the Presets 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 (*IndexerProxyResource) GetSupportsOnHealthIssue

func (o *IndexerProxyResource) GetSupportsOnHealthIssue() bool

GetSupportsOnHealthIssue returns the SupportsOnHealthIssue field value if set, zero value otherwise.

func (*IndexerProxyResource) GetSupportsOnHealthIssueOk

func (o *IndexerProxyResource) GetSupportsOnHealthIssueOk() (*bool, bool)

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

func (*IndexerProxyResource) GetTags

func (o *IndexerProxyResource) GetTags() []*int32

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerProxyResource) GetTagsOk

func (o *IndexerProxyResource) GetTagsOk() ([]*int32, bool)

GetTagsOk returns a tuple with the Tags 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 (*IndexerProxyResource) GetTestCommand

func (o *IndexerProxyResource) GetTestCommand() string

GetTestCommand returns the TestCommand field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerProxyResource) GetTestCommandOk

func (o *IndexerProxyResource) GetTestCommandOk() (*string, bool)

GetTestCommandOk returns a tuple with the TestCommand 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 (*IndexerProxyResource) HasConfigContract

func (o *IndexerProxyResource) HasConfigContract() bool

HasConfigContract returns a boolean if a field has been set.

func (*IndexerProxyResource) HasFields

func (o *IndexerProxyResource) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*IndexerProxyResource) HasId

func (o *IndexerProxyResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*IndexerProxyResource) HasImplementation

func (o *IndexerProxyResource) HasImplementation() bool

HasImplementation returns a boolean if a field has been set.

func (*IndexerProxyResource) HasImplementationName

func (o *IndexerProxyResource) HasImplementationName() bool

HasImplementationName returns a boolean if a field has been set.

func (*IndexerProxyResource) HasIncludeHealthWarnings

func (o *IndexerProxyResource) HasIncludeHealthWarnings() bool

HasIncludeHealthWarnings returns a boolean if a field has been set.

func (o *IndexerProxyResource) HasInfoLink() bool

HasInfoLink returns a boolean if a field has been set.

func (o *IndexerProxyResource) HasLink() bool

HasLink returns a boolean if a field has been set.

func (*IndexerProxyResource) HasMessage

func (o *IndexerProxyResource) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*IndexerProxyResource) HasName

func (o *IndexerProxyResource) HasName() bool

HasName returns a boolean if a field has been set.

func (*IndexerProxyResource) HasOnHealthIssue

func (o *IndexerProxyResource) HasOnHealthIssue() bool

HasOnHealthIssue returns a boolean if a field has been set.

func (*IndexerProxyResource) HasPresets

func (o *IndexerProxyResource) HasPresets() bool

HasPresets returns a boolean if a field has been set.

func (*IndexerProxyResource) HasSupportsOnHealthIssue

func (o *IndexerProxyResource) HasSupportsOnHealthIssue() bool

HasSupportsOnHealthIssue returns a boolean if a field has been set.

func (*IndexerProxyResource) HasTags

func (o *IndexerProxyResource) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*IndexerProxyResource) HasTestCommand

func (o *IndexerProxyResource) HasTestCommand() bool

HasTestCommand returns a boolean if a field has been set.

func (IndexerProxyResource) MarshalJSON

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

func (*IndexerProxyResource) SetConfigContract

func (o *IndexerProxyResource) SetConfigContract(v string)

SetConfigContract gets a reference to the given NullableString and assigns it to the ConfigContract field.

func (*IndexerProxyResource) SetConfigContractNil

func (o *IndexerProxyResource) SetConfigContractNil()

SetConfigContractNil sets the value for ConfigContract to be an explicit nil

func (*IndexerProxyResource) SetFields

func (o *IndexerProxyResource) SetFields(v []*Field)

SetFields gets a reference to the given []Field and assigns it to the Fields field.

func (*IndexerProxyResource) SetId

func (o *IndexerProxyResource) SetId(v int32)

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

func (*IndexerProxyResource) SetImplementation

func (o *IndexerProxyResource) SetImplementation(v string)

SetImplementation gets a reference to the given NullableString and assigns it to the Implementation field.

func (*IndexerProxyResource) SetImplementationName

func (o *IndexerProxyResource) SetImplementationName(v string)

SetImplementationName gets a reference to the given NullableString and assigns it to the ImplementationName field.

func (*IndexerProxyResource) SetImplementationNameNil

func (o *IndexerProxyResource) SetImplementationNameNil()

SetImplementationNameNil sets the value for ImplementationName to be an explicit nil

func (*IndexerProxyResource) SetImplementationNil

func (o *IndexerProxyResource) SetImplementationNil()

SetImplementationNil sets the value for Implementation to be an explicit nil

func (*IndexerProxyResource) SetIncludeHealthWarnings

func (o *IndexerProxyResource) SetIncludeHealthWarnings(v bool)

SetIncludeHealthWarnings gets a reference to the given bool and assigns it to the IncludeHealthWarnings field.

func (o *IndexerProxyResource) SetInfoLink(v string)

SetInfoLink gets a reference to the given NullableString and assigns it to the InfoLink field.

func (*IndexerProxyResource) SetInfoLinkNil

func (o *IndexerProxyResource) SetInfoLinkNil()

SetInfoLinkNil sets the value for InfoLink to be an explicit nil

func (o *IndexerProxyResource) SetLink(v string)

SetLink gets a reference to the given NullableString and assigns it to the Link field.

func (*IndexerProxyResource) SetLinkNil

func (o *IndexerProxyResource) SetLinkNil()

SetLinkNil sets the value for Link to be an explicit nil

func (*IndexerProxyResource) SetMessage

func (o *IndexerProxyResource) SetMessage(v ProviderMessage)

SetMessage gets a reference to the given ProviderMessage and assigns it to the Message field.

func (*IndexerProxyResource) SetName

func (o *IndexerProxyResource) SetName(v string)

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

func (*IndexerProxyResource) SetNameNil

func (o *IndexerProxyResource) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*IndexerProxyResource) SetOnHealthIssue

func (o *IndexerProxyResource) SetOnHealthIssue(v bool)

SetOnHealthIssue gets a reference to the given bool and assigns it to the OnHealthIssue field.

func (*IndexerProxyResource) SetPresets

func (o *IndexerProxyResource) SetPresets(v []*IndexerProxyResource)

SetPresets gets a reference to the given []IndexerProxyResource and assigns it to the Presets field.

func (*IndexerProxyResource) SetSupportsOnHealthIssue

func (o *IndexerProxyResource) SetSupportsOnHealthIssue(v bool)

SetSupportsOnHealthIssue gets a reference to the given bool and assigns it to the SupportsOnHealthIssue field.

func (*IndexerProxyResource) SetTags

func (o *IndexerProxyResource) SetTags(v []*int32)

SetTags gets a reference to the given []int32 and assigns it to the Tags field.

func (*IndexerProxyResource) SetTestCommand

func (o *IndexerProxyResource) SetTestCommand(v string)

SetTestCommand gets a reference to the given NullableString and assigns it to the TestCommand field.

func (*IndexerProxyResource) SetTestCommandNil

func (o *IndexerProxyResource) SetTestCommandNil()

SetTestCommandNil sets the value for TestCommand to be an explicit nil

func (*IndexerProxyResource) UnsetConfigContract

func (o *IndexerProxyResource) UnsetConfigContract()

UnsetConfigContract ensures that no value is present for ConfigContract, not even an explicit nil

func (*IndexerProxyResource) UnsetImplementation

func (o *IndexerProxyResource) UnsetImplementation()

UnsetImplementation ensures that no value is present for Implementation, not even an explicit nil

func (*IndexerProxyResource) UnsetImplementationName

func (o *IndexerProxyResource) UnsetImplementationName()

UnsetImplementationName ensures that no value is present for ImplementationName, not even an explicit nil

func (o *IndexerProxyResource) UnsetInfoLink()

UnsetInfoLink ensures that no value is present for InfoLink, not even an explicit nil

func (o *IndexerProxyResource) UnsetLink()

UnsetLink ensures that no value is present for Link, not even an explicit nil

func (*IndexerProxyResource) UnsetName

func (o *IndexerProxyResource) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*IndexerProxyResource) UnsetTestCommand

func (o *IndexerProxyResource) UnsetTestCommand()

UnsetTestCommand ensures that no value is present for TestCommand, not even an explicit nil

type IndexerResource

type IndexerResource struct {
	Id                 *int32                     `json:"id,omitempty"`
	Name               NullableString             `json:"name,omitempty"`
	Fields             []*Field                   `json:"fields,omitempty"`
	ImplementationName NullableString             `json:"implementationName,omitempty"`
	Implementation     NullableString             `json:"implementation,omitempty"`
	ConfigContract     NullableString             `json:"configContract,omitempty"`
	InfoLink           NullableString             `json:"infoLink,omitempty"`
	Message            *ProviderMessage           `json:"message,omitempty"`
	Tags               []*int32                   `json:"tags,omitempty"`
	Presets            []*IndexerResource         `json:"presets,omitempty"`
	IndexerUrls        []*string                  `json:"indexerUrls,omitempty"`
	LegacyUrls         []*string                  `json:"legacyUrls,omitempty"`
	DefinitionName     NullableString             `json:"definitionName,omitempty"`
	Description        NullableString             `json:"description,omitempty"`
	Language           NullableString             `json:"language,omitempty"`
	Encoding           NullableString             `json:"encoding,omitempty"`
	Enable             *bool                      `json:"enable,omitempty"`
	Redirect           *bool                      `json:"redirect,omitempty"`
	SupportsRss        *bool                      `json:"supportsRss,omitempty"`
	SupportsSearch     *bool                      `json:"supportsSearch,omitempty"`
	SupportsRedirect   *bool                      `json:"supportsRedirect,omitempty"`
	AppProfileId       *int32                     `json:"appProfileId,omitempty"`
	Protocol           *DownloadProtocol          `json:"protocol,omitempty"`
	Privacy            *IndexerPrivacy            `json:"privacy,omitempty"`
	Capabilities       *IndexerCapabilityResource `json:"capabilities,omitempty"`
	Priority           *int32                     `json:"priority,omitempty"`
	Added              *time.Time                 `json:"added,omitempty"`
	Status             *IndexerStatusResource     `json:"status,omitempty"`
	SortName           NullableString             `json:"sortName,omitempty"`
}

IndexerResource struct for IndexerResource

func NewIndexerResource

func NewIndexerResource() *IndexerResource

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

func NewIndexerResourceWithDefaults

func NewIndexerResourceWithDefaults() *IndexerResource

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

func (*IndexerResource) GetAdded

func (o *IndexerResource) GetAdded() time.Time

GetAdded returns the Added field value if set, zero value otherwise.

func (*IndexerResource) GetAddedOk

func (o *IndexerResource) GetAddedOk() (*time.Time, bool)

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

func (*IndexerResource) GetAppProfileId

func (o *IndexerResource) GetAppProfileId() int32

GetAppProfileId returns the AppProfileId field value if set, zero value otherwise.

func (*IndexerResource) GetAppProfileIdOk

func (o *IndexerResource) GetAppProfileIdOk() (*int32, bool)

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

func (*IndexerResource) GetCapabilities

func (o *IndexerResource) GetCapabilities() IndexerCapabilityResource

GetCapabilities returns the Capabilities field value if set, zero value otherwise.

func (*IndexerResource) GetCapabilitiesOk

func (o *IndexerResource) GetCapabilitiesOk() (*IndexerCapabilityResource, 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 (*IndexerResource) GetConfigContract

func (o *IndexerResource) GetConfigContract() string

GetConfigContract returns the ConfigContract field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetConfigContractOk

func (o *IndexerResource) GetConfigContractOk() (*string, bool)

GetConfigContractOk returns a tuple with the ConfigContract 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 (*IndexerResource) GetDefinitionName

func (o *IndexerResource) GetDefinitionName() string

GetDefinitionName returns the DefinitionName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetDefinitionNameOk

func (o *IndexerResource) GetDefinitionNameOk() (*string, bool)

GetDefinitionNameOk returns a tuple with the DefinitionName 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 (*IndexerResource) GetDescription

func (o *IndexerResource) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetDescriptionOk

func (o *IndexerResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IndexerResource) GetEnable

func (o *IndexerResource) GetEnable() bool

GetEnable returns the Enable field value if set, zero value otherwise.

func (*IndexerResource) GetEnableOk

func (o *IndexerResource) GetEnableOk() (*bool, bool)

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

func (*IndexerResource) GetEncoding

func (o *IndexerResource) GetEncoding() string

GetEncoding returns the Encoding field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetEncodingOk

func (o *IndexerResource) GetEncodingOk() (*string, bool)

GetEncodingOk returns a tuple with the Encoding 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 (*IndexerResource) GetFields

func (o *IndexerResource) GetFields() []*Field

GetFields returns the Fields field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetFieldsOk

func (o *IndexerResource) GetFieldsOk() ([]*Field, bool)

GetFieldsOk returns a tuple with the Fields 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 (*IndexerResource) GetId

func (o *IndexerResource) GetId() int32

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

func (*IndexerResource) GetIdOk

func (o *IndexerResource) 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 (*IndexerResource) GetImplementation

func (o *IndexerResource) GetImplementation() string

GetImplementation returns the Implementation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetImplementationName

func (o *IndexerResource) GetImplementationName() string

GetImplementationName returns the ImplementationName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetImplementationNameOk

func (o *IndexerResource) GetImplementationNameOk() (*string, bool)

GetImplementationNameOk returns a tuple with the ImplementationName 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 (*IndexerResource) GetImplementationOk

func (o *IndexerResource) GetImplementationOk() (*string, bool)

GetImplementationOk returns a tuple with the Implementation 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 (*IndexerResource) GetIndexerUrls

func (o *IndexerResource) GetIndexerUrls() []*string

GetIndexerUrls returns the IndexerUrls field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetIndexerUrlsOk

func (o *IndexerResource) GetIndexerUrlsOk() ([]*string, bool)

GetIndexerUrlsOk returns a tuple with the IndexerUrls 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 (o *IndexerResource) GetInfoLink() string

GetInfoLink returns the InfoLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetInfoLinkOk

func (o *IndexerResource) GetInfoLinkOk() (*string, bool)

GetInfoLinkOk returns a tuple with the InfoLink 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 (*IndexerResource) GetLanguage

func (o *IndexerResource) GetLanguage() string

GetLanguage returns the Language field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetLanguageOk

func (o *IndexerResource) GetLanguageOk() (*string, bool)

GetLanguageOk returns a tuple with the Language 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 (*IndexerResource) GetLegacyUrls

func (o *IndexerResource) GetLegacyUrls() []*string

GetLegacyUrls returns the LegacyUrls field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetLegacyUrlsOk

func (o *IndexerResource) GetLegacyUrlsOk() ([]*string, bool)

GetLegacyUrlsOk returns a tuple with the LegacyUrls 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 (*IndexerResource) GetMessage

func (o *IndexerResource) GetMessage() ProviderMessage

GetMessage returns the Message field value if set, zero value otherwise.

func (*IndexerResource) GetMessageOk

func (o *IndexerResource) GetMessageOk() (*ProviderMessage, 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 (*IndexerResource) GetName

func (o *IndexerResource) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetNameOk

func (o *IndexerResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*IndexerResource) GetPresets

func (o *IndexerResource) GetPresets() []*IndexerResource

GetPresets returns the Presets field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetPresetsOk

func (o *IndexerResource) GetPresetsOk() ([]*IndexerResource, bool)

GetPresetsOk returns a tuple with the Presets 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 (*IndexerResource) GetPriority

func (o *IndexerResource) GetPriority() int32

GetPriority returns the Priority field value if set, zero value otherwise.

func (*IndexerResource) GetPriorityOk

func (o *IndexerResource) GetPriorityOk() (*int32, bool)

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

func (*IndexerResource) GetPrivacy

func (o *IndexerResource) GetPrivacy() IndexerPrivacy

GetPrivacy returns the Privacy field value if set, zero value otherwise.

func (*IndexerResource) GetPrivacyOk

func (o *IndexerResource) GetPrivacyOk() (*IndexerPrivacy, bool)

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

func (*IndexerResource) GetProtocol

func (o *IndexerResource) GetProtocol() DownloadProtocol

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*IndexerResource) GetProtocolOk

func (o *IndexerResource) GetProtocolOk() (*DownloadProtocol, bool)

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

func (*IndexerResource) GetRedirect

func (o *IndexerResource) GetRedirect() bool

GetRedirect returns the Redirect field value if set, zero value otherwise.

func (*IndexerResource) GetRedirectOk

func (o *IndexerResource) GetRedirectOk() (*bool, bool)

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

func (*IndexerResource) GetSortName

func (o *IndexerResource) GetSortName() string

GetSortName returns the SortName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetSortNameOk

func (o *IndexerResource) GetSortNameOk() (*string, bool)

GetSortNameOk returns a tuple with the SortName 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 (*IndexerResource) GetStatus

func (o *IndexerResource) GetStatus() IndexerStatusResource

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

func (*IndexerResource) GetStatusOk

func (o *IndexerResource) GetStatusOk() (*IndexerStatusResource, 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 (*IndexerResource) GetSupportsRedirect

func (o *IndexerResource) GetSupportsRedirect() bool

GetSupportsRedirect returns the SupportsRedirect field value if set, zero value otherwise.

func (*IndexerResource) GetSupportsRedirectOk

func (o *IndexerResource) GetSupportsRedirectOk() (*bool, bool)

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

func (*IndexerResource) GetSupportsRss

func (o *IndexerResource) GetSupportsRss() bool

GetSupportsRss returns the SupportsRss field value if set, zero value otherwise.

func (*IndexerResource) GetSupportsRssOk

func (o *IndexerResource) GetSupportsRssOk() (*bool, bool)

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

func (*IndexerResource) GetSupportsSearch

func (o *IndexerResource) GetSupportsSearch() bool

GetSupportsSearch returns the SupportsSearch field value if set, zero value otherwise.

func (*IndexerResource) GetSupportsSearchOk

func (o *IndexerResource) GetSupportsSearchOk() (*bool, bool)

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

func (*IndexerResource) GetTags

func (o *IndexerResource) GetTags() []*int32

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerResource) GetTagsOk

func (o *IndexerResource) GetTagsOk() ([]*int32, bool)

GetTagsOk returns a tuple with the Tags 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 (*IndexerResource) HasAdded

func (o *IndexerResource) HasAdded() bool

HasAdded returns a boolean if a field has been set.

func (*IndexerResource) HasAppProfileId

func (o *IndexerResource) HasAppProfileId() bool

HasAppProfileId returns a boolean if a field has been set.

func (*IndexerResource) HasCapabilities

func (o *IndexerResource) HasCapabilities() bool

HasCapabilities returns a boolean if a field has been set.

func (*IndexerResource) HasConfigContract

func (o *IndexerResource) HasConfigContract() bool

HasConfigContract returns a boolean if a field has been set.

func (*IndexerResource) HasDefinitionName

func (o *IndexerResource) HasDefinitionName() bool

HasDefinitionName returns a boolean if a field has been set.

func (*IndexerResource) HasDescription

func (o *IndexerResource) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*IndexerResource) HasEnable

func (o *IndexerResource) HasEnable() bool

HasEnable returns a boolean if a field has been set.

func (*IndexerResource) HasEncoding

func (o *IndexerResource) HasEncoding() bool

HasEncoding returns a boolean if a field has been set.

func (*IndexerResource) HasFields

func (o *IndexerResource) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*IndexerResource) HasId

func (o *IndexerResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*IndexerResource) HasImplementation

func (o *IndexerResource) HasImplementation() bool

HasImplementation returns a boolean if a field has been set.

func (*IndexerResource) HasImplementationName

func (o *IndexerResource) HasImplementationName() bool

HasImplementationName returns a boolean if a field has been set.

func (*IndexerResource) HasIndexerUrls

func (o *IndexerResource) HasIndexerUrls() bool

HasIndexerUrls returns a boolean if a field has been set.

func (o *IndexerResource) HasInfoLink() bool

HasInfoLink returns a boolean if a field has been set.

func (*IndexerResource) HasLanguage

func (o *IndexerResource) HasLanguage() bool

HasLanguage returns a boolean if a field has been set.

func (*IndexerResource) HasLegacyUrls

func (o *IndexerResource) HasLegacyUrls() bool

HasLegacyUrls returns a boolean if a field has been set.

func (*IndexerResource) HasMessage

func (o *IndexerResource) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*IndexerResource) HasName

func (o *IndexerResource) HasName() bool

HasName returns a boolean if a field has been set.

func (*IndexerResource) HasPresets

func (o *IndexerResource) HasPresets() bool

HasPresets returns a boolean if a field has been set.

func (*IndexerResource) HasPriority

func (o *IndexerResource) HasPriority() bool

HasPriority returns a boolean if a field has been set.

func (*IndexerResource) HasPrivacy

func (o *IndexerResource) HasPrivacy() bool

HasPrivacy returns a boolean if a field has been set.

func (*IndexerResource) HasProtocol

func (o *IndexerResource) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*IndexerResource) HasRedirect

func (o *IndexerResource) HasRedirect() bool

HasRedirect returns a boolean if a field has been set.

func (*IndexerResource) HasSortName

func (o *IndexerResource) HasSortName() bool

HasSortName returns a boolean if a field has been set.

func (*IndexerResource) HasStatus

func (o *IndexerResource) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*IndexerResource) HasSupportsRedirect

func (o *IndexerResource) HasSupportsRedirect() bool

HasSupportsRedirect returns a boolean if a field has been set.

func (*IndexerResource) HasSupportsRss

func (o *IndexerResource) HasSupportsRss() bool

HasSupportsRss returns a boolean if a field has been set.

func (*IndexerResource) HasSupportsSearch

func (o *IndexerResource) HasSupportsSearch() bool

HasSupportsSearch returns a boolean if a field has been set.

func (*IndexerResource) HasTags

func (o *IndexerResource) HasTags() bool

HasTags returns a boolean if a field has been set.

func (IndexerResource) MarshalJSON

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

func (*IndexerResource) SetAdded

func (o *IndexerResource) SetAdded(v time.Time)

SetAdded gets a reference to the given time.Time and assigns it to the Added field.

func (*IndexerResource) SetAppProfileId

func (o *IndexerResource) SetAppProfileId(v int32)

SetAppProfileId gets a reference to the given int32 and assigns it to the AppProfileId field.

func (*IndexerResource) SetCapabilities

func (o *IndexerResource) SetCapabilities(v IndexerCapabilityResource)

SetCapabilities gets a reference to the given IndexerCapabilityResource and assigns it to the Capabilities field.

func (*IndexerResource) SetConfigContract

func (o *IndexerResource) SetConfigContract(v string)

SetConfigContract gets a reference to the given NullableString and assigns it to the ConfigContract field.

func (*IndexerResource) SetConfigContractNil

func (o *IndexerResource) SetConfigContractNil()

SetConfigContractNil sets the value for ConfigContract to be an explicit nil

func (*IndexerResource) SetDefinitionName

func (o *IndexerResource) SetDefinitionName(v string)

SetDefinitionName gets a reference to the given NullableString and assigns it to the DefinitionName field.

func (*IndexerResource) SetDefinitionNameNil

func (o *IndexerResource) SetDefinitionNameNil()

SetDefinitionNameNil sets the value for DefinitionName to be an explicit nil

func (*IndexerResource) SetDescription

func (o *IndexerResource) SetDescription(v string)

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

func (*IndexerResource) SetDescriptionNil

func (o *IndexerResource) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*IndexerResource) SetEnable

func (o *IndexerResource) SetEnable(v bool)

SetEnable gets a reference to the given bool and assigns it to the Enable field.

func (*IndexerResource) SetEncoding

func (o *IndexerResource) SetEncoding(v string)

SetEncoding gets a reference to the given NullableString and assigns it to the Encoding field.

func (*IndexerResource) SetEncodingNil

func (o *IndexerResource) SetEncodingNil()

SetEncodingNil sets the value for Encoding to be an explicit nil

func (*IndexerResource) SetFields

func (o *IndexerResource) SetFields(v []*Field)

SetFields gets a reference to the given []Field and assigns it to the Fields field.

func (*IndexerResource) SetId

func (o *IndexerResource) SetId(v int32)

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

func (*IndexerResource) SetImplementation

func (o *IndexerResource) SetImplementation(v string)

SetImplementation gets a reference to the given NullableString and assigns it to the Implementation field.

func (*IndexerResource) SetImplementationName

func (o *IndexerResource) SetImplementationName(v string)

SetImplementationName gets a reference to the given NullableString and assigns it to the ImplementationName field.

func (*IndexerResource) SetImplementationNameNil

func (o *IndexerResource) SetImplementationNameNil()

SetImplementationNameNil sets the value for ImplementationName to be an explicit nil

func (*IndexerResource) SetImplementationNil

func (o *IndexerResource) SetImplementationNil()

SetImplementationNil sets the value for Implementation to be an explicit nil

func (*IndexerResource) SetIndexerUrls

func (o *IndexerResource) SetIndexerUrls(v []*string)

SetIndexerUrls gets a reference to the given []string and assigns it to the IndexerUrls field.

func (o *IndexerResource) SetInfoLink(v string)

SetInfoLink gets a reference to the given NullableString and assigns it to the InfoLink field.

func (*IndexerResource) SetInfoLinkNil

func (o *IndexerResource) SetInfoLinkNil()

SetInfoLinkNil sets the value for InfoLink to be an explicit nil

func (*IndexerResource) SetLanguage

func (o *IndexerResource) SetLanguage(v string)

SetLanguage gets a reference to the given NullableString and assigns it to the Language field.

func (*IndexerResource) SetLanguageNil

func (o *IndexerResource) SetLanguageNil()

SetLanguageNil sets the value for Language to be an explicit nil

func (*IndexerResource) SetLegacyUrls

func (o *IndexerResource) SetLegacyUrls(v []*string)

SetLegacyUrls gets a reference to the given []string and assigns it to the LegacyUrls field.

func (*IndexerResource) SetMessage

func (o *IndexerResource) SetMessage(v ProviderMessage)

SetMessage gets a reference to the given ProviderMessage and assigns it to the Message field.

func (*IndexerResource) SetName

func (o *IndexerResource) SetName(v string)

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

func (*IndexerResource) SetNameNil

func (o *IndexerResource) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*IndexerResource) SetPresets

func (o *IndexerResource) SetPresets(v []*IndexerResource)

SetPresets gets a reference to the given []IndexerResource and assigns it to the Presets field.

func (*IndexerResource) SetPriority

func (o *IndexerResource) SetPriority(v int32)

SetPriority gets a reference to the given int32 and assigns it to the Priority field.

func (*IndexerResource) SetPrivacy

func (o *IndexerResource) SetPrivacy(v IndexerPrivacy)

SetPrivacy gets a reference to the given IndexerPrivacy and assigns it to the Privacy field.

func (*IndexerResource) SetProtocol

func (o *IndexerResource) SetProtocol(v DownloadProtocol)

SetProtocol gets a reference to the given DownloadProtocol and assigns it to the Protocol field.

func (*IndexerResource) SetRedirect

func (o *IndexerResource) SetRedirect(v bool)

SetRedirect gets a reference to the given bool and assigns it to the Redirect field.

func (*IndexerResource) SetSortName

func (o *IndexerResource) SetSortName(v string)

SetSortName gets a reference to the given NullableString and assigns it to the SortName field.

func (*IndexerResource) SetSortNameNil

func (o *IndexerResource) SetSortNameNil()

SetSortNameNil sets the value for SortName to be an explicit nil

func (*IndexerResource) SetStatus

func (o *IndexerResource) SetStatus(v IndexerStatusResource)

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

func (*IndexerResource) SetSupportsRedirect

func (o *IndexerResource) SetSupportsRedirect(v bool)

SetSupportsRedirect gets a reference to the given bool and assigns it to the SupportsRedirect field.

func (*IndexerResource) SetSupportsRss

func (o *IndexerResource) SetSupportsRss(v bool)

SetSupportsRss gets a reference to the given bool and assigns it to the SupportsRss field.

func (*IndexerResource) SetSupportsSearch

func (o *IndexerResource) SetSupportsSearch(v bool)

SetSupportsSearch gets a reference to the given bool and assigns it to the SupportsSearch field.

func (*IndexerResource) SetTags

func (o *IndexerResource) SetTags(v []*int32)

SetTags gets a reference to the given []int32 and assigns it to the Tags field.

func (*IndexerResource) UnsetConfigContract

func (o *IndexerResource) UnsetConfigContract()

UnsetConfigContract ensures that no value is present for ConfigContract, not even an explicit nil

func (*IndexerResource) UnsetDefinitionName

func (o *IndexerResource) UnsetDefinitionName()

UnsetDefinitionName ensures that no value is present for DefinitionName, not even an explicit nil

func (*IndexerResource) UnsetDescription

func (o *IndexerResource) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

func (*IndexerResource) UnsetEncoding

func (o *IndexerResource) UnsetEncoding()

UnsetEncoding ensures that no value is present for Encoding, not even an explicit nil

func (*IndexerResource) UnsetImplementation

func (o *IndexerResource) UnsetImplementation()

UnsetImplementation ensures that no value is present for Implementation, not even an explicit nil

func (*IndexerResource) UnsetImplementationName

func (o *IndexerResource) UnsetImplementationName()

UnsetImplementationName ensures that no value is present for ImplementationName, not even an explicit nil

func (o *IndexerResource) UnsetInfoLink()

UnsetInfoLink ensures that no value is present for InfoLink, not even an explicit nil

func (*IndexerResource) UnsetLanguage

func (o *IndexerResource) UnsetLanguage()

UnsetLanguage ensures that no value is present for Language, not even an explicit nil

func (*IndexerResource) UnsetName

func (o *IndexerResource) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*IndexerResource) UnsetSortName

func (o *IndexerResource) UnsetSortName()

UnsetSortName ensures that no value is present for SortName, not even an explicit nil

type IndexerStatistics

type IndexerStatistics struct {
	IndexerId                 *int32         `json:"indexerId,omitempty"`
	IndexerName               NullableString `json:"indexerName,omitempty"`
	AverageResponseTime       *int32         `json:"averageResponseTime,omitempty"`
	NumberOfQueries           *int32         `json:"numberOfQueries,omitempty"`
	NumberOfGrabs             *int32         `json:"numberOfGrabs,omitempty"`
	NumberOfRssQueries        *int32         `json:"numberOfRssQueries,omitempty"`
	NumberOfAuthQueries       *int32         `json:"numberOfAuthQueries,omitempty"`
	NumberOfFailedQueries     *int32         `json:"numberOfFailedQueries,omitempty"`
	NumberOfFailedGrabs       *int32         `json:"numberOfFailedGrabs,omitempty"`
	NumberOfFailedRssQueries  *int32         `json:"numberOfFailedRssQueries,omitempty"`
	NumberOfFailedAuthQueries *int32         `json:"numberOfFailedAuthQueries,omitempty"`
}

IndexerStatistics struct for IndexerStatistics

func NewIndexerStatistics

func NewIndexerStatistics() *IndexerStatistics

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

func NewIndexerStatisticsWithDefaults

func NewIndexerStatisticsWithDefaults() *IndexerStatistics

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

func (*IndexerStatistics) GetAverageResponseTime

func (o *IndexerStatistics) GetAverageResponseTime() int32

GetAverageResponseTime returns the AverageResponseTime field value if set, zero value otherwise.

func (*IndexerStatistics) GetAverageResponseTimeOk

func (o *IndexerStatistics) GetAverageResponseTimeOk() (*int32, bool)

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

func (*IndexerStatistics) GetIndexerId

func (o *IndexerStatistics) GetIndexerId() int32

GetIndexerId returns the IndexerId field value if set, zero value otherwise.

func (*IndexerStatistics) GetIndexerIdOk

func (o *IndexerStatistics) GetIndexerIdOk() (*int32, bool)

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

func (*IndexerStatistics) GetIndexerName

func (o *IndexerStatistics) GetIndexerName() string

GetIndexerName returns the IndexerName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerStatistics) GetIndexerNameOk

func (o *IndexerStatistics) GetIndexerNameOk() (*string, bool)

GetIndexerNameOk returns a tuple with the IndexerName 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 (*IndexerStatistics) GetNumberOfAuthQueries

func (o *IndexerStatistics) GetNumberOfAuthQueries() int32

GetNumberOfAuthQueries returns the NumberOfAuthQueries field value if set, zero value otherwise.

func (*IndexerStatistics) GetNumberOfAuthQueriesOk

func (o *IndexerStatistics) GetNumberOfAuthQueriesOk() (*int32, bool)

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

func (*IndexerStatistics) GetNumberOfFailedAuthQueries

func (o *IndexerStatistics) GetNumberOfFailedAuthQueries() int32

GetNumberOfFailedAuthQueries returns the NumberOfFailedAuthQueries field value if set, zero value otherwise.

func (*IndexerStatistics) GetNumberOfFailedAuthQueriesOk

func (o *IndexerStatistics) GetNumberOfFailedAuthQueriesOk() (*int32, bool)

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

func (*IndexerStatistics) GetNumberOfFailedGrabs

func (o *IndexerStatistics) GetNumberOfFailedGrabs() int32

GetNumberOfFailedGrabs returns the NumberOfFailedGrabs field value if set, zero value otherwise.

func (*IndexerStatistics) GetNumberOfFailedGrabsOk

func (o *IndexerStatistics) GetNumberOfFailedGrabsOk() (*int32, bool)

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

func (*IndexerStatistics) GetNumberOfFailedQueries

func (o *IndexerStatistics) GetNumberOfFailedQueries() int32

GetNumberOfFailedQueries returns the NumberOfFailedQueries field value if set, zero value otherwise.

func (*IndexerStatistics) GetNumberOfFailedQueriesOk

func (o *IndexerStatistics) GetNumberOfFailedQueriesOk() (*int32, bool)

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

func (*IndexerStatistics) GetNumberOfFailedRssQueries

func (o *IndexerStatistics) GetNumberOfFailedRssQueries() int32

GetNumberOfFailedRssQueries returns the NumberOfFailedRssQueries field value if set, zero value otherwise.

func (*IndexerStatistics) GetNumberOfFailedRssQueriesOk

func (o *IndexerStatistics) GetNumberOfFailedRssQueriesOk() (*int32, bool)

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

func (*IndexerStatistics) GetNumberOfGrabs

func (o *IndexerStatistics) GetNumberOfGrabs() int32

GetNumberOfGrabs returns the NumberOfGrabs field value if set, zero value otherwise.

func (*IndexerStatistics) GetNumberOfGrabsOk

func (o *IndexerStatistics) GetNumberOfGrabsOk() (*int32, bool)

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

func (*IndexerStatistics) GetNumberOfQueries

func (o *IndexerStatistics) GetNumberOfQueries() int32

GetNumberOfQueries returns the NumberOfQueries field value if set, zero value otherwise.

func (*IndexerStatistics) GetNumberOfQueriesOk

func (o *IndexerStatistics) GetNumberOfQueriesOk() (*int32, bool)

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

func (*IndexerStatistics) GetNumberOfRssQueries

func (o *IndexerStatistics) GetNumberOfRssQueries() int32

GetNumberOfRssQueries returns the NumberOfRssQueries field value if set, zero value otherwise.

func (*IndexerStatistics) GetNumberOfRssQueriesOk

func (o *IndexerStatistics) GetNumberOfRssQueriesOk() (*int32, bool)

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

func (*IndexerStatistics) HasAverageResponseTime

func (o *IndexerStatistics) HasAverageResponseTime() bool

HasAverageResponseTime returns a boolean if a field has been set.

func (*IndexerStatistics) HasIndexerId

func (o *IndexerStatistics) HasIndexerId() bool

HasIndexerId returns a boolean if a field has been set.

func (*IndexerStatistics) HasIndexerName

func (o *IndexerStatistics) HasIndexerName() bool

HasIndexerName returns a boolean if a field has been set.

func (*IndexerStatistics) HasNumberOfAuthQueries

func (o *IndexerStatistics) HasNumberOfAuthQueries() bool

HasNumberOfAuthQueries returns a boolean if a field has been set.

func (*IndexerStatistics) HasNumberOfFailedAuthQueries

func (o *IndexerStatistics) HasNumberOfFailedAuthQueries() bool

HasNumberOfFailedAuthQueries returns a boolean if a field has been set.

func (*IndexerStatistics) HasNumberOfFailedGrabs

func (o *IndexerStatistics) HasNumberOfFailedGrabs() bool

HasNumberOfFailedGrabs returns a boolean if a field has been set.

func (*IndexerStatistics) HasNumberOfFailedQueries

func (o *IndexerStatistics) HasNumberOfFailedQueries() bool

HasNumberOfFailedQueries returns a boolean if a field has been set.

func (*IndexerStatistics) HasNumberOfFailedRssQueries

func (o *IndexerStatistics) HasNumberOfFailedRssQueries() bool

HasNumberOfFailedRssQueries returns a boolean if a field has been set.

func (*IndexerStatistics) HasNumberOfGrabs

func (o *IndexerStatistics) HasNumberOfGrabs() bool

HasNumberOfGrabs returns a boolean if a field has been set.

func (*IndexerStatistics) HasNumberOfQueries

func (o *IndexerStatistics) HasNumberOfQueries() bool

HasNumberOfQueries returns a boolean if a field has been set.

func (*IndexerStatistics) HasNumberOfRssQueries

func (o *IndexerStatistics) HasNumberOfRssQueries() bool

HasNumberOfRssQueries returns a boolean if a field has been set.

func (IndexerStatistics) MarshalJSON

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

func (*IndexerStatistics) SetAverageResponseTime

func (o *IndexerStatistics) SetAverageResponseTime(v int32)

SetAverageResponseTime gets a reference to the given int32 and assigns it to the AverageResponseTime field.

func (*IndexerStatistics) SetIndexerId

func (o *IndexerStatistics) SetIndexerId(v int32)

SetIndexerId gets a reference to the given int32 and assigns it to the IndexerId field.

func (*IndexerStatistics) SetIndexerName

func (o *IndexerStatistics) SetIndexerName(v string)

SetIndexerName gets a reference to the given NullableString and assigns it to the IndexerName field.

func (*IndexerStatistics) SetIndexerNameNil

func (o *IndexerStatistics) SetIndexerNameNil()

SetIndexerNameNil sets the value for IndexerName to be an explicit nil

func (*IndexerStatistics) SetNumberOfAuthQueries

func (o *IndexerStatistics) SetNumberOfAuthQueries(v int32)

SetNumberOfAuthQueries gets a reference to the given int32 and assigns it to the NumberOfAuthQueries field.

func (*IndexerStatistics) SetNumberOfFailedAuthQueries

func (o *IndexerStatistics) SetNumberOfFailedAuthQueries(v int32)

SetNumberOfFailedAuthQueries gets a reference to the given int32 and assigns it to the NumberOfFailedAuthQueries field.

func (*IndexerStatistics) SetNumberOfFailedGrabs

func (o *IndexerStatistics) SetNumberOfFailedGrabs(v int32)

SetNumberOfFailedGrabs gets a reference to the given int32 and assigns it to the NumberOfFailedGrabs field.

func (*IndexerStatistics) SetNumberOfFailedQueries

func (o *IndexerStatistics) SetNumberOfFailedQueries(v int32)

SetNumberOfFailedQueries gets a reference to the given int32 and assigns it to the NumberOfFailedQueries field.

func (*IndexerStatistics) SetNumberOfFailedRssQueries

func (o *IndexerStatistics) SetNumberOfFailedRssQueries(v int32)

SetNumberOfFailedRssQueries gets a reference to the given int32 and assigns it to the NumberOfFailedRssQueries field.

func (*IndexerStatistics) SetNumberOfGrabs

func (o *IndexerStatistics) SetNumberOfGrabs(v int32)

SetNumberOfGrabs gets a reference to the given int32 and assigns it to the NumberOfGrabs field.

func (*IndexerStatistics) SetNumberOfQueries

func (o *IndexerStatistics) SetNumberOfQueries(v int32)

SetNumberOfQueries gets a reference to the given int32 and assigns it to the NumberOfQueries field.

func (*IndexerStatistics) SetNumberOfRssQueries

func (o *IndexerStatistics) SetNumberOfRssQueries(v int32)

SetNumberOfRssQueries gets a reference to the given int32 and assigns it to the NumberOfRssQueries field.

func (*IndexerStatistics) UnsetIndexerName

func (o *IndexerStatistics) UnsetIndexerName()

UnsetIndexerName ensures that no value is present for IndexerName, not even an explicit nil

type IndexerStatsApiService

type IndexerStatsApiService service

IndexerStatsApiService IndexerStatsApi service

func (*IndexerStatsApiService) GetIndexerStats

GetIndexerStats Method for GetIndexerStats

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

func (*IndexerStatsApiService) GetIndexerStatsExecute

Execute executes the request

@return IndexerStatsResource

type IndexerStatsResource

type IndexerStatsResource struct {
	Id         *int32                 `json:"id,omitempty"`
	Indexers   []*IndexerStatistics   `json:"indexers,omitempty"`
	UserAgents []*UserAgentStatistics `json:"userAgents,omitempty"`
	Hosts      []*HostStatistics      `json:"hosts,omitempty"`
}

IndexerStatsResource struct for IndexerStatsResource

func NewIndexerStatsResource

func NewIndexerStatsResource() *IndexerStatsResource

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

func NewIndexerStatsResourceWithDefaults

func NewIndexerStatsResourceWithDefaults() *IndexerStatsResource

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

func (*IndexerStatsResource) GetHosts

func (o *IndexerStatsResource) GetHosts() []*HostStatistics

GetHosts returns the Hosts field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerStatsResource) GetHostsOk

func (o *IndexerStatsResource) GetHostsOk() ([]*HostStatistics, bool)

GetHostsOk returns a tuple with the Hosts 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 (*IndexerStatsResource) GetId

func (o *IndexerStatsResource) GetId() int32

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

func (*IndexerStatsResource) GetIdOk

func (o *IndexerStatsResource) 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 (*IndexerStatsResource) GetIndexers

func (o *IndexerStatsResource) GetIndexers() []*IndexerStatistics

GetIndexers returns the Indexers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerStatsResource) GetIndexersOk

func (o *IndexerStatsResource) GetIndexersOk() ([]*IndexerStatistics, bool)

GetIndexersOk returns a tuple with the Indexers 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 (*IndexerStatsResource) GetUserAgents

func (o *IndexerStatsResource) GetUserAgents() []*UserAgentStatistics

GetUserAgents returns the UserAgents field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerStatsResource) GetUserAgentsOk

func (o *IndexerStatsResource) GetUserAgentsOk() ([]*UserAgentStatistics, bool)

GetUserAgentsOk returns a tuple with the UserAgents 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 (*IndexerStatsResource) HasHosts

func (o *IndexerStatsResource) HasHosts() bool

HasHosts returns a boolean if a field has been set.

func (*IndexerStatsResource) HasId

func (o *IndexerStatsResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*IndexerStatsResource) HasIndexers

func (o *IndexerStatsResource) HasIndexers() bool

HasIndexers returns a boolean if a field has been set.

func (*IndexerStatsResource) HasUserAgents

func (o *IndexerStatsResource) HasUserAgents() bool

HasUserAgents returns a boolean if a field has been set.

func (IndexerStatsResource) MarshalJSON

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

func (*IndexerStatsResource) SetHosts

func (o *IndexerStatsResource) SetHosts(v []*HostStatistics)

SetHosts gets a reference to the given []HostStatistics and assigns it to the Hosts field.

func (*IndexerStatsResource) SetId

func (o *IndexerStatsResource) SetId(v int32)

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

func (*IndexerStatsResource) SetIndexers

func (o *IndexerStatsResource) SetIndexers(v []*IndexerStatistics)

SetIndexers gets a reference to the given []IndexerStatistics and assigns it to the Indexers field.

func (*IndexerStatsResource) SetUserAgents

func (o *IndexerStatsResource) SetUserAgents(v []*UserAgentStatistics)

SetUserAgents gets a reference to the given []UserAgentStatistics and assigns it to the UserAgents field.

type IndexerStatusApiService

type IndexerStatusApiService service

IndexerStatusApiService IndexerStatusApi service

func (*IndexerStatusApiService) GetIndexerStatusById

GetIndexerStatusById Method for GetIndexerStatusById

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

func (*IndexerStatusApiService) GetIndexerStatusByIdExecute

Execute executes the request

@return IndexerStatusResource

func (*IndexerStatusApiService) ListIndexerStatus

ListIndexerStatus Method for ListIndexerStatus

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

func (*IndexerStatusApiService) ListIndexerStatusExecute

Execute executes the request

@return []IndexerStatusResource

type IndexerStatusResource

type IndexerStatusResource struct {
	Id           *int32       `json:"id,omitempty"`
	IndexerId    *int32       `json:"indexerId,omitempty"`
	DisabledTill NullableTime `json:"disabledTill,omitempty"`
}

IndexerStatusResource struct for IndexerStatusResource

func NewIndexerStatusResource

func NewIndexerStatusResource() *IndexerStatusResource

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

func NewIndexerStatusResourceWithDefaults

func NewIndexerStatusResourceWithDefaults() *IndexerStatusResource

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

func (*IndexerStatusResource) GetDisabledTill

func (o *IndexerStatusResource) GetDisabledTill() time.Time

GetDisabledTill returns the DisabledTill field value if set, zero value otherwise (both if not set or set to explicit null).

func (*IndexerStatusResource) GetDisabledTillOk

func (o *IndexerStatusResource) GetDisabledTillOk() (*time.Time, bool)

GetDisabledTillOk returns a tuple with the DisabledTill 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 (*IndexerStatusResource) GetId

func (o *IndexerStatusResource) GetId() int32

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

func (*IndexerStatusResource) GetIdOk

func (o *IndexerStatusResource) 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 (*IndexerStatusResource) GetIndexerId

func (o *IndexerStatusResource) GetIndexerId() int32

GetIndexerId returns the IndexerId field value if set, zero value otherwise.

func (*IndexerStatusResource) GetIndexerIdOk

func (o *IndexerStatusResource) GetIndexerIdOk() (*int32, bool)

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

func (*IndexerStatusResource) HasDisabledTill

func (o *IndexerStatusResource) HasDisabledTill() bool

HasDisabledTill returns a boolean if a field has been set.

func (*IndexerStatusResource) HasId

func (o *IndexerStatusResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*IndexerStatusResource) HasIndexerId

func (o *IndexerStatusResource) HasIndexerId() bool

HasIndexerId returns a boolean if a field has been set.

func (IndexerStatusResource) MarshalJSON

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

func (*IndexerStatusResource) SetDisabledTill

func (o *IndexerStatusResource) SetDisabledTill(v time.Time)

SetDisabledTill gets a reference to the given NullableTime and assigns it to the DisabledTill field.

func (*IndexerStatusResource) SetDisabledTillNil

func (o *IndexerStatusResource) SetDisabledTillNil()

SetDisabledTillNil sets the value for DisabledTill to be an explicit nil

func (*IndexerStatusResource) SetId

func (o *IndexerStatusResource) SetId(v int32)

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

func (*IndexerStatusResource) SetIndexerId

func (o *IndexerStatusResource) SetIndexerId(v int32)

SetIndexerId gets a reference to the given int32 and assigns it to the IndexerId field.

func (*IndexerStatusResource) UnsetDisabledTill

func (o *IndexerStatusResource) UnsetDisabledTill()

UnsetDisabledTill ensures that no value is present for DisabledTill, not even an explicit nil

type InitializeJsApiService

type InitializeJsApiService service

InitializeJsApiService InitializeJsApi service

func (*InitializeJsApiService) GetInitializeJs

GetInitializeJs Method for GetInitializeJs

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

func (*InitializeJsApiService) GetInitializeJsExecute

func (a *InitializeJsApiService) GetInitializeJsExecute(r ApiGetInitializeJsRequest) (*http.Response, error)

Execute executes the request

type LocalizationApiService

type LocalizationApiService service

LocalizationApiService LocalizationApi service

func (*LocalizationApiService) GetLocalization

GetLocalization Method for GetLocalization

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

func (*LocalizationApiService) GetLocalizationExecute

func (a *LocalizationApiService) GetLocalizationExecute(r ApiGetLocalizationRequest) (*http.Response, error)

Execute executes the request

func (*LocalizationApiService) ListLocalizationOptions

ListLocalizationOptions Method for ListLocalizationOptions

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

func (*LocalizationApiService) ListLocalizationOptionsExecute

Execute executes the request

@return []LocalizationOption

type LocalizationOption

type LocalizationOption struct {
	Name  NullableString `json:"name,omitempty"`
	Value NullableString `json:"value,omitempty"`
}

LocalizationOption struct for LocalizationOption

func NewLocalizationOption

func NewLocalizationOption() *LocalizationOption

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

func NewLocalizationOptionWithDefaults

func NewLocalizationOptionWithDefaults() *LocalizationOption

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

func (*LocalizationOption) GetName

func (o *LocalizationOption) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LocalizationOption) GetNameOk

func (o *LocalizationOption) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LocalizationOption) GetValue

func (o *LocalizationOption) GetValue() string

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LocalizationOption) GetValueOk

func (o *LocalizationOption) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LocalizationOption) HasName

func (o *LocalizationOption) HasName() bool

HasName returns a boolean if a field has been set.

func (*LocalizationOption) HasValue

func (o *LocalizationOption) HasValue() bool

HasValue returns a boolean if a field has been set.

func (LocalizationOption) MarshalJSON

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

func (*LocalizationOption) SetName

func (o *LocalizationOption) SetName(v string)

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

func (*LocalizationOption) SetNameNil

func (o *LocalizationOption) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*LocalizationOption) SetValue

func (o *LocalizationOption) SetValue(v string)

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

func (*LocalizationOption) SetValueNil

func (o *LocalizationOption) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*LocalizationOption) UnsetName

func (o *LocalizationOption) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*LocalizationOption) UnsetValue

func (o *LocalizationOption) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type LogApiService

type LogApiService service

LogApiService LogApi service

func (*LogApiService) GetLog

GetLog Method for GetLog

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

func (*LogApiService) GetLogExecute

Execute executes the request

@return LogResourcePagingResource

type LogFileApiService

type LogFileApiService service

LogFileApiService LogFileApi service

func (*LogFileApiService) GetLogFileByFilename

func (a *LogFileApiService) GetLogFileByFilename(ctx context.Context, filename string) ApiGetLogFileByFilenameRequest

GetLogFileByFilename Method for GetLogFileByFilename

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

func (*LogFileApiService) GetLogFileByFilenameExecute

func (a *LogFileApiService) GetLogFileByFilenameExecute(r ApiGetLogFileByFilenameRequest) (*http.Response, error)

Execute executes the request

func (*LogFileApiService) ListLogFile

ListLogFile Method for ListLogFile

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

func (*LogFileApiService) ListLogFileExecute

func (a *LogFileApiService) ListLogFileExecute(r ApiListLogFileRequest) ([]*LogFileResource, *http.Response, error)

Execute executes the request

@return []LogFileResource

type LogFileResource

type LogFileResource struct {
	Id            *int32         `json:"id,omitempty"`
	Filename      NullableString `json:"filename,omitempty"`
	LastWriteTime *time.Time     `json:"lastWriteTime,omitempty"`
	ContentsUrl   NullableString `json:"contentsUrl,omitempty"`
	DownloadUrl   NullableString `json:"downloadUrl,omitempty"`
}

LogFileResource struct for LogFileResource

func NewLogFileResource

func NewLogFileResource() *LogFileResource

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

func NewLogFileResourceWithDefaults

func NewLogFileResourceWithDefaults() *LogFileResource

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

func (*LogFileResource) GetContentsUrl

func (o *LogFileResource) GetContentsUrl() string

GetContentsUrl returns the ContentsUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogFileResource) GetContentsUrlOk

func (o *LogFileResource) GetContentsUrlOk() (*string, bool)

GetContentsUrlOk returns a tuple with the ContentsUrl 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 (*LogFileResource) GetDownloadUrl

func (o *LogFileResource) GetDownloadUrl() string

GetDownloadUrl returns the DownloadUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogFileResource) GetDownloadUrlOk

func (o *LogFileResource) GetDownloadUrlOk() (*string, bool)

GetDownloadUrlOk returns a tuple with the DownloadUrl 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 (*LogFileResource) GetFilename

func (o *LogFileResource) GetFilename() string

GetFilename returns the Filename field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogFileResource) GetFilenameOk

func (o *LogFileResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LogFileResource) GetId

func (o *LogFileResource) GetId() int32

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

func (*LogFileResource) GetIdOk

func (o *LogFileResource) 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 (*LogFileResource) GetLastWriteTime

func (o *LogFileResource) GetLastWriteTime() time.Time

GetLastWriteTime returns the LastWriteTime field value if set, zero value otherwise.

func (*LogFileResource) GetLastWriteTimeOk

func (o *LogFileResource) GetLastWriteTimeOk() (*time.Time, bool)

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

func (*LogFileResource) HasContentsUrl

func (o *LogFileResource) HasContentsUrl() bool

HasContentsUrl returns a boolean if a field has been set.

func (*LogFileResource) HasDownloadUrl

func (o *LogFileResource) HasDownloadUrl() bool

HasDownloadUrl returns a boolean if a field has been set.

func (*LogFileResource) HasFilename

func (o *LogFileResource) HasFilename() bool

HasFilename returns a boolean if a field has been set.

func (*LogFileResource) HasId

func (o *LogFileResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*LogFileResource) HasLastWriteTime

func (o *LogFileResource) HasLastWriteTime() bool

HasLastWriteTime returns a boolean if a field has been set.

func (LogFileResource) MarshalJSON

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

func (*LogFileResource) SetContentsUrl

func (o *LogFileResource) SetContentsUrl(v string)

SetContentsUrl gets a reference to the given NullableString and assigns it to the ContentsUrl field.

func (*LogFileResource) SetContentsUrlNil

func (o *LogFileResource) SetContentsUrlNil()

SetContentsUrlNil sets the value for ContentsUrl to be an explicit nil

func (*LogFileResource) SetDownloadUrl

func (o *LogFileResource) SetDownloadUrl(v string)

SetDownloadUrl gets a reference to the given NullableString and assigns it to the DownloadUrl field.

func (*LogFileResource) SetDownloadUrlNil

func (o *LogFileResource) SetDownloadUrlNil()

SetDownloadUrlNil sets the value for DownloadUrl to be an explicit nil

func (*LogFileResource) SetFilename

func (o *LogFileResource) SetFilename(v string)

SetFilename gets a reference to the given NullableString and assigns it to the Filename field.

func (*LogFileResource) SetFilenameNil

func (o *LogFileResource) SetFilenameNil()

SetFilenameNil sets the value for Filename to be an explicit nil

func (*LogFileResource) SetId

func (o *LogFileResource) SetId(v int32)

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

func (*LogFileResource) SetLastWriteTime

func (o *LogFileResource) SetLastWriteTime(v time.Time)

SetLastWriteTime gets a reference to the given time.Time and assigns it to the LastWriteTime field.

func (*LogFileResource) UnsetContentsUrl

func (o *LogFileResource) UnsetContentsUrl()

UnsetContentsUrl ensures that no value is present for ContentsUrl, not even an explicit nil

func (*LogFileResource) UnsetDownloadUrl

func (o *LogFileResource) UnsetDownloadUrl()

UnsetDownloadUrl ensures that no value is present for DownloadUrl, not even an explicit nil

func (*LogFileResource) UnsetFilename

func (o *LogFileResource) UnsetFilename()

UnsetFilename ensures that no value is present for Filename, not even an explicit nil

type LogResource

type LogResource struct {
	Id            *int32         `json:"id,omitempty"`
	Time          *time.Time     `json:"time,omitempty"`
	Exception     NullableString `json:"exception,omitempty"`
	ExceptionType NullableString `json:"exceptionType,omitempty"`
	Level         NullableString `json:"level,omitempty"`
	Logger        NullableString `json:"logger,omitempty"`
	Message       NullableString `json:"message,omitempty"`
	Method        NullableString `json:"method,omitempty"`
}

LogResource struct for LogResource

func NewLogResource

func NewLogResource() *LogResource

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

func NewLogResourceWithDefaults

func NewLogResourceWithDefaults() *LogResource

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

func (*LogResource) GetException

func (o *LogResource) GetException() string

GetException returns the Exception field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogResource) GetExceptionOk

func (o *LogResource) GetExceptionOk() (*string, bool)

GetExceptionOk returns a tuple with the Exception 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 (*LogResource) GetExceptionType

func (o *LogResource) GetExceptionType() string

GetExceptionType returns the ExceptionType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogResource) GetExceptionTypeOk

func (o *LogResource) GetExceptionTypeOk() (*string, bool)

GetExceptionTypeOk returns a tuple with the ExceptionType 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 (*LogResource) GetId

func (o *LogResource) GetId() int32

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

func (*LogResource) GetIdOk

func (o *LogResource) 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 (*LogResource) GetLevel

func (o *LogResource) GetLevel() string

GetLevel returns the Level field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogResource) GetLevelOk

func (o *LogResource) GetLevelOk() (*string, bool)

GetLevelOk returns a tuple with the Level 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 (*LogResource) GetLogger

func (o *LogResource) GetLogger() string

GetLogger returns the Logger field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogResource) GetLoggerOk

func (o *LogResource) GetLoggerOk() (*string, bool)

GetLoggerOk returns a tuple with the Logger 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 (*LogResource) GetMessage

func (o *LogResource) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogResource) GetMessageOk

func (o *LogResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LogResource) GetMethod

func (o *LogResource) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogResource) GetMethodOk

func (o *LogResource) GetMethodOk() (*string, bool)

GetMethodOk returns a tuple with the Method 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 (*LogResource) GetTime

func (o *LogResource) GetTime() time.Time

GetTime returns the Time field value if set, zero value otherwise.

func (*LogResource) GetTimeOk

func (o *LogResource) GetTimeOk() (*time.Time, bool)

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 (*LogResource) HasException

func (o *LogResource) HasException() bool

HasException returns a boolean if a field has been set.

func (*LogResource) HasExceptionType

func (o *LogResource) HasExceptionType() bool

HasExceptionType returns a boolean if a field has been set.

func (*LogResource) HasId

func (o *LogResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*LogResource) HasLevel

func (o *LogResource) HasLevel() bool

HasLevel returns a boolean if a field has been set.

func (*LogResource) HasLogger

func (o *LogResource) HasLogger() bool

HasLogger returns a boolean if a field has been set.

func (*LogResource) HasMessage

func (o *LogResource) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*LogResource) HasMethod

func (o *LogResource) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*LogResource) HasTime

func (o *LogResource) HasTime() bool

HasTime returns a boolean if a field has been set.

func (LogResource) MarshalJSON

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

func (*LogResource) SetException

func (o *LogResource) SetException(v string)

SetException gets a reference to the given NullableString and assigns it to the Exception field.

func (*LogResource) SetExceptionNil

func (o *LogResource) SetExceptionNil()

SetExceptionNil sets the value for Exception to be an explicit nil

func (*LogResource) SetExceptionType

func (o *LogResource) SetExceptionType(v string)

SetExceptionType gets a reference to the given NullableString and assigns it to the ExceptionType field.

func (*LogResource) SetExceptionTypeNil

func (o *LogResource) SetExceptionTypeNil()

SetExceptionTypeNil sets the value for ExceptionType to be an explicit nil

func (*LogResource) SetId

func (o *LogResource) SetId(v int32)

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

func (*LogResource) SetLevel

func (o *LogResource) SetLevel(v string)

SetLevel gets a reference to the given NullableString and assigns it to the Level field.

func (*LogResource) SetLevelNil

func (o *LogResource) SetLevelNil()

SetLevelNil sets the value for Level to be an explicit nil

func (*LogResource) SetLogger

func (o *LogResource) SetLogger(v string)

SetLogger gets a reference to the given NullableString and assigns it to the Logger field.

func (*LogResource) SetLoggerNil

func (o *LogResource) SetLoggerNil()

SetLoggerNil sets the value for Logger to be an explicit nil

func (*LogResource) SetMessage

func (o *LogResource) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*LogResource) SetMessageNil

func (o *LogResource) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*LogResource) SetMethod

func (o *LogResource) SetMethod(v string)

SetMethod gets a reference to the given NullableString and assigns it to the Method field.

func (*LogResource) SetMethodNil

func (o *LogResource) SetMethodNil()

SetMethodNil sets the value for Method to be an explicit nil

func (*LogResource) SetTime

func (o *LogResource) SetTime(v time.Time)

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

func (*LogResource) UnsetException

func (o *LogResource) UnsetException()

UnsetException ensures that no value is present for Exception, not even an explicit nil

func (*LogResource) UnsetExceptionType

func (o *LogResource) UnsetExceptionType()

UnsetExceptionType ensures that no value is present for ExceptionType, not even an explicit nil

func (*LogResource) UnsetLevel

func (o *LogResource) UnsetLevel()

UnsetLevel ensures that no value is present for Level, not even an explicit nil

func (*LogResource) UnsetLogger

func (o *LogResource) UnsetLogger()

UnsetLogger ensures that no value is present for Logger, not even an explicit nil

func (*LogResource) UnsetMessage

func (o *LogResource) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

func (*LogResource) UnsetMethod

func (o *LogResource) UnsetMethod()

UnsetMethod ensures that no value is present for Method, not even an explicit nil

type LogResourcePagingResource

type LogResourcePagingResource struct {
	Page          *int32                  `json:"page,omitempty"`
	PageSize      *int32                  `json:"pageSize,omitempty"`
	SortKey       NullableString          `json:"sortKey,omitempty"`
	SortDirection *SortDirection          `json:"sortDirection,omitempty"`
	Filters       []*PagingResourceFilter `json:"filters,omitempty"`
	TotalRecords  *int32                  `json:"totalRecords,omitempty"`
	Records       []*LogResource          `json:"records,omitempty"`
}

LogResourcePagingResource struct for LogResourcePagingResource

func NewLogResourcePagingResource

func NewLogResourcePagingResource() *LogResourcePagingResource

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

func NewLogResourcePagingResourceWithDefaults

func NewLogResourcePagingResourceWithDefaults() *LogResourcePagingResource

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

func (*LogResourcePagingResource) GetFilters

GetFilters returns the Filters field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogResourcePagingResource) GetFiltersOk

func (o *LogResourcePagingResource) GetFiltersOk() ([]*PagingResourceFilter, bool)

GetFiltersOk returns a tuple with the Filters 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 (*LogResourcePagingResource) GetPage

func (o *LogResourcePagingResource) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*LogResourcePagingResource) GetPageOk

func (o *LogResourcePagingResource) GetPageOk() (*int32, bool)

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

func (*LogResourcePagingResource) GetPageSize

func (o *LogResourcePagingResource) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*LogResourcePagingResource) GetPageSizeOk

func (o *LogResourcePagingResource) GetPageSizeOk() (*int32, bool)

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

func (*LogResourcePagingResource) GetRecords

func (o *LogResourcePagingResource) GetRecords() []*LogResource

GetRecords returns the Records field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogResourcePagingResource) GetRecordsOk

func (o *LogResourcePagingResource) GetRecordsOk() ([]*LogResource, bool)

GetRecordsOk returns a tuple with the Records 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 (*LogResourcePagingResource) GetSortDirection

func (o *LogResourcePagingResource) GetSortDirection() SortDirection

GetSortDirection returns the SortDirection field value if set, zero value otherwise.

func (*LogResourcePagingResource) GetSortDirectionOk

func (o *LogResourcePagingResource) GetSortDirectionOk() (*SortDirection, bool)

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

func (*LogResourcePagingResource) GetSortKey

func (o *LogResourcePagingResource) GetSortKey() string

GetSortKey returns the SortKey field value if set, zero value otherwise (both if not set or set to explicit null).

func (*LogResourcePagingResource) GetSortKeyOk

func (o *LogResourcePagingResource) GetSortKeyOk() (*string, bool)

GetSortKeyOk returns a tuple with the SortKey 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 (*LogResourcePagingResource) GetTotalRecords

func (o *LogResourcePagingResource) GetTotalRecords() int32

GetTotalRecords returns the TotalRecords field value if set, zero value otherwise.

func (*LogResourcePagingResource) GetTotalRecordsOk

func (o *LogResourcePagingResource) GetTotalRecordsOk() (*int32, bool)

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

func (*LogResourcePagingResource) HasFilters

func (o *LogResourcePagingResource) HasFilters() bool

HasFilters returns a boolean if a field has been set.

func (*LogResourcePagingResource) HasPage

func (o *LogResourcePagingResource) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*LogResourcePagingResource) HasPageSize

func (o *LogResourcePagingResource) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*LogResourcePagingResource) HasRecords

func (o *LogResourcePagingResource) HasRecords() bool

HasRecords returns a boolean if a field has been set.

func (*LogResourcePagingResource) HasSortDirection

func (o *LogResourcePagingResource) HasSortDirection() bool

HasSortDirection returns a boolean if a field has been set.

func (*LogResourcePagingResource) HasSortKey

func (o *LogResourcePagingResource) HasSortKey() bool

HasSortKey returns a boolean if a field has been set.

func (*LogResourcePagingResource) HasTotalRecords

func (o *LogResourcePagingResource) HasTotalRecords() bool

HasTotalRecords returns a boolean if a field has been set.

func (LogResourcePagingResource) MarshalJSON

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

func (*LogResourcePagingResource) SetFilters

func (o *LogResourcePagingResource) SetFilters(v []*PagingResourceFilter)

SetFilters gets a reference to the given []PagingResourceFilter and assigns it to the Filters field.

func (*LogResourcePagingResource) SetPage

func (o *LogResourcePagingResource) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*LogResourcePagingResource) SetPageSize

func (o *LogResourcePagingResource) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*LogResourcePagingResource) SetRecords

func (o *LogResourcePagingResource) SetRecords(v []*LogResource)

SetRecords gets a reference to the given []LogResource and assigns it to the Records field.

func (*LogResourcePagingResource) SetSortDirection

func (o *LogResourcePagingResource) SetSortDirection(v SortDirection)

SetSortDirection gets a reference to the given SortDirection and assigns it to the SortDirection field.

func (*LogResourcePagingResource) SetSortKey

func (o *LogResourcePagingResource) SetSortKey(v string)

SetSortKey gets a reference to the given NullableString and assigns it to the SortKey field.

func (*LogResourcePagingResource) SetSortKeyNil

func (o *LogResourcePagingResource) SetSortKeyNil()

SetSortKeyNil sets the value for SortKey to be an explicit nil

func (*LogResourcePagingResource) SetTotalRecords

func (o *LogResourcePagingResource) SetTotalRecords(v int32)

SetTotalRecords gets a reference to the given int32 and assigns it to the TotalRecords field.

func (*LogResourcePagingResource) UnsetSortKey

func (o *LogResourcePagingResource) UnsetSortKey()

UnsetSortKey ensures that no value is present for SortKey, not even an explicit nil

type MovieSearchParam

type MovieSearchParam string

MovieSearchParam the model 'MovieSearchParam'

const (
	MOVIESEARCHPARAM_Q          MovieSearchParam = "q"
	MOVIESEARCHPARAM_IMDB_ID    MovieSearchParam = "imdbId"
	MOVIESEARCHPARAM_TMDB_ID    MovieSearchParam = "tmdbId"
	MOVIESEARCHPARAM_IMDB_TITLE MovieSearchParam = "imdbTitle"
	MOVIESEARCHPARAM_IMDB_YEAR  MovieSearchParam = "imdbYear"
	MOVIESEARCHPARAM_TRAKT_ID   MovieSearchParam = "traktId"
	MOVIESEARCHPARAM_GENRE      MovieSearchParam = "genre"
	MOVIESEARCHPARAM_DOUBAN_ID  MovieSearchParam = "doubanId"
	MOVIESEARCHPARAM_YEAR       MovieSearchParam = "year"
)

List of MovieSearchParam

func NewMovieSearchParamFromValue

func NewMovieSearchParamFromValue(v string) (*MovieSearchParam, error)

NewMovieSearchParamFromValue returns a pointer to a valid MovieSearchParam for the value passed as argument, or an error if the value passed is not allowed by the enum

func (MovieSearchParam) IsValid

func (v MovieSearchParam) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (MovieSearchParam) Ptr

Ptr returns reference to MovieSearchParam value

func (*MovieSearchParam) UnmarshalJSON

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

type MusicSearchParam

type MusicSearchParam string

MusicSearchParam the model 'MusicSearchParam'

const (
	MUSICSEARCHPARAM_Q      MusicSearchParam = "q"
	MUSICSEARCHPARAM_ALBUM  MusicSearchParam = "album"
	MUSICSEARCHPARAM_ARTIST MusicSearchParam = "artist"
	MUSICSEARCHPARAM_LABEL  MusicSearchParam = "label"
	MUSICSEARCHPARAM_YEAR   MusicSearchParam = "year"
	MUSICSEARCHPARAM_GENRE  MusicSearchParam = "genre"
	MUSICSEARCHPARAM_TRACK  MusicSearchParam = "track"
)

List of MusicSearchParam

func NewMusicSearchParamFromValue

func NewMusicSearchParamFromValue(v string) (*MusicSearchParam, error)

NewMusicSearchParamFromValue returns a pointer to a valid MusicSearchParam for the value passed as argument, or an error if the value passed is not allowed by the enum

func (MusicSearchParam) IsValid

func (v MusicSearchParam) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (MusicSearchParam) Ptr

Ptr returns reference to MusicSearchParam value

func (*MusicSearchParam) UnmarshalJSON

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

type NewznabApiService

type NewznabApiService service

NewznabApiService NewznabApi service

func (*NewznabApiService) GetIndexeridDownload

func (a *NewznabApiService) GetIndexeridDownload(ctx context.Context, id int32) ApiGetIndexeridDownloadRequest

GetIndexeridDownload Method for GetIndexeridDownload

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

func (*NewznabApiService) GetIndexeridDownloadExecute

func (a *NewznabApiService) GetIndexeridDownloadExecute(r ApiGetIndexeridDownloadRequest) (*http.Response, error)

Execute executes the request

func (*NewznabApiService) GetIndexeridNewznab

func (a *NewznabApiService) GetIndexeridNewznab(ctx context.Context, id int32) ApiGetIndexeridNewznabRequest

GetIndexeridNewznab Method for GetIndexeridNewznab

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

func (*NewznabApiService) GetIndexeridNewznabExecute

func (a *NewznabApiService) GetIndexeridNewznabExecute(r ApiGetIndexeridNewznabRequest) (*http.Response, error)

Execute executes the request

func (*NewznabApiService) GetidApi

GetidApi Method for GetidApi

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

func (*NewznabApiService) GetidApiExecute

func (a *NewznabApiService) GetidApiExecute(r ApiGetidApiRequest) (*http.Response, error)

Execute executes the request

func (*NewznabApiService) GetidDownload

GetidDownload Method for GetidDownload

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

func (*NewznabApiService) GetidDownloadExecute

func (a *NewznabApiService) GetidDownloadExecute(r ApiGetidDownloadRequest) (*http.Response, error)

Execute executes the request

type NotificationApiService

type NotificationApiService service

NotificationApiService NotificationApi service

func (*NotificationApiService) CreateNotification

CreateNotification Method for CreateNotification

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

func (*NotificationApiService) CreateNotificationActionByName

func (a *NotificationApiService) CreateNotificationActionByName(ctx context.Context, name string) ApiCreateNotificationActionByNameRequest

CreateNotificationActionByName Method for CreateNotificationActionByName

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

func (*NotificationApiService) CreateNotificationActionByNameExecute

func (a *NotificationApiService) CreateNotificationActionByNameExecute(r ApiCreateNotificationActionByNameRequest) (*http.Response, error)

Execute executes the request

func (*NotificationApiService) CreateNotificationExecute

Execute executes the request

@return NotificationResource

func (*NotificationApiService) DeleteNotification

DeleteNotification Method for DeleteNotification

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

func (*NotificationApiService) DeleteNotificationExecute

func (a *NotificationApiService) DeleteNotificationExecute(r ApiDeleteNotificationRequest) (*http.Response, error)

Execute executes the request

func (*NotificationApiService) GetNotificationById

GetNotificationById Method for GetNotificationById

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

func (*NotificationApiService) GetNotificationByIdExecute

Execute executes the request

@return NotificationResource

func (*NotificationApiService) ListNotification

ListNotification Method for ListNotification

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

func (*NotificationApiService) ListNotificationExecute

Execute executes the request

@return []NotificationResource

func (*NotificationApiService) ListNotificationSchema

ListNotificationSchema Method for ListNotificationSchema

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

func (*NotificationApiService) ListNotificationSchemaExecute

Execute executes the request

@return []NotificationResource

func (*NotificationApiService) TestNotification

TestNotification Method for TestNotification

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

func (*NotificationApiService) TestNotificationExecute

func (a *NotificationApiService) TestNotificationExecute(r ApiTestNotificationRequest) (*http.Response, error)

Execute executes the request

func (*NotificationApiService) TestallNotification

TestallNotification Method for TestallNotification

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

func (*NotificationApiService) TestallNotificationExecute

func (a *NotificationApiService) TestallNotificationExecute(r ApiTestallNotificationRequest) (*http.Response, error)

Execute executes the request

func (*NotificationApiService) UpdateNotification

UpdateNotification Method for UpdateNotification

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

func (*NotificationApiService) UpdateNotificationExecute

Execute executes the request

@return NotificationResource

type NotificationResource

type NotificationResource struct {
	Id                          *int32                  `json:"id,omitempty"`
	Name                        NullableString          `json:"name,omitempty"`
	Fields                      []*Field                `json:"fields,omitempty"`
	ImplementationName          NullableString          `json:"implementationName,omitempty"`
	Implementation              NullableString          `json:"implementation,omitempty"`
	ConfigContract              NullableString          `json:"configContract,omitempty"`
	InfoLink                    NullableString          `json:"infoLink,omitempty"`
	Message                     *ProviderMessage        `json:"message,omitempty"`
	Tags                        []*int32                `json:"tags,omitempty"`
	Presets                     []*NotificationResource `json:"presets,omitempty"`
	Link                        NullableString          `json:"link,omitempty"`
	OnHealthIssue               *bool                   `json:"onHealthIssue,omitempty"`
	OnApplicationUpdate         *bool                   `json:"onApplicationUpdate,omitempty"`
	SupportsOnHealthIssue       *bool                   `json:"supportsOnHealthIssue,omitempty"`
	IncludeHealthWarnings       *bool                   `json:"includeHealthWarnings,omitempty"`
	SupportsOnApplicationUpdate *bool                   `json:"supportsOnApplicationUpdate,omitempty"`
	TestCommand                 NullableString          `json:"testCommand,omitempty"`
}

NotificationResource struct for NotificationResource

func NewNotificationResource

func NewNotificationResource() *NotificationResource

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

func NewNotificationResourceWithDefaults

func NewNotificationResourceWithDefaults() *NotificationResource

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

func (*NotificationResource) GetConfigContract

func (o *NotificationResource) GetConfigContract() string

GetConfigContract returns the ConfigContract field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NotificationResource) GetConfigContractOk

func (o *NotificationResource) GetConfigContractOk() (*string, bool)

GetConfigContractOk returns a tuple with the ConfigContract 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 (*NotificationResource) GetFields

func (o *NotificationResource) GetFields() []*Field

GetFields returns the Fields field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NotificationResource) GetFieldsOk

func (o *NotificationResource) GetFieldsOk() ([]*Field, bool)

GetFieldsOk returns a tuple with the Fields 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 (*NotificationResource) GetId

func (o *NotificationResource) GetId() int32

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

func (*NotificationResource) GetIdOk

func (o *NotificationResource) 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 (*NotificationResource) GetImplementation

func (o *NotificationResource) GetImplementation() string

GetImplementation returns the Implementation field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NotificationResource) GetImplementationName

func (o *NotificationResource) GetImplementationName() string

GetImplementationName returns the ImplementationName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NotificationResource) GetImplementationNameOk

func (o *NotificationResource) GetImplementationNameOk() (*string, bool)

GetImplementationNameOk returns a tuple with the ImplementationName 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 (*NotificationResource) GetImplementationOk

func (o *NotificationResource) GetImplementationOk() (*string, bool)

GetImplementationOk returns a tuple with the Implementation 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 (*NotificationResource) GetIncludeHealthWarnings

func (o *NotificationResource) GetIncludeHealthWarnings() bool

GetIncludeHealthWarnings returns the IncludeHealthWarnings field value if set, zero value otherwise.

func (*NotificationResource) GetIncludeHealthWarningsOk

func (o *NotificationResource) GetIncludeHealthWarningsOk() (*bool, bool)

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

func (o *NotificationResource) GetInfoLink() string

GetInfoLink returns the InfoLink field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NotificationResource) GetInfoLinkOk

func (o *NotificationResource) GetInfoLinkOk() (*string, bool)

GetInfoLinkOk returns a tuple with the InfoLink 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 (o *NotificationResource) GetLink() string

GetLink returns the Link field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NotificationResource) GetLinkOk

func (o *NotificationResource) GetLinkOk() (*string, bool)

GetLinkOk returns a tuple with the Link 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 (*NotificationResource) GetMessage

func (o *NotificationResource) GetMessage() ProviderMessage

GetMessage returns the Message field value if set, zero value otherwise.

func (*NotificationResource) GetMessageOk

func (o *NotificationResource) GetMessageOk() (*ProviderMessage, 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 (*NotificationResource) GetName

func (o *NotificationResource) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NotificationResource) GetNameOk

func (o *NotificationResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*NotificationResource) GetOnApplicationUpdate

func (o *NotificationResource) GetOnApplicationUpdate() bool

GetOnApplicationUpdate returns the OnApplicationUpdate field value if set, zero value otherwise.

func (*NotificationResource) GetOnApplicationUpdateOk

func (o *NotificationResource) GetOnApplicationUpdateOk() (*bool, bool)

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

func (*NotificationResource) GetOnHealthIssue

func (o *NotificationResource) GetOnHealthIssue() bool

GetOnHealthIssue returns the OnHealthIssue field value if set, zero value otherwise.

func (*NotificationResource) GetOnHealthIssueOk

func (o *NotificationResource) GetOnHealthIssueOk() (*bool, bool)

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

func (*NotificationResource) GetPresets

func (o *NotificationResource) GetPresets() []*NotificationResource

GetPresets returns the Presets field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NotificationResource) GetPresetsOk

func (o *NotificationResource) GetPresetsOk() ([]*NotificationResource, bool)

GetPresetsOk returns a tuple with the Presets 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 (*NotificationResource) GetSupportsOnApplicationUpdate

func (o *NotificationResource) GetSupportsOnApplicationUpdate() bool

GetSupportsOnApplicationUpdate returns the SupportsOnApplicationUpdate field value if set, zero value otherwise.

func (*NotificationResource) GetSupportsOnApplicationUpdateOk

func (o *NotificationResource) GetSupportsOnApplicationUpdateOk() (*bool, bool)

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

func (*NotificationResource) GetSupportsOnHealthIssue

func (o *NotificationResource) GetSupportsOnHealthIssue() bool

GetSupportsOnHealthIssue returns the SupportsOnHealthIssue field value if set, zero value otherwise.

func (*NotificationResource) GetSupportsOnHealthIssueOk

func (o *NotificationResource) GetSupportsOnHealthIssueOk() (*bool, bool)

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

func (*NotificationResource) GetTags

func (o *NotificationResource) GetTags() []*int32

GetTags returns the Tags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NotificationResource) GetTagsOk

func (o *NotificationResource) GetTagsOk() ([]*int32, bool)

GetTagsOk returns a tuple with the Tags 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 (*NotificationResource) GetTestCommand

func (o *NotificationResource) GetTestCommand() string

GetTestCommand returns the TestCommand field value if set, zero value otherwise (both if not set or set to explicit null).

func (*NotificationResource) GetTestCommandOk

func (o *NotificationResource) GetTestCommandOk() (*string, bool)

GetTestCommandOk returns a tuple with the TestCommand 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 (*NotificationResource) HasConfigContract

func (o *NotificationResource) HasConfigContract() bool

HasConfigContract returns a boolean if a field has been set.

func (*NotificationResource) HasFields

func (o *NotificationResource) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*NotificationResource) HasId

func (o *NotificationResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*NotificationResource) HasImplementation

func (o *NotificationResource) HasImplementation() bool

HasImplementation returns a boolean if a field has been set.

func (*NotificationResource) HasImplementationName

func (o *NotificationResource) HasImplementationName() bool

HasImplementationName returns a boolean if a field has been set.

func (*NotificationResource) HasIncludeHealthWarnings

func (o *NotificationResource) HasIncludeHealthWarnings() bool

HasIncludeHealthWarnings returns a boolean if a field has been set.

func (o *NotificationResource) HasInfoLink() bool

HasInfoLink returns a boolean if a field has been set.

func (o *NotificationResource) HasLink() bool

HasLink returns a boolean if a field has been set.

func (*NotificationResource) HasMessage

func (o *NotificationResource) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*NotificationResource) HasName

func (o *NotificationResource) HasName() bool

HasName returns a boolean if a field has been set.

func (*NotificationResource) HasOnApplicationUpdate

func (o *NotificationResource) HasOnApplicationUpdate() bool

HasOnApplicationUpdate returns a boolean if a field has been set.

func (*NotificationResource) HasOnHealthIssue

func (o *NotificationResource) HasOnHealthIssue() bool

HasOnHealthIssue returns a boolean if a field has been set.

func (*NotificationResource) HasPresets

func (o *NotificationResource) HasPresets() bool

HasPresets returns a boolean if a field has been set.

func (*NotificationResource) HasSupportsOnApplicationUpdate

func (o *NotificationResource) HasSupportsOnApplicationUpdate() bool

HasSupportsOnApplicationUpdate returns a boolean if a field has been set.

func (*NotificationResource) HasSupportsOnHealthIssue

func (o *NotificationResource) HasSupportsOnHealthIssue() bool

HasSupportsOnHealthIssue returns a boolean if a field has been set.

func (*NotificationResource) HasTags

func (o *NotificationResource) HasTags() bool

HasTags returns a boolean if a field has been set.

func (*NotificationResource) HasTestCommand

func (o *NotificationResource) HasTestCommand() bool

HasTestCommand returns a boolean if a field has been set.

func (NotificationResource) MarshalJSON

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

func (*NotificationResource) SetConfigContract

func (o *NotificationResource) SetConfigContract(v string)

SetConfigContract gets a reference to the given NullableString and assigns it to the ConfigContract field.

func (*NotificationResource) SetConfigContractNil

func (o *NotificationResource) SetConfigContractNil()

SetConfigContractNil sets the value for ConfigContract to be an explicit nil

func (*NotificationResource) SetFields

func (o *NotificationResource) SetFields(v []*Field)

SetFields gets a reference to the given []Field and assigns it to the Fields field.

func (*NotificationResource) SetId

func (o *NotificationResource) SetId(v int32)

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

func (*NotificationResource) SetImplementation

func (o *NotificationResource) SetImplementation(v string)

SetImplementation gets a reference to the given NullableString and assigns it to the Implementation field.

func (*NotificationResource) SetImplementationName

func (o *NotificationResource) SetImplementationName(v string)

SetImplementationName gets a reference to the given NullableString and assigns it to the ImplementationName field.

func (*NotificationResource) SetImplementationNameNil

func (o *NotificationResource) SetImplementationNameNil()

SetImplementationNameNil sets the value for ImplementationName to be an explicit nil

func (*NotificationResource) SetImplementationNil

func (o *NotificationResource) SetImplementationNil()

SetImplementationNil sets the value for Implementation to be an explicit nil

func (*NotificationResource) SetIncludeHealthWarnings

func (o *NotificationResource) SetIncludeHealthWarnings(v bool)

SetIncludeHealthWarnings gets a reference to the given bool and assigns it to the IncludeHealthWarnings field.

func (o *NotificationResource) SetInfoLink(v string)

SetInfoLink gets a reference to the given NullableString and assigns it to the InfoLink field.

func (*NotificationResource) SetInfoLinkNil

func (o *NotificationResource) SetInfoLinkNil()

SetInfoLinkNil sets the value for InfoLink to be an explicit nil

func (o *NotificationResource) SetLink(v string)

SetLink gets a reference to the given NullableString and assigns it to the Link field.

func (*NotificationResource) SetLinkNil

func (o *NotificationResource) SetLinkNil()

SetLinkNil sets the value for Link to be an explicit nil

func (*NotificationResource) SetMessage

func (o *NotificationResource) SetMessage(v ProviderMessage)

SetMessage gets a reference to the given ProviderMessage and assigns it to the Message field.

func (*NotificationResource) SetName

func (o *NotificationResource) SetName(v string)

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

func (*NotificationResource) SetNameNil

func (o *NotificationResource) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*NotificationResource) SetOnApplicationUpdate

func (o *NotificationResource) SetOnApplicationUpdate(v bool)

SetOnApplicationUpdate gets a reference to the given bool and assigns it to the OnApplicationUpdate field.

func (*NotificationResource) SetOnHealthIssue

func (o *NotificationResource) SetOnHealthIssue(v bool)

SetOnHealthIssue gets a reference to the given bool and assigns it to the OnHealthIssue field.

func (*NotificationResource) SetPresets

func (o *NotificationResource) SetPresets(v []*NotificationResource)

SetPresets gets a reference to the given []NotificationResource and assigns it to the Presets field.

func (*NotificationResource) SetSupportsOnApplicationUpdate

func (o *NotificationResource) SetSupportsOnApplicationUpdate(v bool)

SetSupportsOnApplicationUpdate gets a reference to the given bool and assigns it to the SupportsOnApplicationUpdate field.

func (*NotificationResource) SetSupportsOnHealthIssue

func (o *NotificationResource) SetSupportsOnHealthIssue(v bool)

SetSupportsOnHealthIssue gets a reference to the given bool and assigns it to the SupportsOnHealthIssue field.

func (*NotificationResource) SetTags

func (o *NotificationResource) SetTags(v []*int32)

SetTags gets a reference to the given []int32 and assigns it to the Tags field.

func (*NotificationResource) SetTestCommand

func (o *NotificationResource) SetTestCommand(v string)

SetTestCommand gets a reference to the given NullableString and assigns it to the TestCommand field.

func (*NotificationResource) SetTestCommandNil

func (o *NotificationResource) SetTestCommandNil()

SetTestCommandNil sets the value for TestCommand to be an explicit nil

func (*NotificationResource) UnsetConfigContract

func (o *NotificationResource) UnsetConfigContract()

UnsetConfigContract ensures that no value is present for ConfigContract, not even an explicit nil

func (*NotificationResource) UnsetImplementation

func (o *NotificationResource) UnsetImplementation()

UnsetImplementation ensures that no value is present for Implementation, not even an explicit nil

func (*NotificationResource) UnsetImplementationName

func (o *NotificationResource) UnsetImplementationName()

UnsetImplementationName ensures that no value is present for ImplementationName, not even an explicit nil

func (o *NotificationResource) UnsetInfoLink()

UnsetInfoLink ensures that no value is present for InfoLink, not even an explicit nil

func (o *NotificationResource) UnsetLink()

UnsetLink ensures that no value is present for Link, not even an explicit nil

func (*NotificationResource) UnsetName

func (o *NotificationResource) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*NotificationResource) UnsetTestCommand

func (o *NotificationResource) UnsetTestCommand()

UnsetTestCommand ensures that no value is present for TestCommand, not even an explicit nil

type NullableApiInfoResource

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

func NewNullableApiInfoResource

func NewNullableApiInfoResource(val *ApiInfoResource) *NullableApiInfoResource

func (NullableApiInfoResource) Get

func (NullableApiInfoResource) IsSet

func (v NullableApiInfoResource) IsSet() bool

func (NullableApiInfoResource) MarshalJSON

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

func (*NullableApiInfoResource) Set

func (*NullableApiInfoResource) UnmarshalJSON

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

func (*NullableApiInfoResource) Unset

func (v *NullableApiInfoResource) Unset()

type NullableAppProfileResource

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

func NewNullableAppProfileResource

func NewNullableAppProfileResource(val *AppProfileResource) *NullableAppProfileResource

func (NullableAppProfileResource) Get

func (NullableAppProfileResource) IsSet

func (v NullableAppProfileResource) IsSet() bool

func (NullableAppProfileResource) MarshalJSON

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

func (*NullableAppProfileResource) Set

func (*NullableAppProfileResource) UnmarshalJSON

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

func (*NullableAppProfileResource) Unset

func (v *NullableAppProfileResource) Unset()

type NullableApplicationResource

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

func NewNullableApplicationResource

func NewNullableApplicationResource(val *ApplicationResource) *NullableApplicationResource

func (NullableApplicationResource) Get

func (NullableApplicationResource) IsSet

func (NullableApplicationResource) MarshalJSON

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

func (*NullableApplicationResource) Set

func (*NullableApplicationResource) UnmarshalJSON

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

func (*NullableApplicationResource) Unset

func (v *NullableApplicationResource) Unset()

type NullableApplicationSyncLevel

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

func NewNullableApplicationSyncLevel

func NewNullableApplicationSyncLevel(val *ApplicationSyncLevel) *NullableApplicationSyncLevel

func (NullableApplicationSyncLevel) Get

func (NullableApplicationSyncLevel) IsSet

func (NullableApplicationSyncLevel) MarshalJSON

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

func (*NullableApplicationSyncLevel) Set

func (*NullableApplicationSyncLevel) UnmarshalJSON

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

func (*NullableApplicationSyncLevel) Unset

func (v *NullableApplicationSyncLevel) Unset()

type NullableApplyTags

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

func NewNullableApplyTags

func NewNullableApplyTags(val *ApplyTags) *NullableApplyTags

func (NullableApplyTags) Get

func (v NullableApplyTags) Get() *ApplyTags

func (NullableApplyTags) IsSet

func (v NullableApplyTags) IsSet() bool

func (NullableApplyTags) MarshalJSON

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

func (*NullableApplyTags) Set

func (v *NullableApplyTags) Set(val *ApplyTags)

func (*NullableApplyTags) UnmarshalJSON

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

func (*NullableApplyTags) Unset

func (v *NullableApplyTags) Unset()

type NullableAuthenticationRequiredType

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

func (NullableAuthenticationRequiredType) Get

func (NullableAuthenticationRequiredType) IsSet

func (NullableAuthenticationRequiredType) MarshalJSON

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

func (*NullableAuthenticationRequiredType) Set

func (*NullableAuthenticationRequiredType) UnmarshalJSON

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

func (*NullableAuthenticationRequiredType) Unset

type NullableAuthenticationType

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

func NewNullableAuthenticationType

func NewNullableAuthenticationType(val *AuthenticationType) *NullableAuthenticationType

func (NullableAuthenticationType) Get

func (NullableAuthenticationType) IsSet

func (v NullableAuthenticationType) IsSet() bool

func (NullableAuthenticationType) MarshalJSON

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

func (*NullableAuthenticationType) Set

func (*NullableAuthenticationType) UnmarshalJSON

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

func (*NullableAuthenticationType) Unset

func (v *NullableAuthenticationType) Unset()

type NullableBackupResource

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

func NewNullableBackupResource

func NewNullableBackupResource(val *BackupResource) *NullableBackupResource

func (NullableBackupResource) Get

func (NullableBackupResource) IsSet

func (v NullableBackupResource) IsSet() bool

func (NullableBackupResource) MarshalJSON

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

func (*NullableBackupResource) Set

func (*NullableBackupResource) UnmarshalJSON

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

func (*NullableBackupResource) Unset

func (v *NullableBackupResource) Unset()

type NullableBackupType

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

func NewNullableBackupType

func NewNullableBackupType(val *BackupType) *NullableBackupType

func (NullableBackupType) Get

func (v NullableBackupType) Get() *BackupType

func (NullableBackupType) IsSet

func (v NullableBackupType) IsSet() bool

func (NullableBackupType) MarshalJSON

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

func (*NullableBackupType) Set

func (v *NullableBackupType) Set(val *BackupType)

func (*NullableBackupType) UnmarshalJSON

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

func (*NullableBackupType) Unset

func (v *NullableBackupType) Unset()

type NullableBookSearchParam

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

func NewNullableBookSearchParam

func NewNullableBookSearchParam(val *BookSearchParam) *NullableBookSearchParam

func (NullableBookSearchParam) Get

func (NullableBookSearchParam) IsSet

func (v NullableBookSearchParam) IsSet() bool

func (NullableBookSearchParam) MarshalJSON

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

func (*NullableBookSearchParam) Set

func (*NullableBookSearchParam) UnmarshalJSON

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

func (*NullableBookSearchParam) Unset

func (v *NullableBookSearchParam) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCertificateValidationType

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

func (NullableCertificateValidationType) Get

func (NullableCertificateValidationType) IsSet

func (NullableCertificateValidationType) MarshalJSON

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

func (*NullableCertificateValidationType) Set

func (*NullableCertificateValidationType) UnmarshalJSON

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

func (*NullableCertificateValidationType) Unset

type NullableCommand

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

func NewNullableCommand

func NewNullableCommand(val *Command) *NullableCommand

func (NullableCommand) Get

func (v NullableCommand) Get() *Command

func (NullableCommand) IsSet

func (v NullableCommand) IsSet() bool

func (NullableCommand) MarshalJSON

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

func (*NullableCommand) Set

func (v *NullableCommand) Set(val *Command)

func (*NullableCommand) UnmarshalJSON

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

func (*NullableCommand) Unset

func (v *NullableCommand) Unset()

type NullableCommandPriority

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

func NewNullableCommandPriority

func NewNullableCommandPriority(val *CommandPriority) *NullableCommandPriority

func (NullableCommandPriority) Get

func (NullableCommandPriority) IsSet

func (v NullableCommandPriority) IsSet() bool

func (NullableCommandPriority) MarshalJSON

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

func (*NullableCommandPriority) Set

func (*NullableCommandPriority) UnmarshalJSON

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

func (*NullableCommandPriority) Unset

func (v *NullableCommandPriority) Unset()

type NullableCommandResource

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

func NewNullableCommandResource

func NewNullableCommandResource(val *CommandResource) *NullableCommandResource

func (NullableCommandResource) Get

func (NullableCommandResource) IsSet

func (v NullableCommandResource) IsSet() bool

func (NullableCommandResource) MarshalJSON

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

func (*NullableCommandResource) Set

func (*NullableCommandResource) UnmarshalJSON

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

func (*NullableCommandResource) Unset

func (v *NullableCommandResource) Unset()

type NullableCommandStatus

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

func NewNullableCommandStatus

func NewNullableCommandStatus(val *CommandStatus) *NullableCommandStatus

func (NullableCommandStatus) Get

func (NullableCommandStatus) IsSet

func (v NullableCommandStatus) IsSet() bool

func (NullableCommandStatus) MarshalJSON

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

func (*NullableCommandStatus) Set

func (v *NullableCommandStatus) Set(val *CommandStatus)

func (*NullableCommandStatus) UnmarshalJSON

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

func (*NullableCommandStatus) Unset

func (v *NullableCommandStatus) Unset()

type NullableCommandTrigger

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

func NewNullableCommandTrigger

func NewNullableCommandTrigger(val *CommandTrigger) *NullableCommandTrigger

func (NullableCommandTrigger) Get

func (NullableCommandTrigger) IsSet

func (v NullableCommandTrigger) IsSet() bool

func (NullableCommandTrigger) MarshalJSON

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

func (*NullableCommandTrigger) Set

func (*NullableCommandTrigger) UnmarshalJSON

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

func (*NullableCommandTrigger) Unset

func (v *NullableCommandTrigger) Unset()

type NullableCustomFilterResource

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

func NewNullableCustomFilterResource

func NewNullableCustomFilterResource(val *CustomFilterResource) *NullableCustomFilterResource

func (NullableCustomFilterResource) Get

func (NullableCustomFilterResource) IsSet

func (NullableCustomFilterResource) MarshalJSON

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

func (*NullableCustomFilterResource) Set

func (*NullableCustomFilterResource) UnmarshalJSON

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

func (*NullableCustomFilterResource) Unset

func (v *NullableCustomFilterResource) Unset()

type NullableDevelopmentConfigResource

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

func (NullableDevelopmentConfigResource) Get

func (NullableDevelopmentConfigResource) IsSet

func (NullableDevelopmentConfigResource) MarshalJSON

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

func (*NullableDevelopmentConfigResource) Set

func (*NullableDevelopmentConfigResource) UnmarshalJSON

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

func (*NullableDevelopmentConfigResource) Unset

type NullableDownloadClientCategory

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

func (NullableDownloadClientCategory) Get

func (NullableDownloadClientCategory) IsSet

func (NullableDownloadClientCategory) MarshalJSON

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

func (*NullableDownloadClientCategory) Set

func (*NullableDownloadClientCategory) UnmarshalJSON

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

func (*NullableDownloadClientCategory) Unset

func (v *NullableDownloadClientCategory) Unset()

type NullableDownloadClientConfigResource

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

func (NullableDownloadClientConfigResource) Get

func (NullableDownloadClientConfigResource) IsSet

func (NullableDownloadClientConfigResource) MarshalJSON

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

func (*NullableDownloadClientConfigResource) Set

func (*NullableDownloadClientConfigResource) UnmarshalJSON

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

func (*NullableDownloadClientConfigResource) Unset

type NullableDownloadClientResource

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

func (NullableDownloadClientResource) Get

func (NullableDownloadClientResource) IsSet

func (NullableDownloadClientResource) MarshalJSON

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

func (*NullableDownloadClientResource) Set

func (*NullableDownloadClientResource) UnmarshalJSON

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

func (*NullableDownloadClientResource) Unset

func (v *NullableDownloadClientResource) Unset()

type NullableDownloadProtocol

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

func NewNullableDownloadProtocol

func NewNullableDownloadProtocol(val *DownloadProtocol) *NullableDownloadProtocol

func (NullableDownloadProtocol) Get

func (NullableDownloadProtocol) IsSet

func (v NullableDownloadProtocol) IsSet() bool

func (NullableDownloadProtocol) MarshalJSON

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

func (*NullableDownloadProtocol) Set

func (*NullableDownloadProtocol) UnmarshalJSON

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

func (*NullableDownloadProtocol) Unset

func (v *NullableDownloadProtocol) Unset()

type NullableField

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

func NewNullableField

func NewNullableField(val *Field) *NullableField

func (NullableField) Get

func (v NullableField) Get() *Field

func (NullableField) IsSet

func (v NullableField) IsSet() bool

func (NullableField) MarshalJSON

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

func (*NullableField) Set

func (v *NullableField) Set(val *Field)

func (*NullableField) UnmarshalJSON

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

func (*NullableField) Unset

func (v *NullableField) 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 NullableHealthCheckResult

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

func NewNullableHealthCheckResult

func NewNullableHealthCheckResult(val *HealthCheckResult) *NullableHealthCheckResult

func (NullableHealthCheckResult) Get

func (NullableHealthCheckResult) IsSet

func (v NullableHealthCheckResult) IsSet() bool

func (NullableHealthCheckResult) MarshalJSON

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

func (*NullableHealthCheckResult) Set

func (*NullableHealthCheckResult) UnmarshalJSON

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

func (*NullableHealthCheckResult) Unset

func (v *NullableHealthCheckResult) Unset()

type NullableHealthResource

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

func NewNullableHealthResource

func NewNullableHealthResource(val *HealthResource) *NullableHealthResource

func (NullableHealthResource) Get

func (NullableHealthResource) IsSet

func (v NullableHealthResource) IsSet() bool

func (NullableHealthResource) MarshalJSON

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

func (*NullableHealthResource) Set

func (*NullableHealthResource) UnmarshalJSON

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

func (*NullableHealthResource) Unset

func (v *NullableHealthResource) Unset()

type NullableHistoryEventType

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

func NewNullableHistoryEventType

func NewNullableHistoryEventType(val *HistoryEventType) *NullableHistoryEventType

func (NullableHistoryEventType) Get

func (NullableHistoryEventType) IsSet

func (v NullableHistoryEventType) IsSet() bool

func (NullableHistoryEventType) MarshalJSON

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

func (*NullableHistoryEventType) Set

func (*NullableHistoryEventType) UnmarshalJSON

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

func (*NullableHistoryEventType) Unset

func (v *NullableHistoryEventType) Unset()

type NullableHistoryResource

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

func NewNullableHistoryResource

func NewNullableHistoryResource(val *HistoryResource) *NullableHistoryResource

func (NullableHistoryResource) Get

func (NullableHistoryResource) IsSet

func (v NullableHistoryResource) IsSet() bool

func (NullableHistoryResource) MarshalJSON

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

func (*NullableHistoryResource) Set

func (*NullableHistoryResource) UnmarshalJSON

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

func (*NullableHistoryResource) Unset

func (v *NullableHistoryResource) Unset()

type NullableHistoryResourcePagingResource

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

func (NullableHistoryResourcePagingResource) Get

func (NullableHistoryResourcePagingResource) IsSet

func (NullableHistoryResourcePagingResource) MarshalJSON

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

func (*NullableHistoryResourcePagingResource) Set

func (*NullableHistoryResourcePagingResource) UnmarshalJSON

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

func (*NullableHistoryResourcePagingResource) Unset

type NullableHostConfigResource

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

func NewNullableHostConfigResource

func NewNullableHostConfigResource(val *HostConfigResource) *NullableHostConfigResource

func (NullableHostConfigResource) Get

func (NullableHostConfigResource) IsSet

func (v NullableHostConfigResource) IsSet() bool

func (NullableHostConfigResource) MarshalJSON

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

func (*NullableHostConfigResource) Set

func (*NullableHostConfigResource) UnmarshalJSON

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

func (*NullableHostConfigResource) Unset

func (v *NullableHostConfigResource) Unset()

type NullableHostStatistics

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

func NewNullableHostStatistics

func NewNullableHostStatistics(val *HostStatistics) *NullableHostStatistics

func (NullableHostStatistics) Get

func (NullableHostStatistics) IsSet

func (v NullableHostStatistics) IsSet() bool

func (NullableHostStatistics) MarshalJSON

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

func (*NullableHostStatistics) Set

func (*NullableHostStatistics) UnmarshalJSON

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

func (*NullableHostStatistics) Unset

func (v *NullableHostStatistics) Unset()

type NullableHttpUri

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

func NewNullableHttpUri

func NewNullableHttpUri(val *HttpUri) *NullableHttpUri

func (NullableHttpUri) Get

func (v NullableHttpUri) Get() *HttpUri

func (NullableHttpUri) IsSet

func (v NullableHttpUri) IsSet() bool

func (NullableHttpUri) MarshalJSON

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

func (*NullableHttpUri) Set

func (v *NullableHttpUri) Set(val *HttpUri)

func (*NullableHttpUri) UnmarshalJSON

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

func (*NullableHttpUri) Unset

func (v *NullableHttpUri) Unset()

type NullableIndexerCapabilityResource

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

func (NullableIndexerCapabilityResource) Get

func (NullableIndexerCapabilityResource) IsSet

func (NullableIndexerCapabilityResource) MarshalJSON

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

func (*NullableIndexerCapabilityResource) Set

func (*NullableIndexerCapabilityResource) UnmarshalJSON

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

func (*NullableIndexerCapabilityResource) Unset

type NullableIndexerCategory

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

func NewNullableIndexerCategory

func NewNullableIndexerCategory(val *IndexerCategory) *NullableIndexerCategory

func (NullableIndexerCategory) Get

func (NullableIndexerCategory) IsSet

func (v NullableIndexerCategory) IsSet() bool

func (NullableIndexerCategory) MarshalJSON

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

func (*NullableIndexerCategory) Set

func (*NullableIndexerCategory) UnmarshalJSON

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

func (*NullableIndexerCategory) Unset

func (v *NullableIndexerCategory) Unset()

type NullableIndexerEditorResource

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

func (NullableIndexerEditorResource) Get

func (NullableIndexerEditorResource) IsSet

func (NullableIndexerEditorResource) MarshalJSON

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

func (*NullableIndexerEditorResource) Set

func (*NullableIndexerEditorResource) UnmarshalJSON

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

func (*NullableIndexerEditorResource) Unset

func (v *NullableIndexerEditorResource) Unset()

type NullableIndexerPrivacy

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

func NewNullableIndexerPrivacy

func NewNullableIndexerPrivacy(val *IndexerPrivacy) *NullableIndexerPrivacy

func (NullableIndexerPrivacy) Get

func (NullableIndexerPrivacy) IsSet

func (v NullableIndexerPrivacy) IsSet() bool

func (NullableIndexerPrivacy) MarshalJSON

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

func (*NullableIndexerPrivacy) Set

func (*NullableIndexerPrivacy) UnmarshalJSON

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

func (*NullableIndexerPrivacy) Unset

func (v *NullableIndexerPrivacy) Unset()

type NullableIndexerProxyResource

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

func NewNullableIndexerProxyResource

func NewNullableIndexerProxyResource(val *IndexerProxyResource) *NullableIndexerProxyResource

func (NullableIndexerProxyResource) Get

func (NullableIndexerProxyResource) IsSet

func (NullableIndexerProxyResource) MarshalJSON

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

func (*NullableIndexerProxyResource) Set

func (*NullableIndexerProxyResource) UnmarshalJSON

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

func (*NullableIndexerProxyResource) Unset

func (v *NullableIndexerProxyResource) Unset()

type NullableIndexerResource

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

func NewNullableIndexerResource

func NewNullableIndexerResource(val *IndexerResource) *NullableIndexerResource

func (NullableIndexerResource) Get

func (NullableIndexerResource) IsSet

func (v NullableIndexerResource) IsSet() bool

func (NullableIndexerResource) MarshalJSON

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

func (*NullableIndexerResource) Set

func (*NullableIndexerResource) UnmarshalJSON

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

func (*NullableIndexerResource) Unset

func (v *NullableIndexerResource) Unset()

type NullableIndexerStatistics

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

func NewNullableIndexerStatistics

func NewNullableIndexerStatistics(val *IndexerStatistics) *NullableIndexerStatistics

func (NullableIndexerStatistics) Get

func (NullableIndexerStatistics) IsSet

func (v NullableIndexerStatistics) IsSet() bool

func (NullableIndexerStatistics) MarshalJSON

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

func (*NullableIndexerStatistics) Set

func (*NullableIndexerStatistics) UnmarshalJSON

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

func (*NullableIndexerStatistics) Unset

func (v *NullableIndexerStatistics) Unset()

type NullableIndexerStatsResource

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

func NewNullableIndexerStatsResource

func NewNullableIndexerStatsResource(val *IndexerStatsResource) *NullableIndexerStatsResource

func (NullableIndexerStatsResource) Get

func (NullableIndexerStatsResource) IsSet

func (NullableIndexerStatsResource) MarshalJSON

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

func (*NullableIndexerStatsResource) Set

func (*NullableIndexerStatsResource) UnmarshalJSON

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

func (*NullableIndexerStatsResource) Unset

func (v *NullableIndexerStatsResource) Unset()

type NullableIndexerStatusResource

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

func (NullableIndexerStatusResource) Get

func (NullableIndexerStatusResource) IsSet

func (NullableIndexerStatusResource) MarshalJSON

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

func (*NullableIndexerStatusResource) Set

func (*NullableIndexerStatusResource) UnmarshalJSON

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

func (*NullableIndexerStatusResource) Unset

func (v *NullableIndexerStatusResource) 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 NullableLocalizationOption

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

func NewNullableLocalizationOption

func NewNullableLocalizationOption(val *LocalizationOption) *NullableLocalizationOption

func (NullableLocalizationOption) Get

func (NullableLocalizationOption) IsSet

func (v NullableLocalizationOption) IsSet() bool

func (NullableLocalizationOption) MarshalJSON

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

func (*NullableLocalizationOption) Set

func (*NullableLocalizationOption) UnmarshalJSON

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

func (*NullableLocalizationOption) Unset

func (v *NullableLocalizationOption) Unset()

type NullableLogFileResource

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

func NewNullableLogFileResource

func NewNullableLogFileResource(val *LogFileResource) *NullableLogFileResource

func (NullableLogFileResource) Get

func (NullableLogFileResource) IsSet

func (v NullableLogFileResource) IsSet() bool

func (NullableLogFileResource) MarshalJSON

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

func (*NullableLogFileResource) Set

func (*NullableLogFileResource) UnmarshalJSON

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

func (*NullableLogFileResource) Unset

func (v *NullableLogFileResource) Unset()

type NullableLogResource

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

func NewNullableLogResource

func NewNullableLogResource(val *LogResource) *NullableLogResource

func (NullableLogResource) Get

func (NullableLogResource) IsSet

func (v NullableLogResource) IsSet() bool

func (NullableLogResource) MarshalJSON

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

func (*NullableLogResource) Set

func (v *NullableLogResource) Set(val *LogResource)

func (*NullableLogResource) UnmarshalJSON

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

func (*NullableLogResource) Unset

func (v *NullableLogResource) Unset()

type NullableLogResourcePagingResource

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

func (NullableLogResourcePagingResource) Get

func (NullableLogResourcePagingResource) IsSet

func (NullableLogResourcePagingResource) MarshalJSON

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

func (*NullableLogResourcePagingResource) Set

func (*NullableLogResourcePagingResource) UnmarshalJSON

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

func (*NullableLogResourcePagingResource) Unset

type NullableMovieSearchParam

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

func NewNullableMovieSearchParam

func NewNullableMovieSearchParam(val *MovieSearchParam) *NullableMovieSearchParam

func (NullableMovieSearchParam) Get

func (NullableMovieSearchParam) IsSet

func (v NullableMovieSearchParam) IsSet() bool

func (NullableMovieSearchParam) MarshalJSON

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

func (*NullableMovieSearchParam) Set

func (*NullableMovieSearchParam) UnmarshalJSON

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

func (*NullableMovieSearchParam) Unset

func (v *NullableMovieSearchParam) Unset()

type NullableMusicSearchParam

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

func NewNullableMusicSearchParam

func NewNullableMusicSearchParam(val *MusicSearchParam) *NullableMusicSearchParam

func (NullableMusicSearchParam) Get

func (NullableMusicSearchParam) IsSet

func (v NullableMusicSearchParam) IsSet() bool

func (NullableMusicSearchParam) MarshalJSON

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

func (*NullableMusicSearchParam) Set

func (*NullableMusicSearchParam) UnmarshalJSON

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

func (*NullableMusicSearchParam) Unset

func (v *NullableMusicSearchParam) Unset()

type NullableNotificationResource

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

func NewNullableNotificationResource

func NewNullableNotificationResource(val *NotificationResource) *NullableNotificationResource

func (NullableNotificationResource) Get

func (NullableNotificationResource) IsSet

func (NullableNotificationResource) MarshalJSON

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

func (*NullableNotificationResource) Set

func (*NullableNotificationResource) UnmarshalJSON

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

func (*NullableNotificationResource) Unset

func (v *NullableNotificationResource) Unset()

type NullablePagingResourceFilter

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

func NewNullablePagingResourceFilter

func NewNullablePagingResourceFilter(val *PagingResourceFilter) *NullablePagingResourceFilter

func (NullablePagingResourceFilter) Get

func (NullablePagingResourceFilter) IsSet

func (NullablePagingResourceFilter) MarshalJSON

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

func (*NullablePagingResourceFilter) Set

func (*NullablePagingResourceFilter) UnmarshalJSON

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

func (*NullablePagingResourceFilter) Unset

func (v *NullablePagingResourceFilter) Unset()

type NullableProviderMessage

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

func NewNullableProviderMessage

func NewNullableProviderMessage(val *ProviderMessage) *NullableProviderMessage

func (NullableProviderMessage) Get

func (NullableProviderMessage) IsSet

func (v NullableProviderMessage) IsSet() bool

func (NullableProviderMessage) MarshalJSON

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

func (*NullableProviderMessage) Set

func (*NullableProviderMessage) UnmarshalJSON

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

func (*NullableProviderMessage) Unset

func (v *NullableProviderMessage) Unset()

type NullableProviderMessageType

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

func NewNullableProviderMessageType

func NewNullableProviderMessageType(val *ProviderMessageType) *NullableProviderMessageType

func (NullableProviderMessageType) Get

func (NullableProviderMessageType) IsSet

func (NullableProviderMessageType) MarshalJSON

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

func (*NullableProviderMessageType) Set

func (*NullableProviderMessageType) UnmarshalJSON

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

func (*NullableProviderMessageType) Unset

func (v *NullableProviderMessageType) Unset()

type NullableProxyType

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

func NewNullableProxyType

func NewNullableProxyType(val *ProxyType) *NullableProxyType

func (NullableProxyType) Get

func (v NullableProxyType) Get() *ProxyType

func (NullableProxyType) IsSet

func (v NullableProxyType) IsSet() bool

func (NullableProxyType) MarshalJSON

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

func (*NullableProxyType) Set

func (v *NullableProxyType) Set(val *ProxyType)

func (*NullableProxyType) UnmarshalJSON

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

func (*NullableProxyType) Unset

func (v *NullableProxyType) Unset()

type NullableReleaseResource

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

func NewNullableReleaseResource

func NewNullableReleaseResource(val *ReleaseResource) *NullableReleaseResource

func (NullableReleaseResource) Get

func (NullableReleaseResource) IsSet

func (v NullableReleaseResource) IsSet() bool

func (NullableReleaseResource) MarshalJSON

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

func (*NullableReleaseResource) Set

func (*NullableReleaseResource) UnmarshalJSON

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

func (*NullableReleaseResource) Unset

func (v *NullableReleaseResource) Unset()

type NullableSearchParam

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

func NewNullableSearchParam

func NewNullableSearchParam(val *SearchParam) *NullableSearchParam

func (NullableSearchParam) Get

func (NullableSearchParam) IsSet

func (v NullableSearchParam) IsSet() bool

func (NullableSearchParam) MarshalJSON

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

func (*NullableSearchParam) Set

func (v *NullableSearchParam) Set(val *SearchParam)

func (*NullableSearchParam) UnmarshalJSON

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

func (*NullableSearchParam) Unset

func (v *NullableSearchParam) Unset()

type NullableSelectOption

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

func NewNullableSelectOption

func NewNullableSelectOption(val *SelectOption) *NullableSelectOption

func (NullableSelectOption) Get

func (NullableSelectOption) IsSet

func (v NullableSelectOption) IsSet() bool

func (NullableSelectOption) MarshalJSON

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

func (*NullableSelectOption) Set

func (v *NullableSelectOption) Set(val *SelectOption)

func (*NullableSelectOption) UnmarshalJSON

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

func (*NullableSelectOption) Unset

func (v *NullableSelectOption) Unset()

type NullableSortDirection

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

func NewNullableSortDirection

func NewNullableSortDirection(val *SortDirection) *NullableSortDirection

func (NullableSortDirection) Get

func (NullableSortDirection) IsSet

func (v NullableSortDirection) IsSet() bool

func (NullableSortDirection) MarshalJSON

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

func (*NullableSortDirection) Set

func (v *NullableSortDirection) Set(val *SortDirection)

func (*NullableSortDirection) UnmarshalJSON

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

func (*NullableSortDirection) Unset

func (v *NullableSortDirection) 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 NullableTagDetailsResource

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

func NewNullableTagDetailsResource

func NewNullableTagDetailsResource(val *TagDetailsResource) *NullableTagDetailsResource

func (NullableTagDetailsResource) Get

func (NullableTagDetailsResource) IsSet

func (v NullableTagDetailsResource) IsSet() bool

func (NullableTagDetailsResource) MarshalJSON

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

func (*NullableTagDetailsResource) Set

func (*NullableTagDetailsResource) UnmarshalJSON

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

func (*NullableTagDetailsResource) Unset

func (v *NullableTagDetailsResource) Unset()

type NullableTagResource

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

func NewNullableTagResource

func NewNullableTagResource(val *TagResource) *NullableTagResource

func (NullableTagResource) Get

func (NullableTagResource) IsSet

func (v NullableTagResource) IsSet() bool

func (NullableTagResource) MarshalJSON

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

func (*NullableTagResource) Set

func (v *NullableTagResource) Set(val *TagResource)

func (*NullableTagResource) UnmarshalJSON

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

func (*NullableTagResource) Unset

func (v *NullableTagResource) Unset()

type NullableTaskResource

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

func NewNullableTaskResource

func NewNullableTaskResource(val *TaskResource) *NullableTaskResource

func (NullableTaskResource) Get

func (NullableTaskResource) IsSet

func (v NullableTaskResource) IsSet() bool

func (NullableTaskResource) MarshalJSON

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

func (*NullableTaskResource) Set

func (v *NullableTaskResource) Set(val *TaskResource)

func (*NullableTaskResource) UnmarshalJSON

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

func (*NullableTaskResource) Unset

func (v *NullableTaskResource) 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 NullableTimeSpan

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

func NewNullableTimeSpan

func NewNullableTimeSpan(val *TimeSpan) *NullableTimeSpan

func (NullableTimeSpan) Get

func (v NullableTimeSpan) Get() *TimeSpan

func (NullableTimeSpan) IsSet

func (v NullableTimeSpan) IsSet() bool

func (NullableTimeSpan) MarshalJSON

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

func (*NullableTimeSpan) Set

func (v *NullableTimeSpan) Set(val *TimeSpan)

func (*NullableTimeSpan) UnmarshalJSON

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

func (*NullableTimeSpan) Unset

func (v *NullableTimeSpan) Unset()

type NullableTvSearchParam

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

func NewNullableTvSearchParam

func NewNullableTvSearchParam(val *TvSearchParam) *NullableTvSearchParam

func (NullableTvSearchParam) Get

func (NullableTvSearchParam) IsSet

func (v NullableTvSearchParam) IsSet() bool

func (NullableTvSearchParam) MarshalJSON

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

func (*NullableTvSearchParam) Set

func (v *NullableTvSearchParam) Set(val *TvSearchParam)

func (*NullableTvSearchParam) UnmarshalJSON

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

func (*NullableTvSearchParam) Unset

func (v *NullableTvSearchParam) Unset()

type NullableUiConfigResource

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

func NewNullableUiConfigResource

func NewNullableUiConfigResource(val *UiConfigResource) *NullableUiConfigResource

func (NullableUiConfigResource) Get

func (NullableUiConfigResource) IsSet

func (v NullableUiConfigResource) IsSet() bool

func (NullableUiConfigResource) MarshalJSON

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

func (*NullableUiConfigResource) Set

func (*NullableUiConfigResource) UnmarshalJSON

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

func (*NullableUiConfigResource) Unset

func (v *NullableUiConfigResource) Unset()

type NullableUpdateChanges

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

func NewNullableUpdateChanges

func NewNullableUpdateChanges(val *UpdateChanges) *NullableUpdateChanges

func (NullableUpdateChanges) Get

func (NullableUpdateChanges) IsSet

func (v NullableUpdateChanges) IsSet() bool

func (NullableUpdateChanges) MarshalJSON

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

func (*NullableUpdateChanges) Set

func (v *NullableUpdateChanges) Set(val *UpdateChanges)

func (*NullableUpdateChanges) UnmarshalJSON

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

func (*NullableUpdateChanges) Unset

func (v *NullableUpdateChanges) Unset()

type NullableUpdateMechanism

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

func NewNullableUpdateMechanism

func NewNullableUpdateMechanism(val *UpdateMechanism) *NullableUpdateMechanism

func (NullableUpdateMechanism) Get

func (NullableUpdateMechanism) IsSet

func (v NullableUpdateMechanism) IsSet() bool

func (NullableUpdateMechanism) MarshalJSON

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

func (*NullableUpdateMechanism) Set

func (*NullableUpdateMechanism) UnmarshalJSON

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

func (*NullableUpdateMechanism) Unset

func (v *NullableUpdateMechanism) Unset()

type NullableUpdateResource

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

func NewNullableUpdateResource

func NewNullableUpdateResource(val *UpdateResource) *NullableUpdateResource

func (NullableUpdateResource) Get

func (NullableUpdateResource) IsSet

func (v NullableUpdateResource) IsSet() bool

func (NullableUpdateResource) MarshalJSON

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

func (*NullableUpdateResource) Set

func (*NullableUpdateResource) UnmarshalJSON

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

func (*NullableUpdateResource) Unset

func (v *NullableUpdateResource) Unset()

type NullableUserAgentStatistics

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

func NewNullableUserAgentStatistics

func NewNullableUserAgentStatistics(val *UserAgentStatistics) *NullableUserAgentStatistics

func (NullableUserAgentStatistics) Get

func (NullableUserAgentStatistics) IsSet

func (NullableUserAgentStatistics) MarshalJSON

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

func (*NullableUserAgentStatistics) Set

func (*NullableUserAgentStatistics) UnmarshalJSON

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

func (*NullableUserAgentStatistics) Unset

func (v *NullableUserAgentStatistics) Unset()

type NullableVersion

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

func NewNullableVersion

func NewNullableVersion(val *Version) *NullableVersion

func (NullableVersion) Get

func (v NullableVersion) Get() *Version

func (NullableVersion) IsSet

func (v NullableVersion) IsSet() bool

func (NullableVersion) MarshalJSON

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

func (*NullableVersion) Set

func (v *NullableVersion) Set(val *Version)

func (*NullableVersion) UnmarshalJSON

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

func (*NullableVersion) Unset

func (v *NullableVersion) Unset()

type PagingResourceFilter

type PagingResourceFilter struct {
	Key   NullableString `json:"key,omitempty"`
	Value NullableString `json:"value,omitempty"`
}

PagingResourceFilter struct for PagingResourceFilter

func NewPagingResourceFilter

func NewPagingResourceFilter() *PagingResourceFilter

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

func NewPagingResourceFilterWithDefaults

func NewPagingResourceFilterWithDefaults() *PagingResourceFilter

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

func (*PagingResourceFilter) GetKey

func (o *PagingResourceFilter) GetKey() string

GetKey returns the Key field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PagingResourceFilter) GetKeyOk

func (o *PagingResourceFilter) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key 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 (*PagingResourceFilter) GetValue

func (o *PagingResourceFilter) GetValue() string

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*PagingResourceFilter) GetValueOk

func (o *PagingResourceFilter) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*PagingResourceFilter) HasKey

func (o *PagingResourceFilter) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*PagingResourceFilter) HasValue

func (o *PagingResourceFilter) HasValue() bool

HasValue returns a boolean if a field has been set.

func (PagingResourceFilter) MarshalJSON

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

func (*PagingResourceFilter) SetKey

func (o *PagingResourceFilter) SetKey(v string)

SetKey gets a reference to the given NullableString and assigns it to the Key field.

func (*PagingResourceFilter) SetKeyNil

func (o *PagingResourceFilter) SetKeyNil()

SetKeyNil sets the value for Key to be an explicit nil

func (*PagingResourceFilter) SetValue

func (o *PagingResourceFilter) SetValue(v string)

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

func (*PagingResourceFilter) SetValueNil

func (o *PagingResourceFilter) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (*PagingResourceFilter) UnsetKey

func (o *PagingResourceFilter) UnsetKey()

UnsetKey ensures that no value is present for Key, not even an explicit nil

func (*PagingResourceFilter) UnsetValue

func (o *PagingResourceFilter) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type ProviderMessage

type ProviderMessage struct {
	Message NullableString       `json:"message,omitempty"`
	Type    *ProviderMessageType `json:"type,omitempty"`
}

ProviderMessage struct for ProviderMessage

func NewProviderMessage

func NewProviderMessage() *ProviderMessage

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

func NewProviderMessageWithDefaults

func NewProviderMessageWithDefaults() *ProviderMessage

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

func (*ProviderMessage) GetMessage

func (o *ProviderMessage) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ProviderMessage) GetMessageOk

func (o *ProviderMessage) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ProviderMessage) GetType

func (o *ProviderMessage) GetType() ProviderMessageType

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

func (*ProviderMessage) GetTypeOk

func (o *ProviderMessage) GetTypeOk() (*ProviderMessageType, 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 (*ProviderMessage) HasMessage

func (o *ProviderMessage) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ProviderMessage) HasType

func (o *ProviderMessage) HasType() bool

HasType returns a boolean if a field has been set.

func (ProviderMessage) MarshalJSON

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

func (*ProviderMessage) SetMessage

func (o *ProviderMessage) SetMessage(v string)

SetMessage gets a reference to the given NullableString and assigns it to the Message field.

func (*ProviderMessage) SetMessageNil

func (o *ProviderMessage) SetMessageNil()

SetMessageNil sets the value for Message to be an explicit nil

func (*ProviderMessage) SetType

func (o *ProviderMessage) SetType(v ProviderMessageType)

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

func (*ProviderMessage) UnsetMessage

func (o *ProviderMessage) UnsetMessage()

UnsetMessage ensures that no value is present for Message, not even an explicit nil

type ProviderMessageType

type ProviderMessageType string

ProviderMessageType the model 'ProviderMessageType'

const (
	PROVIDERMESSAGETYPE_INFO    ProviderMessageType = "info"
	PROVIDERMESSAGETYPE_WARNING ProviderMessageType = "warning"
	PROVIDERMESSAGETYPE_ERROR   ProviderMessageType = "error"
)

List of ProviderMessageType

func NewProviderMessageTypeFromValue

func NewProviderMessageTypeFromValue(v string) (*ProviderMessageType, error)

NewProviderMessageTypeFromValue returns a pointer to a valid ProviderMessageType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ProviderMessageType) IsValid

func (v ProviderMessageType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ProviderMessageType) Ptr

Ptr returns reference to ProviderMessageType value

func (*ProviderMessageType) UnmarshalJSON

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

type ProxyType

type ProxyType string

ProxyType the model 'ProxyType'

const (
	PROXYTYPE_HTTP   ProxyType = "http"
	PROXYTYPE_SOCKS4 ProxyType = "socks4"
	PROXYTYPE_SOCKS5 ProxyType = "socks5"
)

List of ProxyType

func NewProxyTypeFromValue

func NewProxyTypeFromValue(v string) (*ProxyType, error)

NewProxyTypeFromValue returns a pointer to a valid ProxyType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ProxyType) IsValid

func (v ProxyType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ProxyType) Ptr

func (v ProxyType) Ptr() *ProxyType

Ptr returns reference to ProxyType value

func (*ProxyType) UnmarshalJSON

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

type QualityProfileSchemaApiService

type QualityProfileSchemaApiService service

QualityProfileSchemaApiService QualityProfileSchemaApi service

func (*QualityProfileSchemaApiService) GetAppprofileSchema

GetAppprofileSchema Method for GetAppprofileSchema

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

func (*QualityProfileSchemaApiService) GetAppprofileSchemaExecute

Execute executes the request

@return AppProfileResource

type ReleaseResource

type ReleaseResource struct {
	Id           *int32             `json:"id,omitempty"`
	Guid         NullableString     `json:"guid,omitempty"`
	Age          *int32             `json:"age,omitempty"`
	AgeHours     *float64           `json:"ageHours,omitempty"`
	AgeMinutes   *float64           `json:"ageMinutes,omitempty"`
	Size         *int64             `json:"size,omitempty"`
	Files        NullableInt32      `json:"files,omitempty"`
	Grabs        NullableInt32      `json:"grabs,omitempty"`
	IndexerId    *int32             `json:"indexerId,omitempty"`
	Indexer      NullableString     `json:"indexer,omitempty"`
	SubGroup     NullableString     `json:"subGroup,omitempty"`
	ReleaseHash  NullableString     `json:"releaseHash,omitempty"`
	Title        NullableString     `json:"title,omitempty"`
	Approved     *bool              `json:"approved,omitempty"`
	ImdbId       *int32             `json:"imdbId,omitempty"`
	PublishDate  *time.Time         `json:"publishDate,omitempty"`
	CommentUrl   NullableString     `json:"commentUrl,omitempty"`
	DownloadUrl  NullableString     `json:"downloadUrl,omitempty"`
	InfoUrl      NullableString     `json:"infoUrl,omitempty"`
	PosterUrl    NullableString     `json:"posterUrl,omitempty"`
	IndexerFlags []*string          `json:"indexerFlags,omitempty"`
	Categories   []*IndexerCategory `json:"categories,omitempty"`
	MagnetUrl    NullableString     `json:"magnetUrl,omitempty"`
	InfoHash     NullableString     `json:"infoHash,omitempty"`
	Seeders      NullableInt32      `json:"seeders,omitempty"`
	Leechers     NullableInt32      `json:"leechers,omitempty"`
	Protocol     *DownloadProtocol  `json:"protocol,omitempty"`
}

ReleaseResource struct for ReleaseResource

func NewReleaseResource

func NewReleaseResource() *ReleaseResource

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

func NewReleaseResourceWithDefaults

func NewReleaseResourceWithDefaults() *ReleaseResource

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

func (*ReleaseResource) GetAge

func (o *ReleaseResource) GetAge() int32

GetAge returns the Age field value if set, zero value otherwise.

func (*ReleaseResource) GetAgeHours

func (o *ReleaseResource) GetAgeHours() float64

GetAgeHours returns the AgeHours field value if set, zero value otherwise.

func (*ReleaseResource) GetAgeHoursOk

func (o *ReleaseResource) GetAgeHoursOk() (*float64, bool)

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

func (*ReleaseResource) GetAgeMinutes

func (o *ReleaseResource) GetAgeMinutes() float64

GetAgeMinutes returns the AgeMinutes field value if set, zero value otherwise.

func (*ReleaseResource) GetAgeMinutesOk

func (o *ReleaseResource) GetAgeMinutesOk() (*float64, bool)

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

func (*ReleaseResource) GetAgeOk

func (o *ReleaseResource) GetAgeOk() (*int32, bool)

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

func (*ReleaseResource) GetApproved

func (o *ReleaseResource) GetApproved() bool

GetApproved returns the Approved field value if set, zero value otherwise.

func (*ReleaseResource) GetApprovedOk

func (o *ReleaseResource) 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 (*ReleaseResource) GetCategories

func (o *ReleaseResource) GetCategories() []*IndexerCategory

GetCategories returns the Categories field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetCategoriesOk

func (o *ReleaseResource) GetCategoriesOk() ([]*IndexerCategory, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*ReleaseResource) GetCommentUrl

func (o *ReleaseResource) GetCommentUrl() string

GetCommentUrl returns the CommentUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetCommentUrlOk

func (o *ReleaseResource) GetCommentUrlOk() (*string, bool)

GetCommentUrlOk returns a tuple with the CommentUrl 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 (*ReleaseResource) GetDownloadUrl

func (o *ReleaseResource) GetDownloadUrl() string

GetDownloadUrl returns the DownloadUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetDownloadUrlOk

func (o *ReleaseResource) GetDownloadUrlOk() (*string, bool)

GetDownloadUrlOk returns a tuple with the DownloadUrl 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 (*ReleaseResource) GetFiles

func (o *ReleaseResource) GetFiles() int32

GetFiles returns the Files field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetFilesOk

func (o *ReleaseResource) GetFilesOk() (*int32, bool)

GetFilesOk returns a tuple with the Files 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 (*ReleaseResource) GetGrabs

func (o *ReleaseResource) GetGrabs() int32

GetGrabs returns the Grabs field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetGrabsOk

func (o *ReleaseResource) GetGrabsOk() (*int32, bool)

GetGrabsOk returns a tuple with the Grabs 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 (*ReleaseResource) GetGuid

func (o *ReleaseResource) GetGuid() string

GetGuid returns the Guid field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetGuidOk

func (o *ReleaseResource) GetGuidOk() (*string, bool)

GetGuidOk returns a tuple with the Guid 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 (*ReleaseResource) GetId

func (o *ReleaseResource) GetId() int32

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

func (*ReleaseResource) GetIdOk

func (o *ReleaseResource) 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 (*ReleaseResource) GetImdbId

func (o *ReleaseResource) GetImdbId() int32

GetImdbId returns the ImdbId field value if set, zero value otherwise.

func (*ReleaseResource) GetImdbIdOk

func (o *ReleaseResource) GetImdbIdOk() (*int32, bool)

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

func (*ReleaseResource) GetIndexer

func (o *ReleaseResource) GetIndexer() string

GetIndexer returns the Indexer field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetIndexerFlags

func (o *ReleaseResource) GetIndexerFlags() []*string

GetIndexerFlags returns the IndexerFlags field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetIndexerFlagsOk

func (o *ReleaseResource) GetIndexerFlagsOk() ([]*string, bool)

GetIndexerFlagsOk returns a tuple with the IndexerFlags 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 (*ReleaseResource) GetIndexerId

func (o *ReleaseResource) GetIndexerId() int32

GetIndexerId returns the IndexerId field value if set, zero value otherwise.

func (*ReleaseResource) GetIndexerIdOk

func (o *ReleaseResource) GetIndexerIdOk() (*int32, bool)

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

func (*ReleaseResource) GetIndexerOk

func (o *ReleaseResource) GetIndexerOk() (*string, bool)

GetIndexerOk returns a tuple with the Indexer 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 (*ReleaseResource) GetInfoHash

func (o *ReleaseResource) GetInfoHash() string

GetInfoHash returns the InfoHash field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetInfoHashOk

func (o *ReleaseResource) GetInfoHashOk() (*string, bool)

GetInfoHashOk returns a tuple with the InfoHash 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 (*ReleaseResource) GetInfoUrl

func (o *ReleaseResource) GetInfoUrl() string

GetInfoUrl returns the InfoUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetInfoUrlOk

func (o *ReleaseResource) GetInfoUrlOk() (*string, bool)

GetInfoUrlOk returns a tuple with the InfoUrl 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 (*ReleaseResource) GetLeechers

func (o *ReleaseResource) GetLeechers() int32

GetLeechers returns the Leechers field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetLeechersOk

func (o *ReleaseResource) GetLeechersOk() (*int32, bool)

GetLeechersOk returns a tuple with the Leechers 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 (*ReleaseResource) GetMagnetUrl

func (o *ReleaseResource) GetMagnetUrl() string

GetMagnetUrl returns the MagnetUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetMagnetUrlOk

func (o *ReleaseResource) GetMagnetUrlOk() (*string, bool)

GetMagnetUrlOk returns a tuple with the MagnetUrl 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 (*ReleaseResource) GetPosterUrl

func (o *ReleaseResource) GetPosterUrl() string

GetPosterUrl returns the PosterUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetPosterUrlOk

func (o *ReleaseResource) GetPosterUrlOk() (*string, bool)

GetPosterUrlOk returns a tuple with the PosterUrl 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 (*ReleaseResource) GetProtocol

func (o *ReleaseResource) GetProtocol() DownloadProtocol

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*ReleaseResource) GetProtocolOk

func (o *ReleaseResource) GetProtocolOk() (*DownloadProtocol, bool)

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

func (*ReleaseResource) GetPublishDate

func (o *ReleaseResource) GetPublishDate() time.Time

GetPublishDate returns the PublishDate field value if set, zero value otherwise.

func (*ReleaseResource) GetPublishDateOk

func (o *ReleaseResource) GetPublishDateOk() (*time.Time, bool)

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

func (*ReleaseResource) GetReleaseHash

func (o *ReleaseResource) GetReleaseHash() string

GetReleaseHash returns the ReleaseHash field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetReleaseHashOk

func (o *ReleaseResource) GetReleaseHashOk() (*string, bool)

GetReleaseHashOk returns a tuple with the ReleaseHash 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 (*ReleaseResource) GetSeeders

func (o *ReleaseResource) GetSeeders() int32

GetSeeders returns the Seeders field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetSeedersOk

func (o *ReleaseResource) GetSeedersOk() (*int32, bool)

GetSeedersOk returns a tuple with the Seeders 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 (*ReleaseResource) GetSize

func (o *ReleaseResource) GetSize() int64

GetSize returns the Size field value if set, zero value otherwise.

func (*ReleaseResource) GetSizeOk

func (o *ReleaseResource) GetSizeOk() (*int64, bool)

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

func (*ReleaseResource) GetSubGroup

func (o *ReleaseResource) GetSubGroup() string

GetSubGroup returns the SubGroup field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetSubGroupOk

func (o *ReleaseResource) GetSubGroupOk() (*string, bool)

GetSubGroupOk returns a tuple with the SubGroup 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 (*ReleaseResource) GetTitle

func (o *ReleaseResource) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReleaseResource) GetTitleOk

func (o *ReleaseResource) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title 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 (*ReleaseResource) HasAge

func (o *ReleaseResource) HasAge() bool

HasAge returns a boolean if a field has been set.

func (*ReleaseResource) HasAgeHours

func (o *ReleaseResource) HasAgeHours() bool

HasAgeHours returns a boolean if a field has been set.

func (*ReleaseResource) HasAgeMinutes

func (o *ReleaseResource) HasAgeMinutes() bool

HasAgeMinutes returns a boolean if a field has been set.

func (*ReleaseResource) HasApproved

func (o *ReleaseResource) HasApproved() bool

HasApproved returns a boolean if a field has been set.

func (*ReleaseResource) HasCategories

func (o *ReleaseResource) HasCategories() bool

HasCategories returns a boolean if a field has been set.

func (*ReleaseResource) HasCommentUrl

func (o *ReleaseResource) HasCommentUrl() bool

HasCommentUrl returns a boolean if a field has been set.

func (*ReleaseResource) HasDownloadUrl

func (o *ReleaseResource) HasDownloadUrl() bool

HasDownloadUrl returns a boolean if a field has been set.

func (*ReleaseResource) HasFiles

func (o *ReleaseResource) HasFiles() bool

HasFiles returns a boolean if a field has been set.

func (*ReleaseResource) HasGrabs

func (o *ReleaseResource) HasGrabs() bool

HasGrabs returns a boolean if a field has been set.

func (*ReleaseResource) HasGuid

func (o *ReleaseResource) HasGuid() bool

HasGuid returns a boolean if a field has been set.

func (*ReleaseResource) HasId

func (o *ReleaseResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReleaseResource) HasImdbId

func (o *ReleaseResource) HasImdbId() bool

HasImdbId returns a boolean if a field has been set.

func (*ReleaseResource) HasIndexer

func (o *ReleaseResource) HasIndexer() bool

HasIndexer returns a boolean if a field has been set.

func (*ReleaseResource) HasIndexerFlags

func (o *ReleaseResource) HasIndexerFlags() bool

HasIndexerFlags returns a boolean if a field has been set.

func (*ReleaseResource) HasIndexerId

func (o *ReleaseResource) HasIndexerId() bool

HasIndexerId returns a boolean if a field has been set.

func (*ReleaseResource) HasInfoHash

func (o *ReleaseResource) HasInfoHash() bool

HasInfoHash returns a boolean if a field has been set.

func (*ReleaseResource) HasInfoUrl

func (o *ReleaseResource) HasInfoUrl() bool

HasInfoUrl returns a boolean if a field has been set.

func (*ReleaseResource) HasLeechers

func (o *ReleaseResource) HasLeechers() bool

HasLeechers returns a boolean if a field has been set.

func (*ReleaseResource) HasMagnetUrl

func (o *ReleaseResource) HasMagnetUrl() bool

HasMagnetUrl returns a boolean if a field has been set.

func (*ReleaseResource) HasPosterUrl

func (o *ReleaseResource) HasPosterUrl() bool

HasPosterUrl returns a boolean if a field has been set.

func (*ReleaseResource) HasProtocol

func (o *ReleaseResource) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*ReleaseResource) HasPublishDate

func (o *ReleaseResource) HasPublishDate() bool

HasPublishDate returns a boolean if a field has been set.

func (*ReleaseResource) HasReleaseHash

func (o *ReleaseResource) HasReleaseHash() bool

HasReleaseHash returns a boolean if a field has been set.

func (*ReleaseResource) HasSeeders

func (o *ReleaseResource) HasSeeders() bool

HasSeeders returns a boolean if a field has been set.

func (*ReleaseResource) HasSize

func (o *ReleaseResource) HasSize() bool

HasSize returns a boolean if a field has been set.

func (*ReleaseResource) HasSubGroup

func (o *ReleaseResource) HasSubGroup() bool

HasSubGroup returns a boolean if a field has been set.

func (*ReleaseResource) HasTitle

func (o *ReleaseResource) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (ReleaseResource) MarshalJSON

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

func (*ReleaseResource) SetAge

func (o *ReleaseResource) SetAge(v int32)

SetAge gets a reference to the given int32 and assigns it to the Age field.

func (*ReleaseResource) SetAgeHours

func (o *ReleaseResource) SetAgeHours(v float64)

SetAgeHours gets a reference to the given float64 and assigns it to the AgeHours field.

func (*ReleaseResource) SetAgeMinutes

func (o *ReleaseResource) SetAgeMinutes(v float64)

SetAgeMinutes gets a reference to the given float64 and assigns it to the AgeMinutes field.

func (*ReleaseResource) SetApproved

func (o *ReleaseResource) SetApproved(v bool)

SetApproved gets a reference to the given bool and assigns it to the Approved field.

func (*ReleaseResource) SetCategories

func (o *ReleaseResource) SetCategories(v []*IndexerCategory)

SetCategories gets a reference to the given []IndexerCategory and assigns it to the Categories field.

func (*ReleaseResource) SetCommentUrl

func (o *ReleaseResource) SetCommentUrl(v string)

SetCommentUrl gets a reference to the given NullableString and assigns it to the CommentUrl field.

func (*ReleaseResource) SetCommentUrlNil

func (o *ReleaseResource) SetCommentUrlNil()

SetCommentUrlNil sets the value for CommentUrl to be an explicit nil

func (*ReleaseResource) SetDownloadUrl

func (o *ReleaseResource) SetDownloadUrl(v string)

SetDownloadUrl gets a reference to the given NullableString and assigns it to the DownloadUrl field.

func (*ReleaseResource) SetDownloadUrlNil

func (o *ReleaseResource) SetDownloadUrlNil()

SetDownloadUrlNil sets the value for DownloadUrl to be an explicit nil

func (*ReleaseResource) SetFiles

func (o *ReleaseResource) SetFiles(v int32)

SetFiles gets a reference to the given NullableInt32 and assigns it to the Files field.

func (*ReleaseResource) SetFilesNil

func (o *ReleaseResource) SetFilesNil()

SetFilesNil sets the value for Files to be an explicit nil

func (*ReleaseResource) SetGrabs

func (o *ReleaseResource) SetGrabs(v int32)

SetGrabs gets a reference to the given NullableInt32 and assigns it to the Grabs field.

func (*ReleaseResource) SetGrabsNil

func (o *ReleaseResource) SetGrabsNil()

SetGrabsNil sets the value for Grabs to be an explicit nil

func (*ReleaseResource) SetGuid

func (o *ReleaseResource) SetGuid(v string)

SetGuid gets a reference to the given NullableString and assigns it to the Guid field.

func (*ReleaseResource) SetGuidNil

func (o *ReleaseResource) SetGuidNil()

SetGuidNil sets the value for Guid to be an explicit nil

func (*ReleaseResource) SetId

func (o *ReleaseResource) SetId(v int32)

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

func (*ReleaseResource) SetImdbId

func (o *ReleaseResource) SetImdbId(v int32)

SetImdbId gets a reference to the given int32 and assigns it to the ImdbId field.

func (*ReleaseResource) SetIndexer

func (o *ReleaseResource) SetIndexer(v string)

SetIndexer gets a reference to the given NullableString and assigns it to the Indexer field.

func (*ReleaseResource) SetIndexerFlags

func (o *ReleaseResource) SetIndexerFlags(v []*string)

SetIndexerFlags gets a reference to the given []string and assigns it to the IndexerFlags field.

func (*ReleaseResource) SetIndexerId

func (o *ReleaseResource) SetIndexerId(v int32)

SetIndexerId gets a reference to the given int32 and assigns it to the IndexerId field.

func (*ReleaseResource) SetIndexerNil

func (o *ReleaseResource) SetIndexerNil()

SetIndexerNil sets the value for Indexer to be an explicit nil

func (*ReleaseResource) SetInfoHash

func (o *ReleaseResource) SetInfoHash(v string)

SetInfoHash gets a reference to the given NullableString and assigns it to the InfoHash field.

func (*ReleaseResource) SetInfoHashNil

func (o *ReleaseResource) SetInfoHashNil()

SetInfoHashNil sets the value for InfoHash to be an explicit nil

func (*ReleaseResource) SetInfoUrl

func (o *ReleaseResource) SetInfoUrl(v string)

SetInfoUrl gets a reference to the given NullableString and assigns it to the InfoUrl field.

func (*ReleaseResource) SetInfoUrlNil

func (o *ReleaseResource) SetInfoUrlNil()

SetInfoUrlNil sets the value for InfoUrl to be an explicit nil

func (*ReleaseResource) SetLeechers

func (o *ReleaseResource) SetLeechers(v int32)

SetLeechers gets a reference to the given NullableInt32 and assigns it to the Leechers field.

func (*ReleaseResource) SetLeechersNil

func (o *ReleaseResource) SetLeechersNil()

SetLeechersNil sets the value for Leechers to be an explicit nil

func (*ReleaseResource) SetMagnetUrl

func (o *ReleaseResource) SetMagnetUrl(v string)

SetMagnetUrl gets a reference to the given NullableString and assigns it to the MagnetUrl field.

func (*ReleaseResource) SetMagnetUrlNil

func (o *ReleaseResource) SetMagnetUrlNil()

SetMagnetUrlNil sets the value for MagnetUrl to be an explicit nil

func (*ReleaseResource) SetPosterUrl

func (o *ReleaseResource) SetPosterUrl(v string)

SetPosterUrl gets a reference to the given NullableString and assigns it to the PosterUrl field.

func (*ReleaseResource) SetPosterUrlNil

func (o *ReleaseResource) SetPosterUrlNil()

SetPosterUrlNil sets the value for PosterUrl to be an explicit nil

func (*ReleaseResource) SetProtocol

func (o *ReleaseResource) SetProtocol(v DownloadProtocol)

SetProtocol gets a reference to the given DownloadProtocol and assigns it to the Protocol field.

func (*ReleaseResource) SetPublishDate

func (o *ReleaseResource) SetPublishDate(v time.Time)

SetPublishDate gets a reference to the given time.Time and assigns it to the PublishDate field.

func (*ReleaseResource) SetReleaseHash

func (o *ReleaseResource) SetReleaseHash(v string)

SetReleaseHash gets a reference to the given NullableString and assigns it to the ReleaseHash field.

func (*ReleaseResource) SetReleaseHashNil

func (o *ReleaseResource) SetReleaseHashNil()

SetReleaseHashNil sets the value for ReleaseHash to be an explicit nil

func (*ReleaseResource) SetSeeders

func (o *ReleaseResource) SetSeeders(v int32)

SetSeeders gets a reference to the given NullableInt32 and assigns it to the Seeders field.

func (*ReleaseResource) SetSeedersNil

func (o *ReleaseResource) SetSeedersNil()

SetSeedersNil sets the value for Seeders to be an explicit nil

func (*ReleaseResource) SetSize

func (o *ReleaseResource) SetSize(v int64)

SetSize gets a reference to the given int64 and assigns it to the Size field.

func (*ReleaseResource) SetSubGroup

func (o *ReleaseResource) SetSubGroup(v string)

SetSubGroup gets a reference to the given NullableString and assigns it to the SubGroup field.

func (*ReleaseResource) SetSubGroupNil

func (o *ReleaseResource) SetSubGroupNil()

SetSubGroupNil sets the value for SubGroup to be an explicit nil

func (*ReleaseResource) SetTitle

func (o *ReleaseResource) SetTitle(v string)

SetTitle gets a reference to the given NullableString and assigns it to the Title field.

func (*ReleaseResource) SetTitleNil

func (o *ReleaseResource) SetTitleNil()

SetTitleNil sets the value for Title to be an explicit nil

func (*ReleaseResource) UnsetCommentUrl

func (o *ReleaseResource) UnsetCommentUrl()

UnsetCommentUrl ensures that no value is present for CommentUrl, not even an explicit nil

func (*ReleaseResource) UnsetDownloadUrl

func (o *ReleaseResource) UnsetDownloadUrl()

UnsetDownloadUrl ensures that no value is present for DownloadUrl, not even an explicit nil

func (*ReleaseResource) UnsetFiles

func (o *ReleaseResource) UnsetFiles()

UnsetFiles ensures that no value is present for Files, not even an explicit nil

func (*ReleaseResource) UnsetGrabs

func (o *ReleaseResource) UnsetGrabs()

UnsetGrabs ensures that no value is present for Grabs, not even an explicit nil

func (*ReleaseResource) UnsetGuid

func (o *ReleaseResource) UnsetGuid()

UnsetGuid ensures that no value is present for Guid, not even an explicit nil

func (*ReleaseResource) UnsetIndexer

func (o *ReleaseResource) UnsetIndexer()

UnsetIndexer ensures that no value is present for Indexer, not even an explicit nil

func (*ReleaseResource) UnsetInfoHash

func (o *ReleaseResource) UnsetInfoHash()

UnsetInfoHash ensures that no value is present for InfoHash, not even an explicit nil

func (*ReleaseResource) UnsetInfoUrl

func (o *ReleaseResource) UnsetInfoUrl()

UnsetInfoUrl ensures that no value is present for InfoUrl, not even an explicit nil

func (*ReleaseResource) UnsetLeechers

func (o *ReleaseResource) UnsetLeechers()

UnsetLeechers ensures that no value is present for Leechers, not even an explicit nil

func (*ReleaseResource) UnsetMagnetUrl

func (o *ReleaseResource) UnsetMagnetUrl()

UnsetMagnetUrl ensures that no value is present for MagnetUrl, not even an explicit nil

func (*ReleaseResource) UnsetPosterUrl

func (o *ReleaseResource) UnsetPosterUrl()

UnsetPosterUrl ensures that no value is present for PosterUrl, not even an explicit nil

func (*ReleaseResource) UnsetReleaseHash

func (o *ReleaseResource) UnsetReleaseHash()

UnsetReleaseHash ensures that no value is present for ReleaseHash, not even an explicit nil

func (*ReleaseResource) UnsetSeeders

func (o *ReleaseResource) UnsetSeeders()

UnsetSeeders ensures that no value is present for Seeders, not even an explicit nil

func (*ReleaseResource) UnsetSubGroup

func (o *ReleaseResource) UnsetSubGroup()

UnsetSubGroup ensures that no value is present for SubGroup, not even an explicit nil

func (*ReleaseResource) UnsetTitle

func (o *ReleaseResource) UnsetTitle()

UnsetTitle ensures that no value is present for Title, not even an explicit nil

type SearchApiService

type SearchApiService service

SearchApiService SearchApi service

func (*SearchApiService) CreateSearch

CreateSearch Method for CreateSearch

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

func (*SearchApiService) CreateSearchBulk

CreateSearchBulk Method for CreateSearchBulk

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

func (*SearchApiService) CreateSearchBulkExecute

func (a *SearchApiService) CreateSearchBulkExecute(r ApiCreateSearchBulkRequest) (*ReleaseResource, *http.Response, error)

Execute executes the request

@return ReleaseResource

func (*SearchApiService) CreateSearchExecute

Execute executes the request

@return ReleaseResource

func (*SearchApiService) GetSearchById

func (a *SearchApiService) GetSearchById(ctx context.Context, id int32) ApiGetSearchByIdRequest

GetSearchById Method for GetSearchById

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

func (*SearchApiService) GetSearchByIdExecute

Execute executes the request

@return ReleaseResource

func (*SearchApiService) ListSearch

ListSearch Method for ListSearch

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

func (*SearchApiService) ListSearchExecute

func (a *SearchApiService) ListSearchExecute(r ApiListSearchRequest) ([]*ReleaseResource, *http.Response, error)

Execute executes the request

@return []ReleaseResource

type SearchParam

type SearchParam string

SearchParam the model 'SearchParam'

const (
	SEARCHPARAM_Q SearchParam = "q"
)

List of SearchParam

func NewSearchParamFromValue

func NewSearchParamFromValue(v string) (*SearchParam, error)

NewSearchParamFromValue returns a pointer to a valid SearchParam for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SearchParam) IsValid

func (v SearchParam) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SearchParam) Ptr

func (v SearchParam) Ptr() *SearchParam

Ptr returns reference to SearchParam value

func (*SearchParam) UnmarshalJSON

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

type SelectOption

type SelectOption struct {
	Value       *int32         `json:"value,omitempty"`
	Name        NullableString `json:"name,omitempty"`
	Order       *int32         `json:"order,omitempty"`
	Hint        NullableString `json:"hint,omitempty"`
	ParentValue NullableInt32  `json:"parentValue,omitempty"`
}

SelectOption struct for SelectOption

func NewSelectOption

func NewSelectOption() *SelectOption

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

func NewSelectOptionWithDefaults

func NewSelectOptionWithDefaults() *SelectOption

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

func (*SelectOption) GetHint

func (o *SelectOption) GetHint() string

GetHint returns the Hint field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SelectOption) GetHintOk

func (o *SelectOption) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SelectOption) GetName

func (o *SelectOption) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SelectOption) GetNameOk

func (o *SelectOption) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SelectOption) GetOrder

func (o *SelectOption) GetOrder() int32

GetOrder returns the Order field value if set, zero value otherwise.

func (*SelectOption) GetOrderOk

func (o *SelectOption) GetOrderOk() (*int32, bool)

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

func (*SelectOption) GetParentValue

func (o *SelectOption) GetParentValue() int32

GetParentValue returns the ParentValue field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SelectOption) GetParentValueOk

func (o *SelectOption) GetParentValueOk() (*int32, bool)

GetParentValueOk returns a tuple with the ParentValue 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 (*SelectOption) GetValue

func (o *SelectOption) GetValue() int32

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

func (*SelectOption) GetValueOk

func (o *SelectOption) GetValueOk() (*int32, 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 (*SelectOption) HasHint

func (o *SelectOption) HasHint() bool

HasHint returns a boolean if a field has been set.

func (*SelectOption) HasName

func (o *SelectOption) HasName() bool

HasName returns a boolean if a field has been set.

func (*SelectOption) HasOrder

func (o *SelectOption) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*SelectOption) HasParentValue

func (o *SelectOption) HasParentValue() bool

HasParentValue returns a boolean if a field has been set.

func (*SelectOption) HasValue

func (o *SelectOption) HasValue() bool

HasValue returns a boolean if a field has been set.

func (SelectOption) MarshalJSON

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

func (*SelectOption) SetHint

func (o *SelectOption) SetHint(v string)

SetHint gets a reference to the given NullableString and assigns it to the Hint field.

func (*SelectOption) SetHintNil

func (o *SelectOption) SetHintNil()

SetHintNil sets the value for Hint to be an explicit nil

func (*SelectOption) SetName

func (o *SelectOption) SetName(v string)

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

func (*SelectOption) SetNameNil

func (o *SelectOption) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*SelectOption) SetOrder

func (o *SelectOption) SetOrder(v int32)

SetOrder gets a reference to the given int32 and assigns it to the Order field.

func (*SelectOption) SetParentValue

func (o *SelectOption) SetParentValue(v int32)

SetParentValue gets a reference to the given NullableInt32 and assigns it to the ParentValue field.

func (*SelectOption) SetParentValueNil

func (o *SelectOption) SetParentValueNil()

SetParentValueNil sets the value for ParentValue to be an explicit nil

func (*SelectOption) SetValue

func (o *SelectOption) SetValue(v int32)

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

func (*SelectOption) UnsetHint

func (o *SelectOption) UnsetHint()

UnsetHint ensures that no value is present for Hint, not even an explicit nil

func (*SelectOption) UnsetName

func (o *SelectOption) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*SelectOption) UnsetParentValue

func (o *SelectOption) UnsetParentValue()

UnsetParentValue ensures that no value is present for ParentValue, not even an explicit nil

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SortDirection

type SortDirection string

SortDirection the model 'SortDirection'

const (
	SORTDIRECTION_DEFAULT    SortDirection = "default"
	SORTDIRECTION_ASCENDING  SortDirection = "ascending"
	SORTDIRECTION_DESCENDING SortDirection = "descending"
)

List of SortDirection

func NewSortDirectionFromValue

func NewSortDirectionFromValue(v string) (*SortDirection, error)

NewSortDirectionFromValue returns a pointer to a valid SortDirection for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SortDirection) IsValid

func (v SortDirection) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SortDirection) Ptr

func (v SortDirection) Ptr() *SortDirection

Ptr returns reference to SortDirection value

func (*SortDirection) UnmarshalJSON

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

type StaticResourceApiService

type StaticResourceApiService service

StaticResourceApiService StaticResourceApi service

func (*StaticResourceApiService) Get

Get Method for Get

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

func (*StaticResourceApiService) GetByPath

GetByPath Method for GetByPath

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

func (*StaticResourceApiService) GetByPathExecute

func (a *StaticResourceApiService) GetByPathExecute(r ApiGetByPathRequest) (*http.Response, error)

Execute executes the request

func (*StaticResourceApiService) GetContentByPath

GetContentByPath Method for GetContentByPath

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

func (*StaticResourceApiService) GetContentByPathExecute

func (a *StaticResourceApiService) GetContentByPathExecute(r ApiGetContentByPathRequest) (*http.Response, error)

Execute executes the request

func (*StaticResourceApiService) GetExecute

Execute executes the request

func (*StaticResourceApiService) GetLogin

GetLogin Method for GetLogin

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

func (*StaticResourceApiService) GetLoginExecute

Execute executes the request

type SystemApiService

type SystemApiService service

SystemApiService SystemApi service

func (*SystemApiService) CreateSystemRestart

func (a *SystemApiService) CreateSystemRestart(ctx context.Context) ApiCreateSystemRestartRequest

CreateSystemRestart Method for CreateSystemRestart

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

func (*SystemApiService) CreateSystemRestartExecute

func (a *SystemApiService) CreateSystemRestartExecute(r ApiCreateSystemRestartRequest) (*http.Response, error)

Execute executes the request

func (*SystemApiService) CreateSystemShutdown

func (a *SystemApiService) CreateSystemShutdown(ctx context.Context) ApiCreateSystemShutdownRequest

CreateSystemShutdown Method for CreateSystemShutdown

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

func (*SystemApiService) CreateSystemShutdownExecute

func (a *SystemApiService) CreateSystemShutdownExecute(r ApiCreateSystemShutdownRequest) (*http.Response, error)

Execute executes the request

func (*SystemApiService) GetSystemRoutes

GetSystemRoutes Method for GetSystemRoutes

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

func (*SystemApiService) GetSystemRoutesDuplicate

func (a *SystemApiService) GetSystemRoutesDuplicate(ctx context.Context) ApiGetSystemRoutesDuplicateRequest

GetSystemRoutesDuplicate Method for GetSystemRoutesDuplicate

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

func (*SystemApiService) GetSystemRoutesDuplicateExecute

func (a *SystemApiService) GetSystemRoutesDuplicateExecute(r ApiGetSystemRoutesDuplicateRequest) (*http.Response, error)

Execute executes the request

func (*SystemApiService) GetSystemRoutesExecute

func (a *SystemApiService) GetSystemRoutesExecute(r ApiGetSystemRoutesRequest) (*http.Response, error)

Execute executes the request

func (*SystemApiService) GetSystemStatus

GetSystemStatus Method for GetSystemStatus

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

func (*SystemApiService) GetSystemStatusExecute

func (a *SystemApiService) GetSystemStatusExecute(r ApiGetSystemStatusRequest) (*http.Response, error)

Execute executes the request

type TagApiService

type TagApiService service

TagApiService TagApi service

func (*TagApiService) CreateTag

CreateTag Method for CreateTag

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

func (*TagApiService) CreateTagExecute

func (a *TagApiService) CreateTagExecute(r ApiCreateTagRequest) (*TagResource, *http.Response, error)

Execute executes the request

@return TagResource

func (*TagApiService) DeleteTag

func (a *TagApiService) DeleteTag(ctx context.Context, id int32) ApiDeleteTagRequest

DeleteTag Method for DeleteTag

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

func (*TagApiService) DeleteTagExecute

func (a *TagApiService) DeleteTagExecute(r ApiDeleteTagRequest) (*http.Response, error)

Execute executes the request

func (*TagApiService) GetTagById

func (a *TagApiService) GetTagById(ctx context.Context, id int32) ApiGetTagByIdRequest

GetTagById Method for GetTagById

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

func (*TagApiService) GetTagByIdExecute

func (a *TagApiService) GetTagByIdExecute(r ApiGetTagByIdRequest) (*TagResource, *http.Response, error)

Execute executes the request

@return TagResource

func (*TagApiService) ListTag

ListTag Method for ListTag

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

func (*TagApiService) ListTagExecute

func (a *TagApiService) ListTagExecute(r ApiListTagRequest) ([]*TagResource, *http.Response, error)

Execute executes the request

@return []TagResource

func (*TagApiService) UpdateTag

func (a *TagApiService) UpdateTag(ctx context.Context, id string) ApiUpdateTagRequest

UpdateTag Method for UpdateTag

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

func (*TagApiService) UpdateTagExecute

func (a *TagApiService) UpdateTagExecute(r ApiUpdateTagRequest) (*TagResource, *http.Response, error)

Execute executes the request

@return TagResource

type TagDetailsApiService

type TagDetailsApiService service

TagDetailsApiService TagDetailsApi service

func (*TagDetailsApiService) GetTagDetailById

GetTagDetailById Method for GetTagDetailById

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

func (*TagDetailsApiService) GetTagDetailByIdExecute

Execute executes the request

@return TagDetailsResource

func (*TagDetailsApiService) ListTagDetail

ListTagDetail Method for ListTagDetail

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

func (*TagDetailsApiService) ListTagDetailExecute

Execute executes the request

@return []TagDetailsResource

type TagDetailsResource

type TagDetailsResource struct {
	Id              *int32         `json:"id,omitempty"`
	Label           NullableString `json:"label,omitempty"`
	NotificationIds []*int32       `json:"notificationIds,omitempty"`
	IndexerIds      []*int32       `json:"indexerIds,omitempty"`
	IndexerProxyIds []*int32       `json:"indexerProxyIds,omitempty"`
}

TagDetailsResource struct for TagDetailsResource

func NewTagDetailsResource

func NewTagDetailsResource() *TagDetailsResource

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

func NewTagDetailsResourceWithDefaults

func NewTagDetailsResourceWithDefaults() *TagDetailsResource

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

func (*TagDetailsResource) GetId

func (o *TagDetailsResource) GetId() int32

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

func (*TagDetailsResource) GetIdOk

func (o *TagDetailsResource) 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 (*TagDetailsResource) GetIndexerIds

func (o *TagDetailsResource) GetIndexerIds() []*int32

GetIndexerIds returns the IndexerIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TagDetailsResource) GetIndexerIdsOk

func (o *TagDetailsResource) GetIndexerIdsOk() ([]*int32, bool)

GetIndexerIdsOk returns a tuple with the IndexerIds 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 (*TagDetailsResource) GetIndexerProxyIds

func (o *TagDetailsResource) GetIndexerProxyIds() []*int32

GetIndexerProxyIds returns the IndexerProxyIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TagDetailsResource) GetIndexerProxyIdsOk

func (o *TagDetailsResource) GetIndexerProxyIdsOk() ([]*int32, bool)

GetIndexerProxyIdsOk returns a tuple with the IndexerProxyIds 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 (*TagDetailsResource) GetLabel

func (o *TagDetailsResource) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TagDetailsResource) GetLabelOk

func (o *TagDetailsResource) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label 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 (*TagDetailsResource) GetNotificationIds

func (o *TagDetailsResource) GetNotificationIds() []*int32

GetNotificationIds returns the NotificationIds field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TagDetailsResource) GetNotificationIdsOk

func (o *TagDetailsResource) GetNotificationIdsOk() ([]*int32, bool)

GetNotificationIdsOk returns a tuple with the NotificationIds 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 (*TagDetailsResource) HasId

func (o *TagDetailsResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*TagDetailsResource) HasIndexerIds

func (o *TagDetailsResource) HasIndexerIds() bool

HasIndexerIds returns a boolean if a field has been set.

func (*TagDetailsResource) HasIndexerProxyIds

func (o *TagDetailsResource) HasIndexerProxyIds() bool

HasIndexerProxyIds returns a boolean if a field has been set.

func (*TagDetailsResource) HasLabel

func (o *TagDetailsResource) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*TagDetailsResource) HasNotificationIds

func (o *TagDetailsResource) HasNotificationIds() bool

HasNotificationIds returns a boolean if a field has been set.

func (TagDetailsResource) MarshalJSON

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

func (*TagDetailsResource) SetId

func (o *TagDetailsResource) SetId(v int32)

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

func (*TagDetailsResource) SetIndexerIds

func (o *TagDetailsResource) SetIndexerIds(v []*int32)

SetIndexerIds gets a reference to the given []int32 and assigns it to the IndexerIds field.

func (*TagDetailsResource) SetIndexerProxyIds

func (o *TagDetailsResource) SetIndexerProxyIds(v []*int32)

SetIndexerProxyIds gets a reference to the given []int32 and assigns it to the IndexerProxyIds field.

func (*TagDetailsResource) SetLabel

func (o *TagDetailsResource) SetLabel(v string)

SetLabel gets a reference to the given NullableString and assigns it to the Label field.

func (*TagDetailsResource) SetLabelNil

func (o *TagDetailsResource) SetLabelNil()

SetLabelNil sets the value for Label to be an explicit nil

func (*TagDetailsResource) SetNotificationIds

func (o *TagDetailsResource) SetNotificationIds(v []*int32)

SetNotificationIds gets a reference to the given []int32 and assigns it to the NotificationIds field.

func (*TagDetailsResource) UnsetLabel

func (o *TagDetailsResource) UnsetLabel()

UnsetLabel ensures that no value is present for Label, not even an explicit nil

type TagResource

type TagResource struct {
	Id    *int32         `json:"id,omitempty"`
	Label NullableString `json:"label,omitempty"`
}

TagResource struct for TagResource

func NewTagResource

func NewTagResource() *TagResource

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

func NewTagResourceWithDefaults

func NewTagResourceWithDefaults() *TagResource

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

func (*TagResource) GetId

func (o *TagResource) GetId() int32

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

func (*TagResource) GetIdOk

func (o *TagResource) 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 (*TagResource) GetLabel

func (o *TagResource) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TagResource) GetLabelOk

func (o *TagResource) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label 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 (*TagResource) HasId

func (o *TagResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*TagResource) HasLabel

func (o *TagResource) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (TagResource) MarshalJSON

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

func (*TagResource) SetId

func (o *TagResource) SetId(v int32)

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

func (*TagResource) SetLabel

func (o *TagResource) SetLabel(v string)

SetLabel gets a reference to the given NullableString and assigns it to the Label field.

func (*TagResource) SetLabelNil

func (o *TagResource) SetLabelNil()

SetLabelNil sets the value for Label to be an explicit nil

func (*TagResource) UnsetLabel

func (o *TagResource) UnsetLabel()

UnsetLabel ensures that no value is present for Label, not even an explicit nil

type TaskApiService

type TaskApiService service

TaskApiService TaskApi service

func (*TaskApiService) GetSystemTaskById

func (a *TaskApiService) GetSystemTaskById(ctx context.Context, id int32) ApiGetSystemTaskByIdRequest

GetSystemTaskById Method for GetSystemTaskById

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

func (*TaskApiService) GetSystemTaskByIdExecute

func (a *TaskApiService) GetSystemTaskByIdExecute(r ApiGetSystemTaskByIdRequest) (*TaskResource, *http.Response, error)

Execute executes the request

@return TaskResource

func (*TaskApiService) ListSystemTask

func (a *TaskApiService) ListSystemTask(ctx context.Context) ApiListSystemTaskRequest

ListSystemTask Method for ListSystemTask

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

func (*TaskApiService) ListSystemTaskExecute

func (a *TaskApiService) ListSystemTaskExecute(r ApiListSystemTaskRequest) ([]*TaskResource, *http.Response, error)

Execute executes the request

@return []TaskResource

type TaskResource

type TaskResource struct {
	Id            *int32         `json:"id,omitempty"`
	Name          NullableString `json:"name,omitempty"`
	TaskName      NullableString `json:"taskName,omitempty"`
	Interval      *int32         `json:"interval,omitempty"`
	LastExecution *time.Time     `json:"lastExecution,omitempty"`
	LastStartTime *time.Time     `json:"lastStartTime,omitempty"`
	NextExecution *time.Time     `json:"nextExecution,omitempty"`
	LastDuration  *TimeSpan      `json:"lastDuration,omitempty"`
}

TaskResource struct for TaskResource

func NewTaskResource

func NewTaskResource() *TaskResource

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

func NewTaskResourceWithDefaults

func NewTaskResourceWithDefaults() *TaskResource

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

func (*TaskResource) GetId

func (o *TaskResource) GetId() int32

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

func (*TaskResource) GetIdOk

func (o *TaskResource) 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 (*TaskResource) GetInterval

func (o *TaskResource) GetInterval() int32

GetInterval returns the Interval field value if set, zero value otherwise.

func (*TaskResource) GetIntervalOk

func (o *TaskResource) GetIntervalOk() (*int32, bool)

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 (*TaskResource) GetLastDuration

func (o *TaskResource) GetLastDuration() TimeSpan

GetLastDuration returns the LastDuration field value if set, zero value otherwise.

func (*TaskResource) GetLastDurationOk

func (o *TaskResource) GetLastDurationOk() (*TimeSpan, bool)

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

func (*TaskResource) GetLastExecution

func (o *TaskResource) GetLastExecution() time.Time

GetLastExecution returns the LastExecution field value if set, zero value otherwise.

func (*TaskResource) GetLastExecutionOk

func (o *TaskResource) GetLastExecutionOk() (*time.Time, bool)

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

func (*TaskResource) GetLastStartTime

func (o *TaskResource) GetLastStartTime() time.Time

GetLastStartTime returns the LastStartTime field value if set, zero value otherwise.

func (*TaskResource) GetLastStartTimeOk

func (o *TaskResource) GetLastStartTimeOk() (*time.Time, bool)

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

func (*TaskResource) GetName

func (o *TaskResource) GetName() string

GetName returns the Name field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskResource) GetNameOk

func (o *TaskResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TaskResource) GetNextExecution

func (o *TaskResource) GetNextExecution() time.Time

GetNextExecution returns the NextExecution field value if set, zero value otherwise.

func (*TaskResource) GetNextExecutionOk

func (o *TaskResource) GetNextExecutionOk() (*time.Time, bool)

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

func (*TaskResource) GetTaskName

func (o *TaskResource) GetTaskName() string

GetTaskName returns the TaskName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TaskResource) GetTaskNameOk

func (o *TaskResource) GetTaskNameOk() (*string, bool)

GetTaskNameOk returns a tuple with the TaskName 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 (*TaskResource) HasId

func (o *TaskResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*TaskResource) HasInterval

func (o *TaskResource) HasInterval() bool

HasInterval returns a boolean if a field has been set.

func (*TaskResource) HasLastDuration

func (o *TaskResource) HasLastDuration() bool

HasLastDuration returns a boolean if a field has been set.

func (*TaskResource) HasLastExecution

func (o *TaskResource) HasLastExecution() bool

HasLastExecution returns a boolean if a field has been set.

func (*TaskResource) HasLastStartTime

func (o *TaskResource) HasLastStartTime() bool

HasLastStartTime returns a boolean if a field has been set.

func (*TaskResource) HasName

func (o *TaskResource) HasName() bool

HasName returns a boolean if a field has been set.

func (*TaskResource) HasNextExecution

func (o *TaskResource) HasNextExecution() bool

HasNextExecution returns a boolean if a field has been set.

func (*TaskResource) HasTaskName

func (o *TaskResource) HasTaskName() bool

HasTaskName returns a boolean if a field has been set.

func (TaskResource) MarshalJSON

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

func (*TaskResource) SetId

func (o *TaskResource) SetId(v int32)

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

func (*TaskResource) SetInterval

func (o *TaskResource) SetInterval(v int32)

SetInterval gets a reference to the given int32 and assigns it to the Interval field.

func (*TaskResource) SetLastDuration

func (o *TaskResource) SetLastDuration(v TimeSpan)

SetLastDuration gets a reference to the given TimeSpan and assigns it to the LastDuration field.

func (*TaskResource) SetLastExecution

func (o *TaskResource) SetLastExecution(v time.Time)

SetLastExecution gets a reference to the given time.Time and assigns it to the LastExecution field.

func (*TaskResource) SetLastStartTime

func (o *TaskResource) SetLastStartTime(v time.Time)

SetLastStartTime gets a reference to the given time.Time and assigns it to the LastStartTime field.

func (*TaskResource) SetName

func (o *TaskResource) SetName(v string)

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

func (*TaskResource) SetNameNil

func (o *TaskResource) SetNameNil()

SetNameNil sets the value for Name to be an explicit nil

func (*TaskResource) SetNextExecution

func (o *TaskResource) SetNextExecution(v time.Time)

SetNextExecution gets a reference to the given time.Time and assigns it to the NextExecution field.

func (*TaskResource) SetTaskName

func (o *TaskResource) SetTaskName(v string)

SetTaskName gets a reference to the given NullableString and assigns it to the TaskName field.

func (*TaskResource) SetTaskNameNil

func (o *TaskResource) SetTaskNameNil()

SetTaskNameNil sets the value for TaskName to be an explicit nil

func (*TaskResource) UnsetName

func (o *TaskResource) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

func (*TaskResource) UnsetTaskName

func (o *TaskResource) UnsetTaskName()

UnsetTaskName ensures that no value is present for TaskName, not even an explicit nil

type TimeSpan

type TimeSpan struct {
	Ticks             *int64   `json:"ticks,omitempty"`
	Days              *int32   `json:"days,omitempty"`
	Hours             *int32   `json:"hours,omitempty"`
	Milliseconds      *int32   `json:"milliseconds,omitempty"`
	Minutes           *int32   `json:"minutes,omitempty"`
	Seconds           *int32   `json:"seconds,omitempty"`
	TotalDays         *float64 `json:"totalDays,omitempty"`
	TotalHours        *float64 `json:"totalHours,omitempty"`
	TotalMilliseconds *float64 `json:"totalMilliseconds,omitempty"`
	TotalMinutes      *float64 `json:"totalMinutes,omitempty"`
	TotalSeconds      *float64 `json:"totalSeconds,omitempty"`
}

TimeSpan struct for TimeSpan

func NewTimeSpan

func NewTimeSpan() *TimeSpan

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

func NewTimeSpanWithDefaults

func NewTimeSpanWithDefaults() *TimeSpan

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

func (*TimeSpan) GetDays

func (o *TimeSpan) GetDays() int32

GetDays returns the Days field value if set, zero value otherwise.

func (*TimeSpan) GetDaysOk

func (o *TimeSpan) GetDaysOk() (*int32, bool)

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 (*TimeSpan) GetHours

func (o *TimeSpan) GetHours() int32

GetHours returns the Hours field value if set, zero value otherwise.

func (*TimeSpan) GetHoursOk

func (o *TimeSpan) GetHoursOk() (*int32, bool)

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

func (*TimeSpan) GetMilliseconds

func (o *TimeSpan) GetMilliseconds() int32

GetMilliseconds returns the Milliseconds field value if set, zero value otherwise.

func (*TimeSpan) GetMillisecondsOk

func (o *TimeSpan) GetMillisecondsOk() (*int32, bool)

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

func (*TimeSpan) GetMinutes

func (o *TimeSpan) GetMinutes() int32

GetMinutes returns the Minutes field value if set, zero value otherwise.

func (*TimeSpan) GetMinutesOk

func (o *TimeSpan) GetMinutesOk() (*int32, bool)

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 (*TimeSpan) GetSeconds

func (o *TimeSpan) GetSeconds() int32

GetSeconds returns the Seconds field value if set, zero value otherwise.

func (*TimeSpan) GetSecondsOk

func (o *TimeSpan) GetSecondsOk() (*int32, bool)

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

func (*TimeSpan) GetTicks

func (o *TimeSpan) GetTicks() int64

GetTicks returns the Ticks field value if set, zero value otherwise.

func (*TimeSpan) GetTicksOk

func (o *TimeSpan) GetTicksOk() (*int64, bool)

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

func (*TimeSpan) GetTotalDays

func (o *TimeSpan) GetTotalDays() float64

GetTotalDays returns the TotalDays field value if set, zero value otherwise.

func (*TimeSpan) GetTotalDaysOk

func (o *TimeSpan) GetTotalDaysOk() (*float64, bool)

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

func (*TimeSpan) GetTotalHours

func (o *TimeSpan) GetTotalHours() float64

GetTotalHours returns the TotalHours field value if set, zero value otherwise.

func (*TimeSpan) GetTotalHoursOk

func (o *TimeSpan) GetTotalHoursOk() (*float64, bool)

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

func (*TimeSpan) GetTotalMilliseconds

func (o *TimeSpan) GetTotalMilliseconds() float64

GetTotalMilliseconds returns the TotalMilliseconds field value if set, zero value otherwise.

func (*TimeSpan) GetTotalMillisecondsOk

func (o *TimeSpan) GetTotalMillisecondsOk() (*float64, bool)

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

func (*TimeSpan) GetTotalMinutes

func (o *TimeSpan) GetTotalMinutes() float64

GetTotalMinutes returns the TotalMinutes field value if set, zero value otherwise.

func (*TimeSpan) GetTotalMinutesOk

func (o *TimeSpan) GetTotalMinutesOk() (*float64, bool)

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

func (*TimeSpan) GetTotalSeconds

func (o *TimeSpan) GetTotalSeconds() float64

GetTotalSeconds returns the TotalSeconds field value if set, zero value otherwise.

func (*TimeSpan) GetTotalSecondsOk

func (o *TimeSpan) GetTotalSecondsOk() (*float64, bool)

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

func (*TimeSpan) HasDays

func (o *TimeSpan) HasDays() bool

HasDays returns a boolean if a field has been set.

func (*TimeSpan) HasHours

func (o *TimeSpan) HasHours() bool

HasHours returns a boolean if a field has been set.

func (*TimeSpan) HasMilliseconds

func (o *TimeSpan) HasMilliseconds() bool

HasMilliseconds returns a boolean if a field has been set.

func (*TimeSpan) HasMinutes

func (o *TimeSpan) HasMinutes() bool

HasMinutes returns a boolean if a field has been set.

func (*TimeSpan) HasSeconds

func (o *TimeSpan) HasSeconds() bool

HasSeconds returns a boolean if a field has been set.

func (*TimeSpan) HasTicks

func (o *TimeSpan) HasTicks() bool

HasTicks returns a boolean if a field has been set.

func (*TimeSpan) HasTotalDays

func (o *TimeSpan) HasTotalDays() bool

HasTotalDays returns a boolean if a field has been set.

func (*TimeSpan) HasTotalHours

func (o *TimeSpan) HasTotalHours() bool

HasTotalHours returns a boolean if a field has been set.

func (*TimeSpan) HasTotalMilliseconds

func (o *TimeSpan) HasTotalMilliseconds() bool

HasTotalMilliseconds returns a boolean if a field has been set.

func (*TimeSpan) HasTotalMinutes

func (o *TimeSpan) HasTotalMinutes() bool

HasTotalMinutes returns a boolean if a field has been set.

func (*TimeSpan) HasTotalSeconds

func (o *TimeSpan) HasTotalSeconds() bool

HasTotalSeconds returns a boolean if a field has been set.

func (TimeSpan) MarshalJSON

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

func (*TimeSpan) SetDays

func (o *TimeSpan) SetDays(v int32)

SetDays gets a reference to the given int32 and assigns it to the Days field.

func (*TimeSpan) SetHours

func (o *TimeSpan) SetHours(v int32)

SetHours gets a reference to the given int32 and assigns it to the Hours field.

func (*TimeSpan) SetMilliseconds

func (o *TimeSpan) SetMilliseconds(v int32)

SetMilliseconds gets a reference to the given int32 and assigns it to the Milliseconds field.

func (*TimeSpan) SetMinutes

func (o *TimeSpan) SetMinutes(v int32)

SetMinutes gets a reference to the given int32 and assigns it to the Minutes field.

func (*TimeSpan) SetSeconds

func (o *TimeSpan) SetSeconds(v int32)

SetSeconds gets a reference to the given int32 and assigns it to the Seconds field.

func (*TimeSpan) SetTicks

func (o *TimeSpan) SetTicks(v int64)

SetTicks gets a reference to the given int64 and assigns it to the Ticks field.

func (*TimeSpan) SetTotalDays

func (o *TimeSpan) SetTotalDays(v float64)

SetTotalDays gets a reference to the given float64 and assigns it to the TotalDays field.

func (*TimeSpan) SetTotalHours

func (o *TimeSpan) SetTotalHours(v float64)

SetTotalHours gets a reference to the given float64 and assigns it to the TotalHours field.

func (*TimeSpan) SetTotalMilliseconds

func (o *TimeSpan) SetTotalMilliseconds(v float64)

SetTotalMilliseconds gets a reference to the given float64 and assigns it to the TotalMilliseconds field.

func (*TimeSpan) SetTotalMinutes

func (o *TimeSpan) SetTotalMinutes(v float64)

SetTotalMinutes gets a reference to the given float64 and assigns it to the TotalMinutes field.

func (*TimeSpan) SetTotalSeconds

func (o *TimeSpan) SetTotalSeconds(v float64)

SetTotalSeconds gets a reference to the given float64 and assigns it to the TotalSeconds field.

type TvSearchParam

type TvSearchParam string

TvSearchParam the model 'TvSearchParam'

const (
	TVSEARCHPARAM_Q          TvSearchParam = "q"
	TVSEARCHPARAM_SEASON     TvSearchParam = "season"
	TVSEARCHPARAM_EP         TvSearchParam = "ep"
	TVSEARCHPARAM_IMDB_ID    TvSearchParam = "imdbId"
	TVSEARCHPARAM_TVDB_ID    TvSearchParam = "tvdbId"
	TVSEARCHPARAM_R_ID       TvSearchParam = "rId"
	TVSEARCHPARAM_TV_MAZE_ID TvSearchParam = "tvMazeId"
	TVSEARCHPARAM_TRAKT_ID   TvSearchParam = "traktId"
	TVSEARCHPARAM_TMDB_ID    TvSearchParam = "tmdbId"
	TVSEARCHPARAM_DOUBAN_ID  TvSearchParam = "doubanId"
	TVSEARCHPARAM_GENRE      TvSearchParam = "genre"
	TVSEARCHPARAM_YEAR       TvSearchParam = "year"
)

List of TvSearchParam

func NewTvSearchParamFromValue

func NewTvSearchParamFromValue(v string) (*TvSearchParam, error)

NewTvSearchParamFromValue returns a pointer to a valid TvSearchParam for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TvSearchParam) IsValid

func (v TvSearchParam) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TvSearchParam) Ptr

func (v TvSearchParam) Ptr() *TvSearchParam

Ptr returns reference to TvSearchParam value

func (*TvSearchParam) UnmarshalJSON

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

type UiConfigApiService

type UiConfigApiService service

UiConfigApiService UiConfigApi service

func (*UiConfigApiService) GetUiConfig

GetUiConfig Method for GetUiConfig

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

func (*UiConfigApiService) GetUiConfigById

GetUiConfigById Method for GetUiConfigById

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

func (*UiConfigApiService) GetUiConfigByIdExecute

Execute executes the request

@return UiConfigResource

func (*UiConfigApiService) GetUiConfigExecute

Execute executes the request

@return UiConfigResource

func (*UiConfigApiService) UpdateUiConfig

UpdateUiConfig Method for UpdateUiConfig

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

func (*UiConfigApiService) UpdateUiConfigExecute

Execute executes the request

@return UiConfigResource

type UiConfigResource

type UiConfigResource struct {
	Id                       *int32         `json:"id,omitempty"`
	FirstDayOfWeek           *int32         `json:"firstDayOfWeek,omitempty"`
	CalendarWeekColumnHeader NullableString `json:"calendarWeekColumnHeader,omitempty"`
	ShortDateFormat          NullableString `json:"shortDateFormat,omitempty"`
	LongDateFormat           NullableString `json:"longDateFormat,omitempty"`
	TimeFormat               NullableString `json:"timeFormat,omitempty"`
	ShowRelativeDates        *bool          `json:"showRelativeDates,omitempty"`
	EnableColorImpairedMode  *bool          `json:"enableColorImpairedMode,omitempty"`
	UiLanguage               NullableString `json:"uiLanguage,omitempty"`
	Theme                    NullableString `json:"theme,omitempty"`
}

UiConfigResource struct for UiConfigResource

func NewUiConfigResource

func NewUiConfigResource() *UiConfigResource

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

func NewUiConfigResourceWithDefaults

func NewUiConfigResourceWithDefaults() *UiConfigResource

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

func (*UiConfigResource) GetCalendarWeekColumnHeader

func (o *UiConfigResource) GetCalendarWeekColumnHeader() string

GetCalendarWeekColumnHeader returns the CalendarWeekColumnHeader field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UiConfigResource) GetCalendarWeekColumnHeaderOk

func (o *UiConfigResource) GetCalendarWeekColumnHeaderOk() (*string, bool)

GetCalendarWeekColumnHeaderOk returns a tuple with the CalendarWeekColumnHeader 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 (*UiConfigResource) GetEnableColorImpairedMode

func (o *UiConfigResource) GetEnableColorImpairedMode() bool

GetEnableColorImpairedMode returns the EnableColorImpairedMode field value if set, zero value otherwise.

func (*UiConfigResource) GetEnableColorImpairedModeOk

func (o *UiConfigResource) GetEnableColorImpairedModeOk() (*bool, bool)

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

func (*UiConfigResource) GetFirstDayOfWeek

func (o *UiConfigResource) GetFirstDayOfWeek() int32

GetFirstDayOfWeek returns the FirstDayOfWeek field value if set, zero value otherwise.

func (*UiConfigResource) GetFirstDayOfWeekOk

func (o *UiConfigResource) GetFirstDayOfWeekOk() (*int32, bool)

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

func (*UiConfigResource) GetId

func (o *UiConfigResource) GetId() int32

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

func (*UiConfigResource) GetIdOk

func (o *UiConfigResource) 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 (*UiConfigResource) GetLongDateFormat

func (o *UiConfigResource) GetLongDateFormat() string

GetLongDateFormat returns the LongDateFormat field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UiConfigResource) GetLongDateFormatOk

func (o *UiConfigResource) GetLongDateFormatOk() (*string, bool)

GetLongDateFormatOk returns a tuple with the LongDateFormat 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 (*UiConfigResource) GetShortDateFormat

func (o *UiConfigResource) GetShortDateFormat() string

GetShortDateFormat returns the ShortDateFormat field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UiConfigResource) GetShortDateFormatOk

func (o *UiConfigResource) GetShortDateFormatOk() (*string, bool)

GetShortDateFormatOk returns a tuple with the ShortDateFormat 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 (*UiConfigResource) GetShowRelativeDates

func (o *UiConfigResource) GetShowRelativeDates() bool

GetShowRelativeDates returns the ShowRelativeDates field value if set, zero value otherwise.

func (*UiConfigResource) GetShowRelativeDatesOk

func (o *UiConfigResource) GetShowRelativeDatesOk() (*bool, bool)

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

func (*UiConfigResource) GetTheme

func (o *UiConfigResource) GetTheme() string

GetTheme returns the Theme field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UiConfigResource) GetThemeOk

func (o *UiConfigResource) GetThemeOk() (*string, bool)

GetThemeOk returns a tuple with the Theme 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 (*UiConfigResource) GetTimeFormat

func (o *UiConfigResource) GetTimeFormat() string

GetTimeFormat returns the TimeFormat field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UiConfigResource) GetTimeFormatOk

func (o *UiConfigResource) GetTimeFormatOk() (*string, bool)

GetTimeFormatOk returns a tuple with the TimeFormat 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 (*UiConfigResource) GetUiLanguage

func (o *UiConfigResource) GetUiLanguage() string

GetUiLanguage returns the UiLanguage field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UiConfigResource) GetUiLanguageOk

func (o *UiConfigResource) GetUiLanguageOk() (*string, bool)

GetUiLanguageOk returns a tuple with the UiLanguage 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 (*UiConfigResource) HasCalendarWeekColumnHeader

func (o *UiConfigResource) HasCalendarWeekColumnHeader() bool

HasCalendarWeekColumnHeader returns a boolean if a field has been set.

func (*UiConfigResource) HasEnableColorImpairedMode

func (o *UiConfigResource) HasEnableColorImpairedMode() bool

HasEnableColorImpairedMode returns a boolean if a field has been set.

func (*UiConfigResource) HasFirstDayOfWeek

func (o *UiConfigResource) HasFirstDayOfWeek() bool

HasFirstDayOfWeek returns a boolean if a field has been set.

func (*UiConfigResource) HasId

func (o *UiConfigResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*UiConfigResource) HasLongDateFormat

func (o *UiConfigResource) HasLongDateFormat() bool

HasLongDateFormat returns a boolean if a field has been set.

func (*UiConfigResource) HasShortDateFormat

func (o *UiConfigResource) HasShortDateFormat() bool

HasShortDateFormat returns a boolean if a field has been set.

func (*UiConfigResource) HasShowRelativeDates

func (o *UiConfigResource) HasShowRelativeDates() bool

HasShowRelativeDates returns a boolean if a field has been set.

func (*UiConfigResource) HasTheme

func (o *UiConfigResource) HasTheme() bool

HasTheme returns a boolean if a field has been set.

func (*UiConfigResource) HasTimeFormat

func (o *UiConfigResource) HasTimeFormat() bool

HasTimeFormat returns a boolean if a field has been set.

func (*UiConfigResource) HasUiLanguage

func (o *UiConfigResource) HasUiLanguage() bool

HasUiLanguage returns a boolean if a field has been set.

func (UiConfigResource) MarshalJSON

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

func (*UiConfigResource) SetCalendarWeekColumnHeader

func (o *UiConfigResource) SetCalendarWeekColumnHeader(v string)

SetCalendarWeekColumnHeader gets a reference to the given NullableString and assigns it to the CalendarWeekColumnHeader field.

func (*UiConfigResource) SetCalendarWeekColumnHeaderNil

func (o *UiConfigResource) SetCalendarWeekColumnHeaderNil()

SetCalendarWeekColumnHeaderNil sets the value for CalendarWeekColumnHeader to be an explicit nil

func (*UiConfigResource) SetEnableColorImpairedMode

func (o *UiConfigResource) SetEnableColorImpairedMode(v bool)

SetEnableColorImpairedMode gets a reference to the given bool and assigns it to the EnableColorImpairedMode field.

func (*UiConfigResource) SetFirstDayOfWeek

func (o *UiConfigResource) SetFirstDayOfWeek(v int32)

SetFirstDayOfWeek gets a reference to the given int32 and assigns it to the FirstDayOfWeek field.

func (*UiConfigResource) SetId

func (o *UiConfigResource) SetId(v int32)

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

func (*UiConfigResource) SetLongDateFormat

func (o *UiConfigResource) SetLongDateFormat(v string)

SetLongDateFormat gets a reference to the given NullableString and assigns it to the LongDateFormat field.

func (*UiConfigResource) SetLongDateFormatNil

func (o *UiConfigResource) SetLongDateFormatNil()

SetLongDateFormatNil sets the value for LongDateFormat to be an explicit nil

func (*UiConfigResource) SetShortDateFormat

func (o *UiConfigResource) SetShortDateFormat(v string)

SetShortDateFormat gets a reference to the given NullableString and assigns it to the ShortDateFormat field.

func (*UiConfigResource) SetShortDateFormatNil

func (o *UiConfigResource) SetShortDateFormatNil()

SetShortDateFormatNil sets the value for ShortDateFormat to be an explicit nil

func (*UiConfigResource) SetShowRelativeDates

func (o *UiConfigResource) SetShowRelativeDates(v bool)

SetShowRelativeDates gets a reference to the given bool and assigns it to the ShowRelativeDates field.

func (*UiConfigResource) SetTheme

func (o *UiConfigResource) SetTheme(v string)

SetTheme gets a reference to the given NullableString and assigns it to the Theme field.

func (*UiConfigResource) SetThemeNil

func (o *UiConfigResource) SetThemeNil()

SetThemeNil sets the value for Theme to be an explicit nil

func (*UiConfigResource) SetTimeFormat

func (o *UiConfigResource) SetTimeFormat(v string)

SetTimeFormat gets a reference to the given NullableString and assigns it to the TimeFormat field.

func (*UiConfigResource) SetTimeFormatNil

func (o *UiConfigResource) SetTimeFormatNil()

SetTimeFormatNil sets the value for TimeFormat to be an explicit nil

func (*UiConfigResource) SetUiLanguage

func (o *UiConfigResource) SetUiLanguage(v string)

SetUiLanguage gets a reference to the given NullableString and assigns it to the UiLanguage field.

func (*UiConfigResource) SetUiLanguageNil

func (o *UiConfigResource) SetUiLanguageNil()

SetUiLanguageNil sets the value for UiLanguage to be an explicit nil

func (*UiConfigResource) UnsetCalendarWeekColumnHeader

func (o *UiConfigResource) UnsetCalendarWeekColumnHeader()

UnsetCalendarWeekColumnHeader ensures that no value is present for CalendarWeekColumnHeader, not even an explicit nil

func (*UiConfigResource) UnsetLongDateFormat

func (o *UiConfigResource) UnsetLongDateFormat()

UnsetLongDateFormat ensures that no value is present for LongDateFormat, not even an explicit nil

func (*UiConfigResource) UnsetShortDateFormat

func (o *UiConfigResource) UnsetShortDateFormat()

UnsetShortDateFormat ensures that no value is present for ShortDateFormat, not even an explicit nil

func (*UiConfigResource) UnsetTheme

func (o *UiConfigResource) UnsetTheme()

UnsetTheme ensures that no value is present for Theme, not even an explicit nil

func (*UiConfigResource) UnsetTimeFormat

func (o *UiConfigResource) UnsetTimeFormat()

UnsetTimeFormat ensures that no value is present for TimeFormat, not even an explicit nil

func (*UiConfigResource) UnsetUiLanguage

func (o *UiConfigResource) UnsetUiLanguage()

UnsetUiLanguage ensures that no value is present for UiLanguage, not even an explicit nil

type UpdateApiService

type UpdateApiService service

UpdateApiService UpdateApi service

func (*UpdateApiService) ListUpdate

ListUpdate Method for ListUpdate

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

func (*UpdateApiService) ListUpdateExecute

func (a *UpdateApiService) ListUpdateExecute(r ApiListUpdateRequest) ([]*UpdateResource, *http.Response, error)

Execute executes the request

@return []UpdateResource

type UpdateChanges

type UpdateChanges struct {
	New   []*string `json:"new,omitempty"`
	Fixed []*string `json:"fixed,omitempty"`
}

UpdateChanges struct for UpdateChanges

func NewUpdateChanges

func NewUpdateChanges() *UpdateChanges

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

func NewUpdateChangesWithDefaults

func NewUpdateChangesWithDefaults() *UpdateChanges

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

func (*UpdateChanges) GetFixed

func (o *UpdateChanges) GetFixed() []*string

GetFixed returns the Fixed field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateChanges) GetFixedOk

func (o *UpdateChanges) GetFixedOk() ([]*string, bool)

GetFixedOk returns a tuple with the Fixed 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 (*UpdateChanges) GetNew

func (o *UpdateChanges) GetNew() []*string

GetNew returns the New field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateChanges) GetNewOk

func (o *UpdateChanges) GetNewOk() ([]*string, bool)

GetNewOk returns a tuple with the New 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 (*UpdateChanges) HasFixed

func (o *UpdateChanges) HasFixed() bool

HasFixed returns a boolean if a field has been set.

func (*UpdateChanges) HasNew

func (o *UpdateChanges) HasNew() bool

HasNew returns a boolean if a field has been set.

func (UpdateChanges) MarshalJSON

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

func (*UpdateChanges) SetFixed

func (o *UpdateChanges) SetFixed(v []*string)

SetFixed gets a reference to the given []string and assigns it to the Fixed field.

func (*UpdateChanges) SetNew

func (o *UpdateChanges) SetNew(v []*string)

SetNew gets a reference to the given []string and assigns it to the New field.

type UpdateLogFileApiService

type UpdateLogFileApiService service

UpdateLogFileApiService UpdateLogFileApi service

func (*UpdateLogFileApiService) GetLogFileUpdateByFilename

func (a *UpdateLogFileApiService) GetLogFileUpdateByFilename(ctx context.Context, filename string) ApiGetLogFileUpdateByFilenameRequest

GetLogFileUpdateByFilename Method for GetLogFileUpdateByFilename

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

func (*UpdateLogFileApiService) GetLogFileUpdateByFilenameExecute

func (a *UpdateLogFileApiService) GetLogFileUpdateByFilenameExecute(r ApiGetLogFileUpdateByFilenameRequest) (*http.Response, error)

Execute executes the request

func (*UpdateLogFileApiService) ListLogFileUpdate

ListLogFileUpdate Method for ListLogFileUpdate

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

func (*UpdateLogFileApiService) ListLogFileUpdateExecute

Execute executes the request

@return []LogFileResource

type UpdateMechanism

type UpdateMechanism string

UpdateMechanism the model 'UpdateMechanism'

const (
	UPDATEMECHANISM_BUILT_IN UpdateMechanism = "builtIn"
	UPDATEMECHANISM_SCRIPT   UpdateMechanism = "script"
	UPDATEMECHANISM_EXTERNAL UpdateMechanism = "external"
	UPDATEMECHANISM_APT      UpdateMechanism = "apt"
	UPDATEMECHANISM_DOCKER   UpdateMechanism = "docker"
)

List of UpdateMechanism

func NewUpdateMechanismFromValue

func NewUpdateMechanismFromValue(v string) (*UpdateMechanism, error)

NewUpdateMechanismFromValue returns a pointer to a valid UpdateMechanism for the value passed as argument, or an error if the value passed is not allowed by the enum

func (UpdateMechanism) IsValid

func (v UpdateMechanism) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (UpdateMechanism) Ptr

Ptr returns reference to UpdateMechanism value

func (*UpdateMechanism) UnmarshalJSON

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

type UpdateResource

type UpdateResource struct {
	Id          *int32         `json:"id,omitempty"`
	Version     *string        `json:"version,omitempty"`
	Branch      NullableString `json:"branch,omitempty"`
	ReleaseDate *time.Time     `json:"releaseDate,omitempty"`
	FileName    NullableString `json:"fileName,omitempty"`
	Url         NullableString `json:"url,omitempty"`
	Installed   *bool          `json:"installed,omitempty"`
	InstalledOn NullableTime   `json:"installedOn,omitempty"`
	Installable *bool          `json:"installable,omitempty"`
	Latest      *bool          `json:"latest,omitempty"`
	Changes     *UpdateChanges `json:"changes,omitempty"`
	Hash        NullableString `json:"hash,omitempty"`
}

UpdateResource struct for UpdateResource

func NewUpdateResource

func NewUpdateResource() *UpdateResource

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

func NewUpdateResourceWithDefaults

func NewUpdateResourceWithDefaults() *UpdateResource

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

func (*UpdateResource) GetBranch

func (o *UpdateResource) GetBranch() string

GetBranch returns the Branch field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateResource) GetBranchOk

func (o *UpdateResource) GetBranchOk() (*string, bool)

GetBranchOk returns a tuple with the Branch 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 (*UpdateResource) GetChanges

func (o *UpdateResource) GetChanges() UpdateChanges

GetChanges returns the Changes field value if set, zero value otherwise.

func (*UpdateResource) GetChangesOk

func (o *UpdateResource) GetChangesOk() (*UpdateChanges, bool)

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

func (*UpdateResource) GetFileName

func (o *UpdateResource) GetFileName() string

GetFileName returns the FileName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateResource) GetFileNameOk

func (o *UpdateResource) 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*UpdateResource) GetHash

func (o *UpdateResource) GetHash() string

GetHash returns the Hash field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateResource) GetHashOk

func (o *UpdateResource) GetHashOk() (*string, bool)

GetHashOk returns a tuple with the Hash 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 (*UpdateResource) GetId

func (o *UpdateResource) GetId() int32

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

func (*UpdateResource) GetIdOk

func (o *UpdateResource) 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 (*UpdateResource) GetInstallable

func (o *UpdateResource) GetInstallable() bool

GetInstallable returns the Installable field value if set, zero value otherwise.

func (*UpdateResource) GetInstallableOk

func (o *UpdateResource) GetInstallableOk() (*bool, bool)

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

func (*UpdateResource) GetInstalled

func (o *UpdateResource) GetInstalled() bool

GetInstalled returns the Installed field value if set, zero value otherwise.

func (*UpdateResource) GetInstalledOk

func (o *UpdateResource) GetInstalledOk() (*bool, bool)

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

func (*UpdateResource) GetInstalledOn

func (o *UpdateResource) GetInstalledOn() time.Time

GetInstalledOn returns the InstalledOn field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateResource) GetInstalledOnOk

func (o *UpdateResource) GetInstalledOnOk() (*time.Time, bool)

GetInstalledOnOk returns a tuple with the InstalledOn 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 (*UpdateResource) GetLatest

func (o *UpdateResource) GetLatest() bool

GetLatest returns the Latest field value if set, zero value otherwise.

func (*UpdateResource) GetLatestOk

func (o *UpdateResource) GetLatestOk() (*bool, bool)

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

func (*UpdateResource) GetReleaseDate

func (o *UpdateResource) GetReleaseDate() time.Time

GetReleaseDate returns the ReleaseDate field value if set, zero value otherwise.

func (*UpdateResource) GetReleaseDateOk

func (o *UpdateResource) GetReleaseDateOk() (*time.Time, bool)

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

func (*UpdateResource) GetUrl

func (o *UpdateResource) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UpdateResource) GetUrlOk

func (o *UpdateResource) GetUrlOk() (*string, bool)

GetUrlOk returns a tuple with the Url 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 (*UpdateResource) GetVersion

func (o *UpdateResource) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*UpdateResource) GetVersionOk

func (o *UpdateResource) 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 (*UpdateResource) HasBranch

func (o *UpdateResource) HasBranch() bool

HasBranch returns a boolean if a field has been set.

func (*UpdateResource) HasChanges

func (o *UpdateResource) HasChanges() bool

HasChanges returns a boolean if a field has been set.

func (*UpdateResource) HasFileName

func (o *UpdateResource) HasFileName() bool

HasFileName returns a boolean if a field has been set.

func (*UpdateResource) HasHash

func (o *UpdateResource) HasHash() bool

HasHash returns a boolean if a field has been set.

func (*UpdateResource) HasId

func (o *UpdateResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*UpdateResource) HasInstallable

func (o *UpdateResource) HasInstallable() bool

HasInstallable returns a boolean if a field has been set.

func (*UpdateResource) HasInstalled

func (o *UpdateResource) HasInstalled() bool

HasInstalled returns a boolean if a field has been set.

func (*UpdateResource) HasInstalledOn

func (o *UpdateResource) HasInstalledOn() bool

HasInstalledOn returns a boolean if a field has been set.

func (*UpdateResource) HasLatest

func (o *UpdateResource) HasLatest() bool

HasLatest returns a boolean if a field has been set.

func (*UpdateResource) HasReleaseDate

func (o *UpdateResource) HasReleaseDate() bool

HasReleaseDate returns a boolean if a field has been set.

func (*UpdateResource) HasUrl

func (o *UpdateResource) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*UpdateResource) HasVersion

func (o *UpdateResource) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (UpdateResource) MarshalJSON

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

func (*UpdateResource) SetBranch

func (o *UpdateResource) SetBranch(v string)

SetBranch gets a reference to the given NullableString and assigns it to the Branch field.

func (*UpdateResource) SetBranchNil

func (o *UpdateResource) SetBranchNil()

SetBranchNil sets the value for Branch to be an explicit nil

func (*UpdateResource) SetChanges

func (o *UpdateResource) SetChanges(v UpdateChanges)

SetChanges gets a reference to the given UpdateChanges and assigns it to the Changes field.

func (*UpdateResource) SetFileName

func (o *UpdateResource) SetFileName(v string)

SetFileName gets a reference to the given NullableString and assigns it to the FileName field.

func (*UpdateResource) SetFileNameNil

func (o *UpdateResource) SetFileNameNil()

SetFileNameNil sets the value for FileName to be an explicit nil

func (*UpdateResource) SetHash

func (o *UpdateResource) SetHash(v string)

SetHash gets a reference to the given NullableString and assigns it to the Hash field.

func (*UpdateResource) SetHashNil

func (o *UpdateResource) SetHashNil()

SetHashNil sets the value for Hash to be an explicit nil

func (*UpdateResource) SetId

func (o *UpdateResource) SetId(v int32)

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

func (*UpdateResource) SetInstallable

func (o *UpdateResource) SetInstallable(v bool)

SetInstallable gets a reference to the given bool and assigns it to the Installable field.

func (*UpdateResource) SetInstalled

func (o *UpdateResource) SetInstalled(v bool)

SetInstalled gets a reference to the given bool and assigns it to the Installed field.

func (*UpdateResource) SetInstalledOn

func (o *UpdateResource) SetInstalledOn(v time.Time)

SetInstalledOn gets a reference to the given NullableTime and assigns it to the InstalledOn field.

func (*UpdateResource) SetInstalledOnNil

func (o *UpdateResource) SetInstalledOnNil()

SetInstalledOnNil sets the value for InstalledOn to be an explicit nil

func (*UpdateResource) SetLatest

func (o *UpdateResource) SetLatest(v bool)

SetLatest gets a reference to the given bool and assigns it to the Latest field.

func (*UpdateResource) SetReleaseDate

func (o *UpdateResource) SetReleaseDate(v time.Time)

SetReleaseDate gets a reference to the given time.Time and assigns it to the ReleaseDate field.

func (*UpdateResource) SetUrl

func (o *UpdateResource) SetUrl(v string)

SetUrl gets a reference to the given NullableString and assigns it to the Url field.

func (*UpdateResource) SetUrlNil

func (o *UpdateResource) SetUrlNil()

SetUrlNil sets the value for Url to be an explicit nil

func (*UpdateResource) SetVersion

func (o *UpdateResource) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

func (*UpdateResource) UnsetBranch

func (o *UpdateResource) UnsetBranch()

UnsetBranch ensures that no value is present for Branch, not even an explicit nil

func (*UpdateResource) UnsetFileName

func (o *UpdateResource) UnsetFileName()

UnsetFileName ensures that no value is present for FileName, not even an explicit nil

func (*UpdateResource) UnsetHash

func (o *UpdateResource) UnsetHash()

UnsetHash ensures that no value is present for Hash, not even an explicit nil

func (*UpdateResource) UnsetInstalledOn

func (o *UpdateResource) UnsetInstalledOn()

UnsetInstalledOn ensures that no value is present for InstalledOn, not even an explicit nil

func (*UpdateResource) UnsetUrl

func (o *UpdateResource) UnsetUrl()

UnsetUrl ensures that no value is present for Url, not even an explicit nil

type UserAgentStatistics

type UserAgentStatistics struct {
	UserAgent       NullableString `json:"userAgent,omitempty"`
	NumberOfQueries *int32         `json:"numberOfQueries,omitempty"`
	NumberOfGrabs   *int32         `json:"numberOfGrabs,omitempty"`
}

UserAgentStatistics struct for UserAgentStatistics

func NewUserAgentStatistics

func NewUserAgentStatistics() *UserAgentStatistics

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

func NewUserAgentStatisticsWithDefaults

func NewUserAgentStatisticsWithDefaults() *UserAgentStatistics

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

func (*UserAgentStatistics) GetNumberOfGrabs

func (o *UserAgentStatistics) GetNumberOfGrabs() int32

GetNumberOfGrabs returns the NumberOfGrabs field value if set, zero value otherwise.

func (*UserAgentStatistics) GetNumberOfGrabsOk

func (o *UserAgentStatistics) GetNumberOfGrabsOk() (*int32, bool)

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

func (*UserAgentStatistics) GetNumberOfQueries

func (o *UserAgentStatistics) GetNumberOfQueries() int32

GetNumberOfQueries returns the NumberOfQueries field value if set, zero value otherwise.

func (*UserAgentStatistics) GetNumberOfQueriesOk

func (o *UserAgentStatistics) GetNumberOfQueriesOk() (*int32, bool)

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

func (*UserAgentStatistics) GetUserAgent

func (o *UserAgentStatistics) GetUserAgent() string

GetUserAgent returns the UserAgent field value if set, zero value otherwise (both if not set or set to explicit null).

func (*UserAgentStatistics) GetUserAgentOk

func (o *UserAgentStatistics) GetUserAgentOk() (*string, bool)

GetUserAgentOk returns a tuple with the UserAgent 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 (*UserAgentStatistics) HasNumberOfGrabs

func (o *UserAgentStatistics) HasNumberOfGrabs() bool

HasNumberOfGrabs returns a boolean if a field has been set.

func (*UserAgentStatistics) HasNumberOfQueries

func (o *UserAgentStatistics) HasNumberOfQueries() bool

HasNumberOfQueries returns a boolean if a field has been set.

func (*UserAgentStatistics) HasUserAgent

func (o *UserAgentStatistics) HasUserAgent() bool

HasUserAgent returns a boolean if a field has been set.

func (UserAgentStatistics) MarshalJSON

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

func (*UserAgentStatistics) SetNumberOfGrabs

func (o *UserAgentStatistics) SetNumberOfGrabs(v int32)

SetNumberOfGrabs gets a reference to the given int32 and assigns it to the NumberOfGrabs field.

func (*UserAgentStatistics) SetNumberOfQueries

func (o *UserAgentStatistics) SetNumberOfQueries(v int32)

SetNumberOfQueries gets a reference to the given int32 and assigns it to the NumberOfQueries field.

func (*UserAgentStatistics) SetUserAgent

func (o *UserAgentStatistics) SetUserAgent(v string)

SetUserAgent gets a reference to the given NullableString and assigns it to the UserAgent field.

func (*UserAgentStatistics) SetUserAgentNil

func (o *UserAgentStatistics) SetUserAgentNil()

SetUserAgentNil sets the value for UserAgent to be an explicit nil

func (*UserAgentStatistics) UnsetUserAgent

func (o *UserAgentStatistics) UnsetUserAgent()

UnsetUserAgent ensures that no value is present for UserAgent, not even an explicit nil

type Version

type Version struct {
	Major         *int32 `json:"major,omitempty"`
	Minor         *int32 `json:"minor,omitempty"`
	Build         *int32 `json:"build,omitempty"`
	Revision      *int32 `json:"revision,omitempty"`
	MajorRevision *int32 `json:"majorRevision,omitempty"`
	MinorRevision *int32 `json:"minorRevision,omitempty"`
}

Version struct for Version

func NewVersion

func NewVersion() *Version

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

func NewVersionWithDefaults

func NewVersionWithDefaults() *Version

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

func (*Version) GetBuild

func (o *Version) GetBuild() int32

GetBuild returns the Build field value if set, zero value otherwise.

func (*Version) GetBuildOk

func (o *Version) GetBuildOk() (*int32, bool)

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

func (*Version) GetMajor

func (o *Version) GetMajor() int32

GetMajor returns the Major field value if set, zero value otherwise.

func (*Version) GetMajorOk

func (o *Version) GetMajorOk() (*int32, bool)

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

func (*Version) GetMajorRevision

func (o *Version) GetMajorRevision() int32

GetMajorRevision returns the MajorRevision field value if set, zero value otherwise.

func (*Version) GetMajorRevisionOk

func (o *Version) GetMajorRevisionOk() (*int32, bool)

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

func (*Version) GetMinor

func (o *Version) GetMinor() int32

GetMinor returns the Minor field value if set, zero value otherwise.

func (*Version) GetMinorOk

func (o *Version) GetMinorOk() (*int32, bool)

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

func (*Version) GetMinorRevision

func (o *Version) GetMinorRevision() int32

GetMinorRevision returns the MinorRevision field value if set, zero value otherwise.

func (*Version) GetMinorRevisionOk

func (o *Version) GetMinorRevisionOk() (*int32, bool)

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

func (*Version) GetRevision

func (o *Version) GetRevision() int32

GetRevision returns the Revision field value if set, zero value otherwise.

func (*Version) GetRevisionOk

func (o *Version) GetRevisionOk() (*int32, bool)

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

func (*Version) HasBuild

func (o *Version) HasBuild() bool

HasBuild returns a boolean if a field has been set.

func (*Version) HasMajor

func (o *Version) HasMajor() bool

HasMajor returns a boolean if a field has been set.

func (*Version) HasMajorRevision

func (o *Version) HasMajorRevision() bool

HasMajorRevision returns a boolean if a field has been set.

func (*Version) HasMinor

func (o *Version) HasMinor() bool

HasMinor returns a boolean if a field has been set.

func (*Version) HasMinorRevision

func (o *Version) HasMinorRevision() bool

HasMinorRevision returns a boolean if a field has been set.

func (*Version) HasRevision

func (o *Version) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (Version) MarshalJSON

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

func (*Version) SetBuild

func (o *Version) SetBuild(v int32)

SetBuild gets a reference to the given int32 and assigns it to the Build field.

func (*Version) SetMajor

func (o *Version) SetMajor(v int32)

SetMajor gets a reference to the given int32 and assigns it to the Major field.

func (*Version) SetMajorRevision

func (o *Version) SetMajorRevision(v int32)

SetMajorRevision gets a reference to the given int32 and assigns it to the MajorRevision field.

func (*Version) SetMinor

func (o *Version) SetMinor(v int32)

SetMinor gets a reference to the given int32 and assigns it to the Minor field.

func (*Version) SetMinorRevision

func (o *Version) SetMinorRevision(v int32)

SetMinorRevision gets a reference to the given int32 and assigns it to the MinorRevision field.

func (*Version) SetRevision

func (o *Version) SetRevision(v int32)

SetRevision gets a reference to the given int32 and assigns it to the Revision field.

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL