openapi_FileDataReportingMnS

package
v1.18.2 Latest Latest
Warning

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

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

README

Go API client for openapi_FileDataReportingMnS

OAS 3.0.1 definition of the File Data Reporting MnS © 2021, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 17.1.0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import openapi_FileDataReportingMnS "github.com/GIT_USER_ID/GIT_REPO_ID/openapi_FileDataReportingMnS"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), openapi_FileDataReportingMnS.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), openapi_FileDataReportingMnS.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), openapi_FileDataReportingMnS.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi_FileDataReportingMnS.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://example.com/3GPPManagement/fileDataReportingMnS/XXX

Class Method HTTP request Description
DefaultApi FilesGet Get /files Read information about available files
DefaultApi SubscriptionsPost Post /subscriptions Create a subscription
DefaultApi SubscriptionsSubscriptionIdDelete Delete /subscriptions/{subscriptionId} Delete a subscription

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// 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 AllowedAlarmNotificationTypesEnumValues = []AlarmNotificationTypes{
	"notifyNewAlarm",
	"notifyChangedAlarm",
	"notifyChangedAlarmGeneral",
	"notifyAckStateChanged",
	"notifyCorrelatedNotificationChanged",
	"notifyComments",
	"notifyClearedAlarm",
	"notifyAlarmListRebuilt",
	"notifyPotentialFaultyAlarmList",
}

All allowed values of AlarmNotificationTypes enum

View Source
var AllowedCmNotificationTypesEnumValues = []CmNotificationTypes{
	"notifyMOICreation",
	"notifyMOIDeletion",
	"notifyMOIAttributeValueChanges",
	"notifyMOIChanges",
}

All allowed values of CmNotificationTypes enum

View Source
var AllowedFileDataTypeEnumValues = []FileDataType{
	"Performance",
	"Trace",
	"Anatytics",
	"Proprietary",
}

All allowed values of FileDataType enum

View Source
var AllowedFileNotificationTypesEnumValues = []FileNotificationTypes{
	"notifyFileReady",
	"notifyFilePreparationError",
}

All allowed values of FileNotificationTypes enum

View Source
var AllowedHeartbeatNotificationTypesEnumValues = []HeartbeatNotificationTypes{
	"notifyHeartbeat",
}

All allowed values of HeartbeatNotificationTypes enum

View Source
var AllowedPerfNotificationTypesEnumValues = []PerfNotificationTypes{
	"notifyThresholdCrossing",
}

All allowed values of PerfNotificationTypes enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

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 {
	DefaultApi *DefaultApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the File Data Reporting MnS API v17.1.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 AlarmNotificationTypes

type AlarmNotificationTypes string

AlarmNotificationTypes the model 'AlarmNotificationTypes'

const (
	NOTIFY_NEW_ALARM                       AlarmNotificationTypes = "notifyNewAlarm"
	NOTIFY_CHANGED_ALARM                   AlarmNotificationTypes = "notifyChangedAlarm"
	NOTIFY_CHANGED_ALARM_GENERAL           AlarmNotificationTypes = "notifyChangedAlarmGeneral"
	NOTIFY_ACK_STATE_CHANGED               AlarmNotificationTypes = "notifyAckStateChanged"
	NOTIFY_CORRELATED_NOTIFICATION_CHANGED AlarmNotificationTypes = "notifyCorrelatedNotificationChanged"
	NOTIFY_COMMENTS                        AlarmNotificationTypes = "notifyComments"
	NOTIFY_CLEARED_ALARM                   AlarmNotificationTypes = "notifyClearedAlarm"
	NOTIFY_ALARM_LIST_REBUILT              AlarmNotificationTypes = "notifyAlarmListRebuilt"
	NOTIFY_POTENTIAL_FAULTY_ALARM_LIST     AlarmNotificationTypes = "notifyPotentialFaultyAlarmList"
)

List of AlarmNotificationTypes

func NewAlarmNotificationTypesFromValue

func NewAlarmNotificationTypesFromValue(v string) (*AlarmNotificationTypes, error)

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

func (AlarmNotificationTypes) IsValid

func (v AlarmNotificationTypes) IsValid() bool

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

func (AlarmNotificationTypes) Ptr

Ptr returns reference to AlarmNotificationTypes value

func (*AlarmNotificationTypes) UnmarshalJSON

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

type ApiFilesGetRequest

type ApiFilesGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiFilesGetRequest) BeginTime

func (r ApiFilesGetRequest) BeginTime(beginTime time.Time) ApiFilesGetRequest

This parameter selects files based on the earliest time they became available

func (ApiFilesGetRequest) EndTime

func (r ApiFilesGetRequest) EndTime(endTime time.Time) ApiFilesGetRequest

This parameter selects files based on the latest time they became available

func (ApiFilesGetRequest) Execute

func (r ApiFilesGetRequest) Execute() ([]FileInfo, *http.Response, error)

func (ApiFilesGetRequest) FileDataType

func (r ApiFilesGetRequest) FileDataType(fileDataType FileDataType) ApiFilesGetRequest

This parameter selects files based on the file data type.

type ApiSubscriptionsPostRequest

type ApiSubscriptionsPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionsPostRequest) Execute

func (ApiSubscriptionsPostRequest) Subscription

type ApiSubscriptionsSubscriptionIdDeleteRequest

type ApiSubscriptionsSubscriptionIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiSubscriptionsSubscriptionIdDeleteRequest) Execute

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 CmNotificationTypes

type CmNotificationTypes string

CmNotificationTypes the model 'CmNotificationTypes'

