openapi_ComDefs

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_ComDefs

OAS 3.0.1 specification of common type definitions in the Generic NRM © 2022, 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: 18.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_ComDefs "github.com/GIT_USER_ID/GIT_REPO_ID/openapi_ComDefs"

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_ComDefs.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_ComDefs.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_ComDefs.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi_ComDefs.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description

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 AllowedAdministrativeStateEnumValues = []AdministrativeState{
	"LOCKED",
	"UNLOCKED",
}

All allowed values of AdministrativeState enum

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 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 AllowedOperationalStateEnumValues = []OperationalState{
	"ENABLED",
	"DISABLED",
}

All allowed values of OperationalState enum

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

All allowed values of PerfNotificationTypes enum

View Source
var AllowedUsageStateEnumValues = []UsageState{
	"IDEL",
	"ACTIVE",
	"BUSY",
}

All allowed values of UsageState 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 {
	// contains filtered or unexported fields
}

APIClient manages communication with the Common Type Definitions API v18.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 AdministrativeState

type AdministrativeState string

AdministrativeState the model 'AdministrativeState'

const (
	LOCKED   AdministrativeState = "LOCKED"
	UNLOCKED AdministrativeState = "UNLOCKED"
)

List of AdministrativeState

func NewAdministrativeStateFromValue

func NewAdministrativeStateFromValue(v string) (*AdministrativeState, error)

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

func (AdministrativeState) IsValid

func (v AdministrativeState) IsValid() bool

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

func (AdministrativeState) Ptr

Ptr returns reference to AdministrativeState value

func (*AdministrativeState) UnmarshalJSON

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

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 AreaOfInterest

type AreaOfInterest struct {
	GeoAreaToCellMapping *GeoAreaToCellMapping
	ArrayOfTai           *[]Tai
	ArrayOfInt32         *[]int32
	ArrayOfString        *[]string
}

AreaOfInterest - struct for AreaOfInterest

func ArrayOfInt32AsAreaOfInterest

func ArrayOfInt32AsAreaOfInterest(v *[]int32) AreaOfInterest

[]int32AsAreaOfInterest is a convenience function that returns []int32 wrapped in AreaOfInterest

func ArrayOfStringAsAreaOfInterest

func ArrayOfStringAsAreaOfInterest(v *[]string) AreaOfInterest

[]stringAsAreaOfInterest is a convenience function that returns []string wrapped in AreaOfInterest

func ArrayOfTaiAsAreaOfInterest

func ArrayOfTaiAsAreaOfInterest(v *[]Tai) AreaOfInterest

[]TaiAsAreaOfInterest is a convenience function that returns []Tai wrapped in AreaOfInterest

func GeoAreaToCellMappingAsAreaOfInterest

func GeoAreaToCellMappingAsAreaOfInterest(v *GeoAreaToCellMapping) AreaOfInterest

GeoAreaToCellMappingAsAreaOfInterest is a convenience function that returns GeoAreaToCellMapping wrapped in AreaOfInterest

func (*AreaOfInterest) GetActualInstance

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

Get the actual instance

func (AreaOfInterest) MarshalJSON

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

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

func (*AreaOfInterest) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

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 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 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 GeoArea

type GeoArea struct {
	ConvexGeoPolygon []GeoCoordinate `json:"convexGeoPolygon,omitempty"`
}

GeoArea struct for GeoArea

func NewGeoArea

func NewGeoArea() *GeoArea

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

func NewGeoAreaWithDefaults

func NewGeoAreaWithDefaults() *GeoArea

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

func (*GeoArea) GetConvexGeoPolygon

func (o *GeoArea) GetConvexGeoPolygon() []GeoCoordinate

GetConvexGeoPolygon returns the ConvexGeoPolygon field value if set, zero value otherwise.

func (*GeoArea) GetConvexGeoPolygonOk

func (o *GeoArea) GetConvexGeoPolygonOk() ([]GeoCoordinate, bool)

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

func (*GeoArea) HasConvexGeoPolygon

func (o *GeoArea) HasConvexGeoPolygon() bool

HasConvexGeoPolygon returns a boolean if a field has been set.

func (GeoArea) MarshalJSON

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

func (*GeoArea) SetConvexGeoPolygon

func (o *GeoArea) SetConvexGeoPolygon(v []GeoCoordinate)

SetConvexGeoPolygon gets a reference to the given []GeoCoordinate and assigns it to the ConvexGeoPolygon field.

func (GeoArea) ToMap

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