const (
	NOTIFY_MOI_CREATION                CmNotificationTypes = "notifyMOICreation"
	NOTIFY_MOI_DELETION                CmNotificationTypes = "notifyMOIDeletion"
	NOTIFY_MOI_ATTRIBUTE_VALUE_CHANGES CmNotificationTypes = "notifyMOIAttributeValueChanges"
	NOTIFY_MOI_CHANGES                 CmNotificationTypes = "notifyMOIChanges"
)

List of CmNotificationTypes

func NewCmNotificationTypesFromValue

func NewCmNotificationTypesFromValue(v string) (*CmNotificationTypes, error)

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

func (CmNotificationTypes) IsValid

func (v CmNotificationTypes) IsValid() bool

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

func (CmNotificationTypes) Ptr

Ptr returns reference to CmNotificationTypes value

func (*CmNotificationTypes) UnmarshalJSON

func (v *CmNotificationTypes) 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 DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

func (*DefaultApiService) FilesGet

FilesGet Read information about available files

Information about available files is read with HTTP GET. The files for which information shall be returned are identified with the path component (base resource) and the query component (fileDataType, beginTime, endTime) of the URI.

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

func (*DefaultApiService) FilesGetExecute

func (a *DefaultApiService) FilesGetExecute(r ApiFilesGetRequest) ([]FileInfo, *http.Response, error)

Execute executes the request

@return []FileInfo

func (*DefaultApiService) SubscriptionsPost

SubscriptionsPost Create a subscription

To create a subscription the representation of the subscription is POSTed on the /subscriptions collection resource.

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

func (*DefaultApiService) SubscriptionsPostExecute

func (a *DefaultApiService) SubscriptionsPostExecute(r ApiSubscriptionsPostRequest) (*Subscription, *http.Response, error)

Execute executes the request

@return Subscription

func (*DefaultApiService) SubscriptionsSubscriptionIdDelete

func (a *DefaultApiService) SubscriptionsSubscriptionIdDelete(ctx context.Context, subscriptionId string) ApiSubscriptionsSubscriptionIdDeleteRequest

SubscriptionsSubscriptionIdDelete Delete a subscription

The subscription is deleted by deleting the corresponding subscription resource. The resource to be deleted is identified with the path component of the URI.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param subscriptionId Identifies the subscription to be deleted.
@return ApiSubscriptionsSubscriptionIdDeleteRequest

func (*DefaultApiService) SubscriptionsSubscriptionIdDeleteExecute

func (a *DefaultApiService) SubscriptionsSubscriptionIdDeleteExecute(r ApiSubscriptionsSubscriptionIdDeleteRequest) (*http.Response, error)

Execute executes the request

type ErrorResponse

type ErrorResponse struct {
	Error *ErrorResponseError `json:"error,omitempty"`
}

ErrorResponse Default schema for the response message body in case the request is not successful.

func NewErrorResponse

func NewErrorResponse() *ErrorResponse

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

func NewErrorResponseWithDefaults

func NewErrorResponseWithDefaults() *ErrorResponse

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

func (*ErrorResponse) GetError

func (o *ErrorResponse) GetError() ErrorResponseError

GetError returns the Error field value if set, zero value otherwise.

func (*ErrorResponse) GetErrorOk

func (o *ErrorResponse) GetErrorOk() (*ErrorResponseError, bool)

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

func (*ErrorResponse) HasError

func (o *ErrorResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (ErrorResponse) MarshalJSON

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

func (*ErrorResponse) SetError

func (o *ErrorResponse) SetError(v ErrorResponseError)

SetError gets a reference to the given ErrorResponseError and assigns it to the Error field.

func (ErrorResponse) ToMap

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

type ErrorResponseError

type ErrorResponseError struct {
	ErrorInfo *string `json:"errorInfo,omitempty"`
}

ErrorResponseError struct for ErrorResponseError

func NewErrorResponseError

func NewErrorResponseError() *ErrorResponseError

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

func NewErrorResponseErrorWithDefaults

func NewErrorResponseErrorWithDefaults() *ErrorResponseError

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

func (*ErrorResponseError) GetErrorInfo

func (o *ErrorResponseError) GetErrorInfo() string

GetErrorInfo returns the ErrorInfo field value if set, zero value otherwise.

func (*ErrorResponseError) GetErrorInfoOk

func (o *ErrorResponseError) GetErrorInfoOk() (*string, bool)

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

func (*ErrorResponseError) HasErrorInfo

func (o *ErrorResponseError) HasErrorInfo() bool

HasErrorInfo returns a boolean if a field has been set.

func (ErrorResponseError) MarshalJSON

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

func (*ErrorResponseError) SetErrorInfo

func (o *ErrorResponseError) SetErrorInfo(v string)

SetErrorInfo gets a reference to the given string and assigns it to the ErrorInfo field.

func (ErrorResponseError) ToMap

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

type FileDataType

type FileDataType string

FileDataType the model 'FileDataType'

const (
	PERFORMANCE FileDataType = "Performance"
	TRACE       FileDataType = "Trace"
	ANATYTICS   FileDataType = "Anatytics"
	PROPRIETARY FileDataType = "Proprietary"
)

List of FileDataType

func NewFileDataTypeFromValue

func NewFileDataTypeFromValue(v string) (*FileDataType, error)

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

func (FileDataType) IsValid

func (v FileDataType) IsValid() bool

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

func (FileDataType) Ptr

func (v FileDataType) Ptr() *FileDataType

Ptr returns reference to FileDataType value

func (*FileDataType) UnmarshalJSON

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

type FileInfo

type FileInfo struct {
	FileLocation       *string       `json:"fileLocation,omitempty"`
	FileSize           *int32        `json:"fileSize,omitempty"`
	FileReadyTime      *time.Time    `json:"fileReadyTime,omitempty"`
	FileExpirationTime *time.Time    `json:"fileExpirationTime,omitempty"`
	FileCompression    *string       `json:"fileCompression,omitempty"`
	FileFormat         *string       `json:"fileFormat,omitempty"`
	FileDataType       *FileDataType `json:"fileDataType,omitempty"`
}

FileInfo struct for FileInfo

func NewFileInfo

func NewFileInfo() *FileInfo

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

func NewFileInfoWithDefaults

func NewFileInfoWithDefaults() *FileInfo

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

func (*FileInfo) GetFileCompression

func (o *FileInfo) GetFileCompression() string

GetFileCompression returns the FileCompression field value if set, zero value otherwise.

func (*FileInfo) GetFileCompressionOk

func (o *FileInfo) GetFileCompressionOk() (*string, bool)

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

func (*FileInfo) GetFileDataType

func (o *FileInfo) GetFileDataType() FileDataType

GetFileDataType returns the FileDataType field value if set, zero value otherwise.

func (*FileInfo) GetFileDataTypeOk

func (o *FileInfo) GetFileDataTypeOk() (*FileDataType, bool)

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

func (*FileInfo) GetFileExpirationTime

func (o *FileInfo) GetFileExpirationTime() time.Time

GetFileExpirationTime returns the FileExpirationTime field value if set, zero value otherwise.

func (*FileInfo) GetFileExpirationTimeOk

func (o *FileInfo) GetFileExpirationTimeOk() (*time.Time, bool)

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

func (*FileInfo) GetFileFormat

func (o *FileInfo) GetFileFormat() string

GetFileFormat returns the FileFormat field value if set, zero value otherwise.

func (*FileInfo) GetFileFormatOk

func (o *FileInfo) GetFileFormatOk() (*string, bool)

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

func (*FileInfo) GetFileLocation

func (o *FileInfo) GetFileLocation() string

GetFileLocation returns the FileLocation field value if set, zero value otherwise.

func (*FileInfo) GetFileLocationOk

func (o *FileInfo) GetFileLocationOk() (*string, bool)

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

func (*FileInfo) GetFileReadyTime

func (o *FileInfo) GetFileReadyTime() time.Time

GetFileReadyTime returns the FileReadyTime field value if set, zero value otherwise.

func (*FileInfo) GetFileReadyTimeOk

func (o *FileInfo) GetFileReadyTimeOk() (*time.Time, bool)

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

func (*FileInfo) GetFileSize

func (o *FileInfo) GetFileSize() int32

GetFileSize returns the FileSize field value if set, zero value otherwise.

func (*FileInfo) GetFileSizeOk

func (o *FileInfo) GetFileSizeOk() (*int32, bool)

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

func (*FileInfo) HasFileCompression

func (o *FileInfo) HasFileCompression() bool

HasFileCompression returns a boolean if a field has been set.

func (*FileInfo) HasFileDataType

func (o *FileInfo) HasFileDataType() bool

HasFileDataType returns a boolean if a field has been set.

func (*FileInfo) HasFileExpirationTime

func (o *FileInfo) HasFileExpirationTime() bool

HasFileExpirationTime returns a boolean if a field has been set.

func (*FileInfo) HasFileFormat

func (o *FileInfo) HasFileFormat() bool

HasFileFormat returns a boolean if a field has been set.

func (*FileInfo) HasFileLocation

func (o *FileInfo) HasFileLocation() bool

HasFileLocation returns a boolean if a field has been set.

func (*FileInfo) HasFileReadyTime

func (o *FileInfo) HasFileReadyTime() bool

HasFileReadyTime returns a boolean if a field has been set.

func (*FileInfo) HasFileSize

func (o *FileInfo) HasFileSize() bool

HasFileSize returns a boolean if a field has been set.

func (FileInfo) MarshalJSON

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

func (*FileInfo) SetFileCompression

func (o *FileInfo) SetFileCompression(v string)

SetFileCompression gets a reference to the given string and assigns it to the FileCompression field.

func (*FileInfo) SetFileDataType

func (o *FileInfo) SetFileDataType(v FileDataType)

SetFileDataType gets a reference to the given FileDataType and assigns it to the FileDataType field.

func (*FileInfo) SetFileExpirationTime

func (o *FileInfo) SetFileExpirationTime(v time.Time)

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

func (*FileInfo) SetFileFormat

func (o *FileInfo) SetFileFormat(v string)

SetFileFormat gets a reference to the given string and assigns it to the FileFormat field.

func (*FileInfo) SetFileLocation

func (o *FileInfo) SetFileLocation(v string)

SetFileLocation gets a reference to the given string and assigns it to the FileLocation field.

func (*FileInfo) SetFileReadyTime

func (o *FileInfo) SetFileReadyTime(v time.Time)

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

func (*FileInfo) SetFileSize

func (o *FileInfo) SetFileSize(v int32)

SetFileSize gets a reference to the given int32 and assigns it to the FileSize field.

func (FileInfo) ToMap

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

type FileNotificationTypes

type FileNotificationTypes string

FileNotificationTypes the model 'FileNotificationTypes'

const (
	NOTIFY_FILE_READY             FileNotificationTypes = "notifyFileReady"
	NOTIFY_FILE_PREPARATION_ERROR FileNotificationTypes = "notifyFilePreparationError"
)

List of FileNotificationTypes

func NewFileNotificationTypesFromValue

func NewFileNotificationTypesFromValue(v string) (*FileNotificationTypes, error)

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

func (FileNotificationTypes) IsValid

func (v FileNotificationTypes) IsValid() bool

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

func (FileNotificationTypes) Ptr

Ptr returns reference to FileNotificationTypes value

func (*FileNotificationTypes) UnmarshalJSON

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

type GenericOpenAPIError

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

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

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

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

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type HeartbeatNotificationTypes

type HeartbeatNotificationTypes string

HeartbeatNotificationTypes the model 'HeartbeatNotificationTypes'

const (
	NOTIFY_HEARTBEAT HeartbeatNotificationTypes = "notifyHeartbeat"
)

List of HeartbeatNotificationTypes

func NewHeartbeatNotificationTypesFromValue

func NewHeartbeatNotificationTypesFromValue(v string) (*HeartbeatNotificationTypes, error)

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

func (HeartbeatNotificationTypes) IsValid

func (v HeartbeatNotificationTypes) IsValid() bool

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

func (HeartbeatNotificationTypes) Ptr

Ptr returns reference to HeartbeatNotificationTypes value

func (*HeartbeatNotificationTypes) UnmarshalJSON

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

type MappedNullable

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

type NotificationHeader

type NotificationHeader struct {
	Href             string           `json:"href"`
	NotificationId   int32            `json:"notificationId"`
	NotificationType NotificationType `json:"notificationType"`
	EventTime        time.Time        `json:"eventTime"`
	SystemDN         string           `json:"systemDN"`
}

NotificationHeader struct for NotificationHeader

func NewNotificationHeader

func NewNotificationHeader(href string, notificationId int32, notificationType NotificationType, eventTime time.Time, systemDN string) *NotificationHeader

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

func NewNotificationHeaderWithDefaults

func NewNotificationHeaderWithDefaults() *NotificationHeader

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

func (*NotificationHeader) GetEventTime

func (o *NotificationHeader) GetEventTime() time.Time

GetEventTime returns the EventTime field value

func (*NotificationHeader) GetEventTimeOk

func (o *NotificationHeader) GetEventTimeOk() (*time.Time, bool)

GetEventTimeOk returns a tuple with the EventTime field value and a boolean to check if the value has been set.

func (*NotificationHeader) GetHref

func (o *NotificationHeader) GetHref() string

GetHref returns the Href field value

func (*NotificationHeader) GetHrefOk

func (o *NotificationHeader) GetHrefOk() (*string, bool)

GetHrefOk returns a tuple with the Href field value and a boolean to check if the value has been set.

func (*NotificationHeader) GetNotificationId

func (o *NotificationHeader) GetNotificationId() int32

GetNotificationId returns the NotificationId field value

func (*NotificationHeader) GetNotificationIdOk

func (o *NotificationHeader) GetNotificationIdOk() (*int32, bool)

GetNotificationIdOk returns a tuple with the NotificationId field value and a boolean to check if the value has been set.

func (*NotificationHeader) GetNotificationType

func (o *NotificationHeader) GetNotificationType() NotificationType

GetNotificationType returns the NotificationType field value

func (*NotificationHeader) GetNotificationTypeOk

func (o *NotificationHeader) GetNotificationTypeOk() (*NotificationType, bool)

GetNotificationTypeOk returns a tuple with the NotificationType field value and a boolean to check if the value has been set.

func (*NotificationHeader) GetSystemDN

func (o *NotificationHeader) GetSystemDN() string

GetSystemDN returns the SystemDN field value

func (*NotificationHeader) GetSystemDNOk

func (o *NotificationHeader) GetSystemDNOk() (*string, bool)

GetSystemDNOk returns a tuple with the SystemDN field value and a boolean to check if the value has been set.

func (NotificationHeader) MarshalJSON

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

func (*NotificationHeader) SetEventTime

func (o *NotificationHeader) SetEventTime(v time.Time)

SetEventTime sets field value

func (*NotificationHeader) SetHref

func (o *NotificationHeader) SetHref(v string)

SetHref sets field value

func (*NotificationHeader) SetNotificationId

func (o *NotificationHeader) SetNotificationId(v int32)

SetNotificationId sets field value

func (*NotificationHeader) SetNotificationType

func (o *NotificationHeader) SetNotificationType(v NotificationType)

SetNotificationType sets field value

func (*NotificationHeader) SetSystemDN

func (o *NotificationHeader) SetSystemDN(v string)

SetSystemDN sets field value

func (NotificationHeader) ToMap

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

type NotificationType

type NotificationType struct {
	AlarmNotificationTypes     *AlarmNotificationTypes
	CmNotificationTypes        *CmNotificationTypes
	FileNotificationTypes      *FileNotificationTypes
	HeartbeatNotificationTypes *HeartbeatNotificationTypes
	PerfNotificationTypes      *PerfNotificationTypes
}

NotificationType - struct for NotificationType

func AlarmNotificationTypesAsNotificationType

func AlarmNotificationTypesAsNotificationType(v *AlarmNotificationTypes) NotificationType

AlarmNotificationTypesAsNotificationType is a convenience function that returns AlarmNotificationTypes wrapped in NotificationType

func CmNotificationTypesAsNotificationType

func CmNotificationTypesAsNotificationType(v *CmNotificationTypes) NotificationType

CmNotificationTypesAsNotificationType is a convenience function that returns CmNotificationTypes wrapped in NotificationType

func FileNotificationTypesAsNotificationType

func FileNotificationTypesAsNotificationType(v *FileNotificationTypes) NotificationType

FileNotificationTypesAsNotificationType is a convenience function that returns FileNotificationTypes wrapped in NotificationType

func HeartbeatNotificationTypesAsNotificationType

func HeartbeatNotificationTypesAsNotificationType(v *HeartbeatNotificationTypes) NotificationType

HeartbeatNotificationTypesAsNotificationType is a convenience function that returns HeartbeatNotificationTypes wrapped in NotificationType

func PerfNotificationTypesAsNotificationType

func PerfNotificationTypesAsNotificationType(v *PerfNotificationTypes) NotificationType

PerfNotificationTypesAsNotificationType is a convenience function that returns PerfNotificationTypes wrapped in NotificationType

func (*NotificationType) GetActualInstance

func (obj *NotificationType) GetActualInstance() interface{}

Get the actual instance

func (NotificationType) MarshalJSON

func (src NotificationType) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*NotificationType) UnmarshalJSON