type GeoAreaToCellMapping

type GeoAreaToCellMapping struct {
	GeoArea              *GeoArea `json:"geoArea,omitempty"`
	AssociationThreshold *int32   `json:"associationThreshold,omitempty"`
}

GeoAreaToCellMapping struct for GeoAreaToCellMapping

func NewGeoAreaToCellMapping

func NewGeoAreaToCellMapping() *GeoAreaToCellMapping

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

func NewGeoAreaToCellMappingWithDefaults

func NewGeoAreaToCellMappingWithDefaults() *GeoAreaToCellMapping

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

func (*GeoAreaToCellMapping) GetAssociationThreshold

func (o *GeoAreaToCellMapping) GetAssociationThreshold() int32

GetAssociationThreshold returns the AssociationThreshold field value if set, zero value otherwise.

func (*GeoAreaToCellMapping) GetAssociationThresholdOk

func (o *GeoAreaToCellMapping) GetAssociationThresholdOk() (*int32, bool)

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

func (*GeoAreaToCellMapping) GetGeoArea

func (o *GeoAreaToCellMapping) GetGeoArea() GeoArea

GetGeoArea returns the GeoArea field value if set, zero value otherwise.

func (*GeoAreaToCellMapping) GetGeoAreaOk

func (o *GeoAreaToCellMapping) GetGeoAreaOk() (*GeoArea, bool)

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

func (*GeoAreaToCellMapping) HasAssociationThreshold

func (o *GeoAreaToCellMapping) HasAssociationThreshold() bool

HasAssociationThreshold returns a boolean if a field has been set.

func (*GeoAreaToCellMapping) HasGeoArea

func (o *GeoAreaToCellMapping) HasGeoArea() bool

HasGeoArea returns a boolean if a field has been set.

func (GeoAreaToCellMapping) MarshalJSON

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

func (*GeoAreaToCellMapping) SetAssociationThreshold

func (o *GeoAreaToCellMapping) SetAssociationThreshold(v int32)

SetAssociationThreshold gets a reference to the given int32 and assigns it to the AssociationThreshold field.

func (*GeoAreaToCellMapping) SetGeoArea

func (o *GeoAreaToCellMapping) SetGeoArea(v GeoArea)

SetGeoArea gets a reference to the given GeoArea and assigns it to the GeoArea field.

func (GeoAreaToCellMapping) ToMap

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

type GeoCoordinate

type GeoCoordinate struct {
	Latitude  *float32 `json:"latitude,omitempty"`
	Longitude *float32 `json:"longitude,omitempty"`
}

GeoCoordinate struct for GeoCoordinate

func NewGeoCoordinate

func NewGeoCoordinate() *GeoCoordinate

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

func NewGeoCoordinateWithDefaults

func NewGeoCoordinateWithDefaults() *GeoCoordinate

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

func (*GeoCoordinate) GetLatitude

func (o *GeoCoordinate) GetLatitude() float32

GetLatitude returns the Latitude field value if set, zero value otherwise.

func (*GeoCoordinate) GetLatitudeOk

func (o *GeoCoordinate) GetLatitudeOk() (*float32, bool)

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

func (*GeoCoordinate) GetLongitude

func (o *GeoCoordinate) GetLongitude() float32

GetLongitude returns the Longitude field value if set, zero value otherwise.

func (*GeoCoordinate) GetLongitudeOk

func (o *GeoCoordinate) GetLongitudeOk() (*float32, bool)

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

func (*GeoCoordinate) HasLatitude

func (o *GeoCoordinate) HasLatitude() bool

HasLatitude returns a boolean if a field has been set.

func (*GeoCoordinate) HasLongitude

func (o *GeoCoordinate) HasLongitude() bool

HasLongitude returns a boolean if a field has been set.

func (GeoCoordinate) MarshalJSON

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

func (*GeoCoordinate) SetLatitude

func (o *GeoCoordinate) SetLatitude(v float32)

SetLatitude gets a reference to the given float32 and assigns it to the Latitude field.

func (*GeoCoordinate) SetLongitude

func (o *GeoCoordinate) SetLongitude(v float32)

SetLongitude gets a reference to the given float32 and assigns it to the Longitude field.

func (GeoCoordinate) ToMap