func (dst *NotificationType) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type NotifyFilePreparationError

type NotifyFilePreparationError struct {
	NotificationHeader
	FileInfoList   []FileInfo `json:"fileInfoList,omitempty"`
	Reason         *string    `json:"reason,omitempty"`
	AdditionalText *string    `json:"additionalText,omitempty"`
}

NotifyFilePreparationError struct for NotifyFilePreparationError

func NewNotifyFilePreparationError

func NewNotifyFilePreparationError(href string, notificationId int32, notificationType NotificationType, eventTime time.Time, systemDN string) *NotifyFilePreparationError

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

func NewNotifyFilePreparationErrorWithDefaults

func NewNotifyFilePreparationErrorWithDefaults() *NotifyFilePreparationError

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

func (*NotifyFilePreparationError) GetAdditionalText

func (o *NotifyFilePreparationError) GetAdditionalText() string

GetAdditionalText returns the AdditionalText field value if set, zero value otherwise.

func (*NotifyFilePreparationError) GetAdditionalTextOk

func (o *NotifyFilePreparationError) GetAdditionalTextOk() (*string, bool)

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

func (*NotifyFilePreparationError) GetFileInfoList

func (o *NotifyFilePreparationError) GetFileInfoList() []FileInfo

GetFileInfoList returns the FileInfoList field value if set, zero value otherwise.

func (*NotifyFilePreparationError) GetFileInfoListOk

func (o *NotifyFilePreparationError) GetFileInfoListOk() ([]FileInfo, bool)

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

func (*NotifyFilePreparationError) GetReason

func (o *NotifyFilePreparationError) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*NotifyFilePreparationError) GetReasonOk

func (o *NotifyFilePreparationError) GetReasonOk() (*string, bool)

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

func (*NotifyFilePreparationError) HasAdditionalText

func (o *NotifyFilePreparationError) HasAdditionalText() bool

HasAdditionalText returns a boolean if a field has been set.

func (*NotifyFilePreparationError) HasFileInfoList

func (o *NotifyFilePreparationError) HasFileInfoList() bool

HasFileInfoList returns a boolean if a field has been set.

func (*NotifyFilePreparationError) HasReason

func (o *NotifyFilePreparationError) HasReason() bool

HasReason returns a boolean if a field has been set.

func (NotifyFilePreparationError) MarshalJSON

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

func (*NotifyFilePreparationError) SetAdditionalText

func (o *NotifyFilePreparationError) SetAdditionalText(v string)

SetAdditionalText gets a reference to the given string and assigns it to the AdditionalText field.

func (*NotifyFilePreparationError) SetFileInfoList

func (o *NotifyFilePreparationError) SetFileInfoList(v []FileInfo)

SetFileInfoList gets a reference to the given []FileInfo and assigns it to the FileInfoList field.

func (*NotifyFilePreparationError) SetReason

func (o *NotifyFilePreparationError) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (NotifyFilePreparationError) ToMap

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

type NotifyFilePreparationErrorAllOf

type NotifyFilePreparationErrorAllOf struct {
	FileInfoList   []FileInfo `json:"fileInfoList,omitempty"`
	Reason         *string    `json:"reason,omitempty"`
	AdditionalText *string    `json:"additionalText,omitempty"`
}

NotifyFilePreparationErrorAllOf struct for NotifyFilePreparationErrorAllOf

func NewNotifyFilePreparationErrorAllOf

func NewNotifyFilePreparationErrorAllOf() *NotifyFilePreparationErrorAllOf

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

func NewNotifyFilePreparationErrorAllOfWithDefaults

func NewNotifyFilePreparationErrorAllOfWithDefaults() *NotifyFilePreparationErrorAllOf

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

func (*NotifyFilePreparationErrorAllOf) GetAdditionalText

func (o *NotifyFilePreparationErrorAllOf) GetAdditionalText() string

GetAdditionalText returns the AdditionalText field value if set, zero value otherwise.

func (*NotifyFilePreparationErrorAllOf) GetAdditionalTextOk

func (o *NotifyFilePreparationErrorAllOf) GetAdditionalTextOk() (*string, bool)

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

func (*NotifyFilePreparationErrorAllOf) GetFileInfoList

func (o *NotifyFilePreparationErrorAllOf) GetFileInfoList() []FileInfo

GetFileInfoList returns the FileInfoList field value if set, zero value otherwise.

func (*NotifyFilePreparationErrorAllOf) GetFileInfoListOk

func (o *NotifyFilePreparationErrorAllOf) GetFileInfoListOk() ([]FileInfo, bool)

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

func (*NotifyFilePreparationErrorAllOf) GetReason

func (o *NotifyFilePreparationErrorAllOf) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*NotifyFilePreparationErrorAllOf) GetReasonOk

func (o *NotifyFilePreparationErrorAllOf) GetReasonOk() (*string, bool)

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

func (*NotifyFilePreparationErrorAllOf) HasAdditionalText

func (o *NotifyFilePreparationErrorAllOf) HasAdditionalText() bool

HasAdditionalText returns a boolean if a field has been set.

func (*NotifyFilePreparationErrorAllOf) HasFileInfoList