func (o GeoCoordinate) ToMap() (map[string]interface{}, 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 Host

type Host struct {
	IpAddr *IpAddr
	String *string
}

Host - struct for Host

func IpAddrAsHost

func IpAddrAsHost(v *IpAddr) Host

IpAddrAsHost is a convenience function that returns IpAddr wrapped in Host

func StringAsHost

func StringAsHost(v *string) Host

stringAsHost is a convenience function that returns string wrapped in Host

func (*Host) GetActualInstance

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

Get the actual instance

func (Host) MarshalJSON

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

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

func (*Host) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type HostAddr

type HostAddr struct {
	Ipv6Addr *Ipv6Addr
	String   *string
}

HostAddr - struct for HostAddr

func Ipv6AddrAsHostAddr

func Ipv6AddrAsHostAddr(v *Ipv6Addr) HostAddr

Ipv6AddrAsHostAddr is a convenience function that returns Ipv6Addr wrapped in HostAddr

func StringAsHostAddr

func StringAsHostAddr(v *string) HostAddr

stringAsHostAddr is a convenience function that returns string wrapped in HostAddr

func (*HostAddr) GetActualInstance

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

Get the actual instance

func (HostAddr) MarshalJSON

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

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

func (*HostAddr) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type IpAddr

type IpAddr struct {
	Ipv6Addr *Ipv6Addr
	String   *string
}

IpAddr - struct for IpAddr

func Ipv6AddrAsIpAddr

func Ipv6AddrAsIpAddr(v *Ipv6Addr) IpAddr

Ipv6AddrAsIpAddr is a convenience function that returns Ipv6Addr wrapped in IpAddr

func StringAsIpAddr

func StringAsIpAddr(v *string) IpAddr

stringAsIpAddr is a convenience function that returns string wrapped in IpAddr

func (*IpAddr) GetActualInstance

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

Get the actual instance

func (IpAddr) MarshalJSON

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

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

func (*IpAddr) UnmarshalJSON

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

Unmarshal JSON data into one of the pointers in the struct

type Ipv6Addr

type Ipv6Addr struct {
}

Ipv6Addr struct for Ipv6Addr

func NewIpv6Addr

func NewIpv6Addr() *Ipv6Addr

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

func NewIpv6AddrWithDefaults

func NewIpv6AddrWithDefaults() *Ipv6Addr

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

func (Ipv6Addr) MarshalJSON

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

func (Ipv6Addr) ToMap

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

type Ipv6Prefix

type Ipv6Prefix struct {
}

Ipv6Prefix struct for Ipv6Prefix

func NewIpv6Prefix

func NewIpv6Prefix() *Ipv6Prefix

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

func NewIpv6PrefixWithDefaults

func NewIpv6PrefixWithDefaults() *Ipv6Prefix

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

func (Ipv6Prefix) MarshalJSON

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

func (Ipv6Prefix) ToMap

func (o Ipv6Prefix) ToMap() (map[string]interface{}, 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 NullableAdministrativeState

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

func NewNullableAdministrativeState

func NewNullableAdministrativeState(val *AdministrativeState) *NullableAdministrativeState

func (NullableAdministrativeState) Get

func (NullableAdministrativeState) IsSet

func (NullableAdministrativeState) MarshalJSON

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

func (*NullableAdministrativeState) Set

func (*NullableAdministrativeState) UnmarshalJSON

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

func (*NullableAdministrativeState) Unset

func (v *NullableAdministrativeState) Unset()

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 NullableAreaOfInterest

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

func NewNullableAreaOfInterest

func NewNullableAreaOfInterest(val *AreaOfInterest) *NullableAreaOfInterest

func (NullableAreaOfInterest) Get

func (NullableAreaOfInterest) IsSet

func (v NullableAreaOfInterest) IsSet() bool

func (NullableAreaOfInterest) MarshalJSON

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

func (*NullableAreaOfInterest) Set

func (*NullableAreaOfInterest) UnmarshalJSON

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

func (*NullableAreaOfInterest) Unset

func (v *NullableAreaOfInterest) 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 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 NullableGeoArea

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

func NewNullableGeoArea

func NewNullableGeoArea(val *GeoArea) *NullableGeoArea

func (NullableGeoArea) Get

func (v NullableGeoArea) Get() *GeoArea

func (NullableGeoArea) IsSet

func (v NullableGeoArea) IsSet() bool

func (NullableGeoArea) MarshalJSON

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

func (*NullableGeoArea) Set

func (v *NullableGeoArea) Set(val *GeoArea)

func (*NullableGeoArea) UnmarshalJSON

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

func (*NullableGeoArea) Unset

func (v *NullableGeoArea) Unset()

type NullableGeoAreaToCellMapping

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

func NewNullableGeoAreaToCellMapping

func NewNullableGeoAreaToCellMapping(val *GeoAreaToCellMapping) *NullableGeoAreaToCellMapping

func (NullableGeoAreaToCellMapping) Get

func (NullableGeoAreaToCellMapping) IsSet

func (NullableGeoAreaToCellMapping) MarshalJSON

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

func (*NullableGeoAreaToCellMapping) Set

func (*NullableGeoAreaToCellMapping) UnmarshalJSON

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

func (*NullableGeoAreaToCellMapping) Unset

func (v *NullableGeoAreaToCellMapping) Unset()

type NullableGeoCoordinate

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

func NewNullableGeoCoordinate

func NewNullableGeoCoordinate(val *GeoCoordinate) *NullableGeoCoordinate

func (NullableGeoCoordinate) Get

func (NullableGeoCoordinate) IsSet

func (v NullableGeoCoordinate) IsSet() bool

func (NullableGeoCoordinate) MarshalJSON

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

func (*NullableGeoCoordinate) Set

func (v *NullableGeoCoordinate) Set(val *GeoCoordinate)

func (*NullableGeoCoordinate) UnmarshalJSON

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

func (*NullableGeoCoordinate) Unset

func (v *NullableGeoCoordinate) 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 NullableHost

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

func NewNullableHost

func NewNullableHost(val *Host) *NullableHost

func (NullableHost) Get

func (v NullableHost) Get() *Host

func (NullableHost) IsSet

func (v NullableHost) IsSet() bool

func (NullableHost) MarshalJSON

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

func (*NullableHost) Set

func (v *NullableHost) Set(val *Host)

func (*NullableHost) UnmarshalJSON

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

func (*NullableHost) Unset

func (v *NullableHost) Unset()

type NullableHostAddr

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

func NewNullableHostAddr

func NewNullableHostAddr(val *HostAddr) *NullableHostAddr

func (NullableHostAddr) Get

func (v NullableHostAddr) Get() *HostAddr

func (NullableHostAddr) IsSet

func (v NullableHostAddr) IsSet() bool

func (NullableHostAddr) MarshalJSON

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

func (*NullableHostAddr) Set

func (v *NullableHostAddr) Set(val *HostAddr)

func (*NullableHostAddr) UnmarshalJSON

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

func (*NullableHostAddr) Unset

func (v *NullableHostAddr) 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 NullableIpAddr

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

func NewNullableIpAddr

func NewNullableIpAddr(val *IpAddr) *NullableIpAddr

func (NullableIpAddr) Get

func (v NullableIpAddr) Get() *IpAddr

func (NullableIpAddr) IsSet

func (v NullableIpAddr) IsSet() bool

func (NullableIpAddr) MarshalJSON

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

func (*NullableIpAddr) Set

func (v *NullableIpAddr) Set(val *IpAddr)

func (*NullableIpAddr) UnmarshalJSON

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

func (*NullableIpAddr) Unset

func (v *NullableIpAddr) Unset()

type NullableIpv6Addr

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

func NewNullableIpv6Addr

func NewNullableIpv6Addr(val *Ipv6Addr) *NullableIpv6Addr

func (NullableIpv6Addr) Get

func (v NullableIpv6Addr) Get() *Ipv6Addr

func (NullableIpv6Addr) IsSet

func (v NullableIpv6Addr) IsSet() bool

func (NullableIpv6Addr) MarshalJSON

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

func (*NullableIpv6Addr) Set

func (v *NullableIpv6Addr) Set(val *Ipv6Addr)

func (*NullableIpv6Addr) UnmarshalJSON

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

func (*NullableIpv6Addr) Unset

func (v *NullableIpv6Addr) Unset()

type NullableIpv6Prefix

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

func NewNullableIpv6Prefix

func NewNullableIpv6Prefix(val *Ipv6Prefix) *NullableIpv6Prefix

func (NullableIpv6Prefix) Get

func (v NullableIpv6Prefix) Get() *Ipv6Prefix

func (NullableIpv6Prefix) IsSet

func (v NullableIpv6Prefix) IsSet() bool

func (NullableIpv6Prefix) MarshalJSON

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

func (*NullableIpv6Prefix) Set

func (v *NullableIpv6Prefix) Set(val *Ipv6Prefix)

func (*NullableIpv6Prefix) UnmarshalJSON

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

func (*NullableIpv6Prefix) Unset

func (v *NullableIpv6Prefix) 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 NullableOperationalState

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

func NewNullableOperationalState

func NewNullableOperationalState(val *OperationalState) *NullableOperationalState

func (NullableOperationalState) Get

func (NullableOperationalState) IsSet

func (v NullableOperationalState) IsSet() bool

func (NullableOperationalState) MarshalJSON

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

func (*NullableOperationalState) Set

func (*NullableOperationalState) UnmarshalJSON

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

func (*NullableOperationalState) Unset

func (v *NullableOperationalState) 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 NullablePlmnId

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

func NewNullablePlmnId

func NewNullablePlmnId(val *PlmnId) *NullablePlmnId

func (NullablePlmnId) Get

func (v NullablePlmnId) Get() *PlmnId

func (NullablePlmnId) IsSet

func (v NullablePlmnId) IsSet() bool

func (NullablePlmnId) MarshalJSON

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

func (*NullablePlmnId) Set

func (v *NullablePlmnId) Set(val *PlmnId)

func (*NullablePlmnId) UnmarshalJSON

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

func (*NullablePlmnId) Unset

func (v *NullablePlmnId) 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 NullableTai

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

func NewNullableTai

func NewNullableTai(val *Tai) *NullableTai

func (NullableTai) Get

func (v NullableTai) Get() *Tai

func (NullableTai) IsSet

func (v NullableTai) IsSet() bool

func (NullableTai) MarshalJSON

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

func (*NullableTai) Set

func (v *NullableTai) Set(val *Tai)

func (*NullableTai) UnmarshalJSON

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

func (*NullableTai) Unset

func (v *NullableTai) 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 NullableTimeWindow

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

func NewNullableTimeWindow

func NewNullableTimeWindow(val *TimeWindow) *NullableTimeWindow

func (NullableTimeWindow) Get

func (v NullableTimeWindow) Get() *TimeWindow

func (NullableTimeWindow) IsSet

func (v NullableTimeWindow) IsSet() bool

func (NullableTimeWindow) MarshalJSON

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

func (*NullableTimeWindow) Set

func (v *NullableTimeWindow) Set(val *TimeWindow)

func (*NullableTimeWindow) UnmarshalJSON

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

func (*NullableTimeWindow) Unset

func (v *NullableTimeWindow) Unset()

type NullableUsageState

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

func NewNullableUsageState

func NewNullableUsageState(val *UsageState) *NullableUsageState

func (NullableUsageState) Get

func (v NullableUsageState) Get() *UsageState

func (NullableUsageState) IsSet

func (v NullableUsageState) IsSet() bool

func (NullableUsageState) MarshalJSON

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

func (*NullableUsageState) Set

func (v *NullableUsageState) Set(val *UsageState)

func (*NullableUsageState) UnmarshalJSON

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

func (*NullableUsageState) Unset

func (v *NullableUsageState) Unset()

type OperationalState

type OperationalState string

OperationalState the model 'OperationalState'

const (
	ENABLED  OperationalState = "ENABLED"
	DISABLED OperationalState = "DISABLED"
)

List of OperationalState

func NewOperationalStateFromValue

func NewOperationalStateFromValue(v string) (*OperationalState, error)

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

func (OperationalState) IsValid

func (v OperationalState) IsValid() bool

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

func (OperationalState) Ptr

Ptr returns reference to OperationalState value

func (*OperationalState) UnmarshalJSON

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

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 PlmnId

type PlmnId struct {
	Mcc *string `json:"mcc,omitempty"`
	Mnc *string `json:"mnc,omitempty"`
}

PlmnId struct for PlmnId

func NewPlmnId

func NewPlmnId() *PlmnId

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

func NewPlmnIdWithDefaults

func NewPlmnIdWithDefaults() *PlmnId

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

func (*PlmnId) GetMcc

func (o *PlmnId) GetMcc() string

GetMcc returns the Mcc field value if set, zero value otherwise.

func (*PlmnId) GetMccOk

func (o *PlmnId) GetMccOk() (*string, bool)

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

func (*PlmnId) GetMnc

func (o *PlmnId) GetMnc() string

GetMnc returns the Mnc field value if set, zero value otherwise.

func (*PlmnId) GetMncOk

func (o *PlmnId) GetMncOk() (*string, bool)

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

func (*PlmnId) HasMcc

func (o *PlmnId) HasMcc() bool

HasMcc returns a boolean if a field has been set.

func (*PlmnId) HasMnc

func (o *PlmnId) HasMnc() bool

HasMnc returns a boolean if a field has been set.

func (PlmnId) MarshalJSON

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

func (*PlmnId) SetMcc

func (o *PlmnId) SetMcc(v string)

SetMcc gets a reference to the given string and assigns it to the Mcc field.

func (*PlmnId) SetMnc

func (o *PlmnId) SetMnc(v string)

SetMnc gets a reference to the given string and assigns it to the Mnc field.

func (PlmnId) ToMap

func (o PlmnId) ToMap() (map[string]interface{}, 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 Tai

type Tai struct {
	Mcc *string `json:"mcc,omitempty"`
	Mnc *string `json:"mnc,omitempty"`
	Tac *string `json:"tac,omitempty"`
}

Tai struct for Tai

func NewTai

func NewTai() *Tai

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

func NewTaiWithDefaults

func NewTaiWithDefaults() *Tai

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

func (*Tai) GetMcc

func (o *Tai) GetMcc() string

GetMcc returns the Mcc field value if set, zero value otherwise.

func (*Tai) GetMccOk

func (o *Tai) GetMccOk() (*string, bool)

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

func (*Tai) GetMnc

func (o *Tai) GetMnc() string

GetMnc returns the Mnc field value if set, zero value otherwise.

func (*Tai) GetMncOk

func (o *Tai) GetMncOk() (*string, bool)

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

func (*Tai) GetTac

func (o *Tai) GetTac() string

GetTac returns the Tac field value if set, zero value otherwise.

func (*Tai) GetTacOk

func (o *Tai) GetTacOk() (*string, bool)

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

func (*Tai) HasMcc

func (o *Tai) HasMcc() bool

HasMcc returns a boolean if a field has been set.

func (*Tai) HasMnc

func (o *Tai) HasMnc() bool

HasMnc returns a boolean if a field has been set.

func (*Tai) HasTac

func (o *Tai) HasTac() bool

HasTac returns a boolean if a field has been set.

func (Tai) MarshalJSON

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

func (*Tai) SetMcc

func (o *Tai) SetMcc(v string)

SetMcc gets a reference to the given string and assigns it to the Mcc field.

func (*Tai) SetMnc

func (o *Tai) SetMnc(v string)

SetMnc gets a reference to the given string and assigns it to the Mnc field.

func (*Tai) SetTac

func (o *Tai) SetTac(v string)

SetTac gets a reference to the given string and assigns it to the Tac field.

func (Tai) ToMap

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

type TimeWindow

type TimeWindow struct {
	StartTime *time.Time `json:"startTime,omitempty"`
	EndTime   *time.Time `json:"endTime,omitempty"`
}

TimeWindow struct for TimeWindow

func NewTimeWindow

func NewTimeWindow() *TimeWindow

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

func NewTimeWindowWithDefaults

func NewTimeWindowWithDefaults() *TimeWindow

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

func (*TimeWindow) GetEndTime

func (o *TimeWindow) GetEndTime() time.Time

GetEndTime returns the EndTime field value if set, zero value otherwise.

func (*TimeWindow) GetEndTimeOk

func (o *TimeWindow) GetEndTimeOk() (*time.Time, bool)

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

func (*TimeWindow) GetStartTime

func (o *TimeWindow) GetStartTime() time.Time

GetStartTime returns the StartTime field value if set, zero value otherwise.

func (*TimeWindow) GetStartTimeOk

func (o *TimeWindow) GetStartTimeOk() (*time.Time, bool)

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

func (*TimeWindow) HasEndTime

func (o *TimeWindow) HasEndTime() bool

HasEndTime returns a boolean if a field has been set.

func (*TimeWindow) HasStartTime

func (o *TimeWindow) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

func (TimeWindow) MarshalJSON

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

func (*TimeWindow) SetEndTime

func (o *TimeWindow) SetEndTime(v time.Time)

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

func (*TimeWindow) SetStartTime

func (o *TimeWindow) SetStartTime(v time.Time)

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

func (TimeWindow) ToMap

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

type UsageState

type UsageState string

UsageState the model 'UsageState'

const (
	IDEL   UsageState = "IDEL"
	ACTIVE UsageState = "ACTIVE"
	BUSY   UsageState = "BUSY"
)

List of UsageState

func NewUsageStateFromValue

func NewUsageStateFromValue(v string) (*UsageState, error)

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

func (UsageState) IsValid

func (v UsageState) IsValid() bool

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

func (UsageState) Ptr

func (v UsageState) Ptr() *UsageState

Ptr returns reference to UsageState value

func (*UsageState) UnmarshalJSON

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

Jump to

Keyboard shortcuts

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