func (o *NotifyFilePreparationErrorAllOf) HasFileInfoList() bool

HasFileInfoList returns a boolean if a field has been set.

func (*NotifyFilePreparationErrorAllOf) HasReason

func (o *NotifyFilePreparationErrorAllOf) HasReason() bool

HasReason returns a boolean if a field has been set.

func (NotifyFilePreparationErrorAllOf) MarshalJSON

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

func (*NotifyFilePreparationErrorAllOf) SetAdditionalText

func (o *NotifyFilePreparationErrorAllOf) SetAdditionalText(v string)

SetAdditionalText gets a reference to the given string and assigns it to the AdditionalText field.

func (*NotifyFilePreparationErrorAllOf) SetFileInfoList

func (o *NotifyFilePreparationErrorAllOf) SetFileInfoList(v []FileInfo)

SetFileInfoList gets a reference to the given []FileInfo and assigns it to the FileInfoList field.

func (*NotifyFilePreparationErrorAllOf) SetReason

func (o *NotifyFilePreparationErrorAllOf) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (NotifyFilePreparationErrorAllOf) ToMap

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

type NotifyFileReady

type NotifyFileReady struct {
	NotificationHeader
	FileInfoList   []FileInfo `json:"fileInfoList,omitempty"`
	AdditionalText *string    `json:"additionalText,omitempty"`
}

NotifyFileReady struct for NotifyFileReady

func NewNotifyFileReady

func NewNotifyFileReady(href string, notificationId int32, notificationType NotificationType, eventTime time.Time, systemDN string) *NotifyFileReady

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

func NewNotifyFileReadyWithDefaults

func NewNotifyFileReadyWithDefaults() *NotifyFileReady

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

func (*NotifyFileReady) GetAdditionalText

func (o *NotifyFileReady) GetAdditionalText() string

GetAdditionalText returns the AdditionalText field value if set, zero value otherwise.

func (*NotifyFileReady) GetAdditionalTextOk

func (o *NotifyFileReady) GetAdditionalTextOk() (*string, bool)

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

func (*NotifyFileReady) GetFileInfoList

func (o *NotifyFileReady) GetFileInfoList() []FileInfo

GetFileInfoList returns the FileInfoList field value if set, zero value otherwise.

func (*NotifyFileReady) GetFileInfoListOk

func (o *NotifyFileReady) GetFileInfoListOk() ([]FileInfo, bool)

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

func (*NotifyFileReady) HasAdditionalText

func (o *NotifyFileReady) HasAdditionalText() bool

HasAdditionalText returns a boolean if a field has been set.

func (*NotifyFileReady) HasFileInfoList

func (o *NotifyFileReady) HasFileInfoList() bool

HasFileInfoList returns a boolean if a field has been set.

func (NotifyFileReady) MarshalJSON

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

func (*NotifyFileReady) SetAdditionalText

func (o *NotifyFileReady) SetAdditionalText(v string)

SetAdditionalText gets a reference to the given string and assigns it to the AdditionalText field.

func (*NotifyFileReady) SetFileInfoList

func (o *NotifyFileReady) SetFileInfoList(v []FileInfo)

SetFileInfoList gets a reference to the given []FileInfo and assigns it to the FileInfoList field.

func (NotifyFileReady) ToMap

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

type NotifyFileReadyAllOf

type NotifyFileReadyAllOf struct {
	FileInfoList   []FileInfo `json:"fileInfoList,omitempty"`
	AdditionalText *string    `json:"additionalText,omitempty"`
}

NotifyFileReadyAllOf struct for NotifyFileReadyAllOf

func NewNotifyFileReadyAllOf

func NewNotifyFileReadyAllOf() *NotifyFileReadyAllOf

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

func NewNotifyFileReadyAllOfWithDefaults

func NewNotifyFileReadyAllOfWithDefaults() *NotifyFileReadyAllOf

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

func (*NotifyFileReadyAllOf) GetAdditionalText

func (o *NotifyFileReadyAllOf) GetAdditionalText() string

GetAdditionalText returns the AdditionalText field value if set, zero value otherwise.

func (*NotifyFileReadyAllOf) GetAdditionalTextOk

func (o *NotifyFileReadyAllOf) GetAdditionalTextOk() (*string, bool)

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

func (*NotifyFileReadyAllOf) GetFileInfoList

func (o *NotifyFileReadyAllOf) GetFileInfoList() []FileInfo

GetFileInfoList returns the FileInfoList field value if set, zero value otherwise.

func (*NotifyFileReadyAllOf) GetFileInfoListOk

func (o *NotifyFileReadyAllOf) GetFileInfoListOk() ([]FileInfo, bool)

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

func (*NotifyFileReadyAllOf) HasAdditionalText

func (o *NotifyFileReadyAllOf) HasAdditionalText() bool

HasAdditionalText returns a boolean if a field has been set.

func (*NotifyFileReadyAllOf) HasFileInfoList

func (o *NotifyFileReadyAllOf) HasFileInfoList() bool

HasFileInfoList returns a boolean if a field has been set.

func (NotifyFileReadyAllOf) MarshalJSON

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

func (*NotifyFileReadyAllOf) SetAdditionalText

func (o *NotifyFileReadyAllOf) SetAdditionalText(v string)

SetAdditionalText gets a reference to the given string and assigns it to the AdditionalText field.

func (*NotifyFileReadyAllOf) SetFileInfoList

func (o *NotifyFileReadyAllOf) SetFileInfoList(v []FileInfo)

SetFileInfoList gets a reference to the given []FileInfo and assigns it to the FileInfoList field.

func (NotifyFileReadyAllOf) ToMap

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

type NullableAlarmNotificationTypes

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

func (NullableAlarmNotificationTypes) Get

func (NullableAlarmNotificationTypes) IsSet

func (NullableAlarmNotificationTypes) MarshalJSON

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

func (*NullableAlarmNotificationTypes) Set

func (*NullableAlarmNotificationTypes) UnmarshalJSON

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

func (*NullableAlarmNotificationTypes) Unset

func (v *NullableAlarmNotificationTypes) 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 NullableCmNotificationTypes

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

func NewNullableCmNotificationTypes

func NewNullableCmNotificationTypes(val *CmNotificationTypes) *NullableCmNotificationTypes

func (NullableCmNotificationTypes) Get

func (NullableCmNotificationTypes) IsSet

func (NullableCmNotificationTypes) MarshalJSON

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

func (*NullableCmNotificationTypes) Set

func (*NullableCmNotificationTypes) UnmarshalJSON

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

func (*NullableCmNotificationTypes) Unset

func (v *NullableCmNotificationTypes) Unset()

type NullableErrorResponse

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

func NewNullableErrorResponse

func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse

func (NullableErrorResponse) Get

func (NullableErrorResponse) IsSet

func (v NullableErrorResponse) IsSet() bool

func (NullableErrorResponse) MarshalJSON

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

func (*NullableErrorResponse) Set

func (v *NullableErrorResponse) Set(val *ErrorResponse)

func (*NullableErrorResponse) UnmarshalJSON

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

func (*NullableErrorResponse) Unset

func (v *NullableErrorResponse) Unset()

type NullableErrorResponseError

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

func NewNullableErrorResponseError

func NewNullableErrorResponseError(val *ErrorResponseError) *NullableErrorResponseError

func (NullableErrorResponseError) Get

func (NullableErrorResponseError) IsSet

func (v NullableErrorResponseError) IsSet() bool

func (NullableErrorResponseError) MarshalJSON

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

func (*NullableErrorResponseError) Set

func (*NullableErrorResponseError) UnmarshalJSON

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

func (*NullableErrorResponseError) Unset

func (v *NullableErrorResponseError) Unset()

type NullableFileDataType

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

func NewNullableFileDataType

func NewNullableFileDataType(val *FileDataType) *NullableFileDataType

func (NullableFileDataType) Get

func (NullableFileDataType) IsSet

func (v NullableFileDataType) IsSet() bool

func (NullableFileDataType) MarshalJSON

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

func (*NullableFileDataType) Set

func (v *NullableFileDataType) Set(val *FileDataType)

func (*NullableFileDataType) UnmarshalJSON

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

func (*NullableFileDataType) Unset

func (v *NullableFileDataType) Unset()

type NullableFileInfo

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

func NewNullableFileInfo

func NewNullableFileInfo(val *FileInfo) *NullableFileInfo

func (NullableFileInfo) Get

func (v NullableFileInfo) Get() *FileInfo

func (NullableFileInfo) IsSet

func (v NullableFileInfo) IsSet() bool

func (NullableFileInfo) MarshalJSON

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

func (*NullableFileInfo) Set

func (v *NullableFileInfo) Set(val *FileInfo)

func (*NullableFileInfo) UnmarshalJSON

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

func (*NullableFileInfo) Unset

func (v *NullableFileInfo) Unset()

type NullableFileNotificationTypes

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

func (NullableFileNotificationTypes) Get

func (NullableFileNotificationTypes) IsSet

func (NullableFileNotificationTypes) MarshalJSON

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

func (*NullableFileNotificationTypes) Set

func (*NullableFileNotificationTypes) UnmarshalJSON

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

func (*NullableFileNotificationTypes) Unset

func (v *NullableFileNotificationTypes) 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 NullableHeartbeatNotificationTypes

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

func (NullableHeartbeatNotificationTypes) Get

func (NullableHeartbeatNotificationTypes) IsSet

func (NullableHeartbeatNotificationTypes) MarshalJSON

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

func (*NullableHeartbeatNotificationTypes) Set

func (*NullableHeartbeatNotificationTypes) UnmarshalJSON

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

func (*NullableHeartbeatNotificationTypes) 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 NullableNotificationHeader

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

func NewNullableNotificationHeader

func NewNullableNotificationHeader(val *NotificationHeader) *NullableNotificationHeader

func (NullableNotificationHeader) Get

func (NullableNotificationHeader) IsSet

func (v NullableNotificationHeader) IsSet() bool

func (NullableNotificationHeader) MarshalJSON

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

func (*NullableNotificationHeader) Set

func (*NullableNotificationHeader) UnmarshalJSON

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

func (*NullableNotificationHeader) Unset

func (v *NullableNotificationHeader) Unset()

type NullableNotificationType

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

func NewNullableNotificationType

func NewNullableNotificationType(val *NotificationType) *NullableNotificationType

func (NullableNotificationType) Get

func (NullableNotificationType) IsSet

func (v NullableNotificationType) IsSet() bool

func (NullableNotificationType) MarshalJSON

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

func (*NullableNotificationType) Set

func (*NullableNotificationType) UnmarshalJSON

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

func (*NullableNotificationType) Unset

func (v *NullableNotificationType) Unset()

type NullableNotifyFilePreparationError

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

func (NullableNotifyFilePreparationError) Get

func (NullableNotifyFilePreparationError) IsSet

func (NullableNotifyFilePreparationError) MarshalJSON

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

func (*NullableNotifyFilePreparationError) Set

func (*NullableNotifyFilePreparationError) UnmarshalJSON

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

func (*NullableNotifyFilePreparationError) Unset

type NullableNotifyFilePreparationErrorAllOf

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

func (NullableNotifyFilePreparationErrorAllOf) Get

func (NullableNotifyFilePreparationErrorAllOf) IsSet

func (NullableNotifyFilePreparationErrorAllOf) MarshalJSON

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

func (*NullableNotifyFilePreparationErrorAllOf) Set

func (*NullableNotifyFilePreparationErrorAllOf) UnmarshalJSON

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

func (*NullableNotifyFilePreparationErrorAllOf) Unset

type NullableNotifyFileReady

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

func NewNullableNotifyFileReady

func NewNullableNotifyFileReady(val *NotifyFileReady) *NullableNotifyFileReady

func (NullableNotifyFileReady) Get

func (NullableNotifyFileReady) IsSet

func (v NullableNotifyFileReady) IsSet() bool

func (NullableNotifyFileReady) MarshalJSON

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

func (*NullableNotifyFileReady) Set

func (*NullableNotifyFileReady) UnmarshalJSON

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

func (*NullableNotifyFileReady) Unset

func (v *NullableNotifyFileReady) Unset()

type NullableNotifyFileReadyAllOf

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

func NewNullableNotifyFileReadyAllOf

func NewNullableNotifyFileReadyAllOf(val *NotifyFileReadyAllOf) *NullableNotifyFileReadyAllOf

func (NullableNotifyFileReadyAllOf) Get

func (NullableNotifyFileReadyAllOf) IsSet

func (NullableNotifyFileReadyAllOf) MarshalJSON

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

func (*NullableNotifyFileReadyAllOf) Set

func (*NullableNotifyFileReadyAllOf) UnmarshalJSON

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

func (*NullableNotifyFileReadyAllOf) Unset

func (v *NullableNotifyFileReadyAllOf) Unset()

type NullablePerfNotificationTypes

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

func (NullablePerfNotificationTypes) Get

func (NullablePerfNotificationTypes) IsSet

func (NullablePerfNotificationTypes) MarshalJSON

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

func (*NullablePerfNotificationTypes) Set

func (*NullablePerfNotificationTypes) UnmarshalJSON

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

func (*NullablePerfNotificationTypes) Unset

func (v *NullablePerfNotificationTypes) 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 NullableSubscription

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

func NewNullableSubscription

func NewNullableSubscription(val *Subscription) *NullableSubscription

func (NullableSubscription) Get

func (NullableSubscription) IsSet

func (v NullableSubscription) IsSet() bool

func (NullableSubscription) MarshalJSON

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

func (*NullableSubscription) Set

func (v *NullableSubscription) Set(val *Subscription)

func (*NullableSubscription) UnmarshalJSON

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

func (*NullableSubscription) Unset

func (v *NullableSubscription) 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 PerfNotificationTypes

type PerfNotificationTypes string

PerfNotificationTypes the model 'PerfNotificationTypes'

const (
	NOTIFY_THRESHOLD_CROSSING PerfNotificationTypes = "notifyThresholdCrossing"
)

List of PerfNotificationTypes

func NewPerfNotificationTypesFromValue

func NewPerfNotificationTypesFromValue(v string) (*PerfNotificationTypes, error)

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

func (PerfNotificationTypes) IsValid

func (v PerfNotificationTypes) IsValid() bool

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

func (PerfNotificationTypes) Ptr

Ptr returns reference to PerfNotificationTypes value

func (*PerfNotificationTypes) UnmarshalJSON

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

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 Subscription

type Subscription struct {
	ConsumerReference *string `json:"consumerReference,omitempty"`
	TimeTick          *int32  `json:"timeTick,omitempty"`
	// The filter format shall be compliant to XPath 1.0.
	Filter *string `json:"filter,omitempty"`
}

Subscription struct for Subscription

func NewSubscription

func NewSubscription() *Subscription

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

func NewSubscriptionWithDefaults

func NewSubscriptionWithDefaults() *Subscription

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

func (*Subscription) GetConsumerReference

func (o *Subscription) GetConsumerReference() string

GetConsumerReference returns the ConsumerReference field value if set, zero value otherwise.

func (*Subscription) GetConsumerReferenceOk

func (o *Subscription) GetConsumerReferenceOk() (*string, bool)

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

func (*Subscription) GetFilter

func (o *Subscription) GetFilter() string

GetFilter returns the Filter field value if set, zero value otherwise.

func (*Subscription) GetFilterOk

func (o *Subscription) GetFilterOk() (*string, bool)

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

func (*Subscription) GetTimeTick

func (o *Subscription) GetTimeTick() int32

GetTimeTick returns the TimeTick field value if set, zero value otherwise.

func (*Subscription) GetTimeTickOk

func (o *Subscription) GetTimeTickOk() (*int32, bool)

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

func (*Subscription) HasConsumerReference

func (o *Subscription) HasConsumerReference() bool

HasConsumerReference returns a boolean if a field has been set.

func (*Subscription) HasFilter

func (o *Subscription) HasFilter() bool

HasFilter returns a boolean if a field has been set.

func (*Subscription) HasTimeTick

func (o *Subscription) HasTimeTick() bool

HasTimeTick returns a boolean if a field has been set.

func (Subscription) MarshalJSON

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

func (*Subscription) SetConsumerReference

func (o *Subscription) SetConsumerReference(v string)

SetConsumerReference gets a reference to the given string and assigns it to the ConsumerReference field.

func (*Subscription) SetFilter

func (o *Subscription) SetFilter(v string)

SetFilter gets a reference to the given string and assigns it to the Filter field.

func (*Subscription) SetTimeTick

func (o *Subscription) SetTimeTick(v int32)

SetTimeTick gets a reference to the given int32 and assigns it to the TimeTick field.

func (Subscription) ToMap

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

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL