Categorygithub.com/5GCoreNet/openapiopenapi_Nnrf_NFDiscovery
package
1.18.2
Repository: https://github.com/5gcorenet/openapi.git
Documentation: pkg.go.dev

# README

Go API client for openapi_Nnrf_NFDiscovery

NRF NFDiscovery Service.
© 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: 1.3.0-alpha.2
  • 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/oauth2
go get golang.org/x/net/context

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

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

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

Documentation for API Endpoints

All URIs are relative to https://example.com/nnrf-disc/v1

ClassMethodHTTP requestDescription
CompleteStoredSearchDocumentApiRetrieveCompleteSearchGet /searches/{searchId}/complete
IndividualSCPDomainRoutingInformationSubscriptionDocumentApiScpDomainRoutingInfoUnsubscribeDelete /scp-domain-routing-info-subs/{subscriptionID}Deletes a subscription
NFInstancesStoreApiSearchNFInstancesGet /nf-instancesSearch a collection of NF Instances
SCPDomainRoutingInformationDocumentApiSCPDomainRoutingInfoGetGet /scp-domain-routing-info
SCPDomainRoutingInformationSubscriptionsCollectionApiScpDomainRoutingInfoSubscribePost /scp-domain-routing-info-subsCreate a new subscription
StoredSearchDocumentApiRetrieveStoredSearchGet /searches/{searchId}

Documentation For Models

Documentation For Authorization

oAuth2ClientCredentials

  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • nnrf-disc: Access to the Nnrf_NFDiscovery API
  • nnrf-disc:scp-domain:read: Access to read the scp-domain-routing-info resource
  • nnrf-disc:scp-domain-subs:write: Access to create/delete a scp-domain subscription resource
  • nnrf-disc:nf-instances:read-complete-profile: Access to the Nnrf_NFDiscovery API enabling the discovery of the complete profile of NF instances

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "ACCESSTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, sw.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)

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

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
CnfAsComplexQuery is a convenience function that returns Cnf wrapped in ComplexQuery.
DnfAsComplexQuery is a convenience function that returns Dnf wrapped in ComplexQuery.
interface{}AsIdentityRange is a convenience function that returns interface{} wrapped in IdentityRange.
interface{}AsImsiRange is a convenience function that returns interface{} wrapped in ImsiRange.
interface{}AsInternalGroupIdRange is a convenience function that returns interface{} wrapped in InternalGroupIdRange.
interface{}AsIpAddr is a convenience function that returns interface{} wrapped in IpAddr.
interface{}AsNfServiceInstance is a convenience function that returns interface{} wrapped in NfServiceInstance.
interface{}AsPlmnRange is a convenience function that returns interface{} wrapped in PlmnRange.
interface{}AsSupiRange is a convenience function that returns interface{} wrapped in SupiRange.
interface{}AsTacRange is a convenience function that returns interface{} wrapped in TacRange.
IsNil checks if an input is nil.
NewAanfInfo instantiates a new AanfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAanfInfoWithDefaults instantiates a new AanfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessTokenErr instantiates a new AccessTokenErr object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessTokenErrWithDefaults instantiates a new AccessTokenErr object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessTokenReq instantiates a new AccessTokenReq object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessTokenReqWithDefaults instantiates a new AccessTokenReq object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccessTypeFromValue returns a pointer to a valid AccessType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAfEventExposureData instantiates a new AfEventExposureData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAfEventExposureDataWithDefaults instantiates a new AfEventExposureData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAmfInfo instantiates a new AmfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAmfInfoWithDefaults instantiates a new AmfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewAtom instantiates a new Atom object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAtomWithDefaults instantiates a new Atom object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAtsssCapability instantiates a new AtsssCapability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAtsssCapabilityWithDefaults instantiates a new AtsssCapability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAusfInfo instantiates a new AusfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAusfInfoWithDefaults instantiates a new AusfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBsfInfo instantiates a new BsfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBsfInfoWithDefaults instantiates a new BsfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChfInfo instantiates a new ChfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChfInfoWithDefaults instantiates a new ChfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCnf instantiates a new Cnf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCnfUnit instantiates a new CnfUnit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCnfUnitWithDefaults instantiates a new CnfUnit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCnfWithDefaults instantiates a new Cnf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCollocatedNfInstance instantiates a new CollocatedNfInstance object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCollocatedNfInstanceWithDefaults instantiates a new CollocatedNfInstance object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewDccfInfo instantiates a new DccfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDccfInfoWithDefaults instantiates a new DccfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDefaultNotificationSubscription instantiates a new DefaultNotificationSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDefaultNotificationSubscriptionWithDefaults instantiates a new DefaultNotificationSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDefSubServiceInfo instantiates a new DefSubServiceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDefSubServiceInfoWithDefaults instantiates a new DefSubServiceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnf instantiates a new Dnf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnfUnit instantiates a new DnfUnit object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnfUnitWithDefaults instantiates a new DnfUnit object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnfWithDefaults instantiates a new Dnf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnnEasdfInfoItem instantiates a new DnnEasdfInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnnEasdfInfoItemWithDefaults instantiates a new DnnEasdfInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnnInfoItem instantiates a new DnnInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnnInfoItemWithDefaults instantiates a new DnnInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnnMbSmfInfoItem instantiates a new DnnMbSmfInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnnMbSmfInfoItemWithDefaults instantiates a new DnnMbSmfInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnnSmfInfoItem instantiates a new DnnSmfInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnnSmfInfoItemWithDefaults instantiates a new DnnSmfInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnnTsctsfInfoItem instantiates a new DnnTsctsfInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnnTsctsfInfoItemWithDefaults instantiates a new DnnTsctsfInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDnnUpfInfoItem instantiates a new DnnUpfInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDnnUpfInfoItemWithDefaults instantiates a new DnnUpfInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEasdfInfo instantiates a new EasdfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEasdfInfoWithDefaults instantiates a new EasdfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExtSnssai instantiates a new ExtSnssai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExtSnssaiWithDefaults instantiates a new ExtSnssai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGmlcInfo instantiates a new GmlcInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGmlcInfoWithDefaults instantiates a new GmlcInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGuami instantiates a new Guami object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGuamiWithDefaults instantiates a new Guami object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHssInfo instantiates a new HssInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHssInfoWithDefaults instantiates a new HssInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInvalidParam instantiates a new InvalidParam object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInvalidParamWithDefaults instantiates a new InvalidParam object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIpEndPoint instantiates a new IpEndPoint object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIpEndPointWithDefaults instantiates a new IpEndPoint object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIpv4AddressRange instantiates a new Ipv4AddressRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIpv4AddressRangeWithDefaults instantiates a new Ipv4AddressRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
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.
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.
NewIpv6PrefixRange instantiates a new Ipv6PrefixRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIpv6PrefixRangeWithDefaults instantiates a new Ipv6PrefixRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewIwmscInfo instantiates a new IwmscInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIwmscInfoWithDefaults instantiates a new IwmscInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLmfInfo instantiates a new LmfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLmfInfoWithDefaults instantiates a new LmfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLocalityDescription instantiates a new LocalityDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocalityDescriptionItem instantiates a new LocalityDescriptionItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocalityDescriptionItemWithDefaults instantiates a new LocalityDescriptionItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLocalityDescriptionWithDefaults instantiates a new LocalityDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMbSmfInfo instantiates a new MbSmfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMbSmfInfoWithDefaults instantiates a new MbSmfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMbsServiceAreaInfo instantiates a new MbsServiceAreaInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMbsServiceAreaInfoWithDefaults instantiates a new MbsServiceAreaInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMbsSession instantiates a new MbsSession object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMbsSessionWithDefaults instantiates a new MbsSession object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMbUpfInfo instantiates a new MbUpfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMbUpfInfoWithDefaults instantiates a new MbUpfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMfafInfo instantiates a new MfafInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMfafInfoWithDefaults instantiates a new MfafInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMlAnalyticsInfo instantiates a new MlAnalyticsInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMlAnalyticsInfoWithDefaults instantiates a new MlAnalyticsInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMnpfInfo instantiates a new MnpfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMnpfInfoWithDefaults instantiates a new MnpfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNcgi instantiates a new Ncgi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNcgiTai instantiates a new NcgiTai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNcgiTaiWithDefaults instantiates a new NcgiTai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNcgiWithDefaults instantiates a new Ncgi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNefInfo instantiates a new NefInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNefInfoWithDefaults instantiates a new NefInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNetworkNodeDiameterAddress instantiates a new NetworkNodeDiameterAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNetworkNodeDiameterAddressWithDefaults instantiates a new NetworkNodeDiameterAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNfInstanceInfo instantiates a new NfInstanceInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNfInstanceInfoWithDefaults instantiates a new NfInstanceInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNFProfile instantiates a new NFProfile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNFProfileWithDefaults instantiates a new NFProfile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNFService instantiates a new NFService object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNFServiceVersion instantiates a new NFServiceVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNFServiceVersionWithDefaults instantiates a new NFServiceVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNFServiceWithDefaults instantiates a new NFService object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNoProfileMatchInfo instantiates a new NoProfileMatchInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNoProfileMatchInfoWithDefaults instantiates a new NoProfileMatchInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNsacfCapability instantiates a new NsacfCapability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNsacfCapabilityWithDefaults instantiates a new NsacfCapability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNsacfInfo instantiates a new NsacfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNsacfInfoWithDefaults instantiates a new NsacfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNssaafInfo instantiates a new NssaafInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNssaafInfoWithDefaults instantiates a new NssaafInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewNwdafCapability instantiates a new NwdafCapability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNwdafCapabilityWithDefaults instantiates a new NwdafCapability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNwdafInfo instantiates a new NwdafInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNwdafInfoWithDefaults instantiates a new NwdafInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPcfInfo instantiates a new PcfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPcfInfoWithDefaults instantiates a new PcfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPcscfInfo instantiates a new PcscfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPcscfInfoWithDefaults instantiates a new PcscfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPfdData instantiates a new PfdData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPfdDataWithDefaults instantiates a new PfdData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewPlmnIdNid instantiates a new PlmnIdNid object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlmnIdNidWithDefaults instantiates a new PlmnIdNid object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewPlmnSnssai instantiates a new PlmnSnssai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPlmnSnssaiWithDefaults instantiates a new PlmnSnssai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPreferredSearch instantiates a new PreferredSearch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPreferredSearchWithDefaults instantiates a new PreferredSearch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProblemDetails instantiates a new ProblemDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProblemDetailsWithDefaults instantiates a new ProblemDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProSeCapability instantiates a new ProSeCapability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProSeCapabilityWithDefaults instantiates a new ProSeCapability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryParamCombination instantiates a new QueryParamCombination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryParamCombinationWithDefaults instantiates a new QueryParamCombination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQueryParameter instantiates a new QueryParameter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewQueryParameterWithDefaults instantiates a new QueryParameter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRedirectResponse instantiates a new RedirectResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRedirectResponseWithDefaults instantiates a new RedirectResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScpDomainConnectivity instantiates a new ScpDomainConnectivity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScpDomainConnectivityWithDefaults instantiates a new ScpDomainConnectivity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScpDomainInfo instantiates a new ScpDomainInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScpDomainInfoWithDefaults instantiates a new ScpDomainInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScpDomainRoutingInfoNotification instantiates a new ScpDomainRoutingInfoNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScpDomainRoutingInfoNotificationWithDefaults instantiates a new ScpDomainRoutingInfoNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScpDomainRoutingInformation instantiates a new ScpDomainRoutingInformation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScpDomainRoutingInformationWithDefaults instantiates a new ScpDomainRoutingInformation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScpDomainRoutingInfoSubscription instantiates a new ScpDomainRoutingInfoSubscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScpDomainRoutingInfoSubscriptionWithDefaults instantiates a new ScpDomainRoutingInfoSubscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewScpInfo instantiates a new ScpInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewScpInfoWithDefaults instantiates a new ScpInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSdRange instantiates a new SdRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSdRangeWithDefaults instantiates a new SdRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSearchResult instantiates a new SearchResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSearchResultWithDefaults instantiates a new SearchResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSeppInfo instantiates a new SeppInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSeppInfoWithDefaults instantiates a new SeppInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSharedDataIdRange instantiates a new SharedDataIdRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSharedDataIdRangeWithDefaults instantiates a new SharedDataIdRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmfInfo instantiates a new SmfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmfInfoWithDefaults instantiates a new SmfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmsfInfo instantiates a new SmsfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmsfInfoWithDefaults instantiates a new SmsfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnssai instantiates a new Snssai object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnssaiEasdfInfoItem instantiates a new SnssaiEasdfInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnssaiEasdfInfoItemWithDefaults instantiates a new SnssaiEasdfInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnssaiExtension instantiates a new SnssaiExtension object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnssaiExtensionWithDefaults instantiates a new SnssaiExtension object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnssaiInfoItem instantiates a new SnssaiInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnssaiInfoItemWithDefaults instantiates a new SnssaiInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnssaiMbSmfInfoItem instantiates a new SnssaiMbSmfInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnssaiMbSmfInfoItemWithDefaults instantiates a new SnssaiMbSmfInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnssaiSmfInfoItem instantiates a new SnssaiSmfInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnssaiSmfInfoItemWithDefaults instantiates a new SnssaiSmfInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnssaiTsctsfInfoItem instantiates a new SnssaiTsctsfInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnssaiTsctsfInfoItemWithDefaults instantiates a new SnssaiTsctsfInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnssaiUpfInfoItem instantiates a new SnssaiUpfInfoItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSnssaiUpfInfoItemWithDefaults instantiates a new SnssaiUpfInfoItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSnssaiWithDefaults instantiates a new Snssai object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSsm instantiates a new Ssm object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSsmWithDefaults instantiates a new Ssm object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStoredSearchResult instantiates a new StoredSearchResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStoredSearchResultWithDefaults instantiates a new StoredSearchResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSuciInfo instantiates a new SuciInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSuciInfoWithDefaults instantiates a new SuciInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewTaiRange instantiates a new TaiRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTaiRangeWithDefaults instantiates a new TaiRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
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.
NewTmgi instantiates a new Tmgi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTmgiRange instantiates a new TmgiRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTmgiRangeWithDefaults instantiates a new TmgiRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTmgiWithDefaults instantiates a new Tmgi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTrustAfInfo instantiates a new TrustAfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTrustAfInfoWithDefaults instantiates a new TrustAfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTsctsfInfo instantiates a new TsctsfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTsctsfInfoWithDefaults instantiates a new TsctsfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUdmInfo instantiates a new UdmInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUdmInfoWithDefaults instantiates a new UdmInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUdrInfo instantiates a new UdrInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUdrInfoWithDefaults instantiates a new UdrInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUdsfInfo instantiates a new UdsfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUdsfInfoWithDefaults instantiates a new UdsfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUnTrustAfInfo instantiates a new UnTrustAfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUnTrustAfInfoWithDefaults instantiates a new UnTrustAfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpfInfo instantiates a new UpfInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpfInfoWithDefaults instantiates a new UpfInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewV2xCapability instantiates a new V2xCapability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewV2xCapabilityWithDefaults instantiates a new V2xCapability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVendorSpecificFeature instantiates a new VendorSpecificFeature object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVendorSpecificFeatureWithDefaults instantiates a new VendorSpecificFeature object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Constants

List of AccessType.

# Variables

All allowed values of AccessType enum.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

AanfInfo Represents the information relative to an AAnF NF Instance.
AccessTokenErr Error returned in the access token response message.
AccessTokenReq Contains information related to the access token request.
AfEvent Represents Application Events.
AfEventExposureData AF Event Exposure data managed by a given NEF Instance.
AmfInfo Information of an AMF NF Instance.
AnNodeType Access Network Node Type (gNB, ng-eNB...).
APIClient manages communication with the NRF NFDiscovery Service API v1.3.0-alpha.2 In most cases there should be only one, shared, APIClient.
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Atom contains a search parameter and its positive or negative content.
AtsssCapability Containes Capability to support procedures related to Access Traffic Steering, Switching, Splitting.
AusfInfo Information of an AUSF NF Instance.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BsfInfo Information of a BSF NF Instance.
ChfInfo Information of a CHF NF Instance.
Cnf A conjunctive normal form.
CnfUnit During the processing of cnfUnits attribute, all the members in the array shall be interpreted as logically concatenated with logical \"AND\".
CollocatedNfInstance Information of an collocated NF Instance registered in the NRF.
CollocatedNfType NF types for a collocated NF.
ComplexQuery - The ComplexQuery data type is either a conjunctive normal form or a disjunctive normal form.
Configuration stores the configuration of the API client.
DataSetId Types of data sets and subsets stored in UDR.
DccfInfo Information of a DCCF NF Instance.
DefaultNotificationSubscription Data structure for specifying the notifications the NF service subscribes by default, along with callback URI.
DefSubServiceInfo Service Specific information for Default Notification Subscription.
Dnf A disjunctive normal form.
DnfUnit During the processing of dnfUnits attribute, all the members in the array shall be interpreted as logically concatenated with logical \"OR\".
DnnEasdfInfoItem Set of parameters supported by EASDF for a given DNN.
DnnInfoItem Set of parameters supported by NF for a given DNN.
DnnMbSmfInfoItem Parameters supported by an MB-SMF for a given DNN.
DnnSmfInfoItem Set of parameters supported by SMF for a given DNN.
DnnSmfInfoItemDnaiListInner struct for DnnSmfInfoItemDnaiListInner.
DnnSmfInfoItemDnn struct for DnnSmfInfoItemDnn.
DnnTsctsfInfoItem Parameters supported by an TSCTSF for a given DNN.
DnnUpfInfoItem Set of parameters supported by UPF for a given DNN.
EasdfInfo Information of an EASDF NF Instance.
EventId Possible values are: - LOAD_LEVEL_INFORMATION: Represent the analytics of load level information of corresponding network slice.
ExternalClientType Indicates types of External Clients.
ExtSnssai The sdRanges and wildcardSd attributes shall be exclusive from each other.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GmlcInfo Information of a GMLC NF Instance.
Guami Globally Unique AMF Identifier constructed out of PLMN, Network and AMF identity.
HssInfo Information of an HSS NF Instance.
IdentityRange - A range of GPSIs (subscriber identities), either based on a numeric range, or based on regular-expression matching.
ImsiRange - A range of IMSIs (subscriber identities), either based on a numeric range, or based on regular-expression matching.
InterfaceUpfInfoItem Information of a given IP interface of an UPF.
InternalGroupIdRange - A range of Group IDs (internal group identities), either based on a numeric range, or based on regular-expression matching.
InvalidParam It contains an invalid parameter and a related description.
IpAddr - Contains an IP adresse.
IpEndPoint IP addressing information of a given NFService; it consists on, e.g.
IpIndex Represents the IP Index to be sent from UDM to the SMF (its value can be either an integer or a string).
IpReachability Indicates the type(s) of IP addresses reachable via an SCP.
Ipv4AddressRange Range of IPv4 addresses.
Ipv6Addr String identifying an IPv6 address formatted according to clause 4 of RFC5952.
Ipv6Prefix String identifying an IPv6 address prefix formatted according to clause 4 of RFC 5952.
Ipv6PrefixRange Range of IPv6 prefixes.
IwmscInfo Information of an SMS-IWMSC NF Instance.
LmfInfo Information of an LMF NF Instance.
LocalityDescription Locality description.
LocalityDescriptionItem Locality description item.
LocalityType Type of locality description.
MbSmfInfo Information of an MB-SMF NF Instance.
MbsServiceArea MBS Service Area.
MbsServiceAreaInfo MBS Service Area Information for location dependent MBS session.
MbsSession MBS Session currently served by an MB-SMF.
MbsSessionId MBS Session Identifier.
MbUpfInfo Information of an MB-UPF NF Instance.
MfafInfo Information of a MFAF NF Instance.
MlAnalyticsInfo ML Analytics Filter information supported by the Nnwdaf_MLModelProvision service.
MnpfInfo Information of an MNPF Instance.
N1MessageClass Enumeration for N1 Message Class.
N2InformationClass Enumeration for N2 Information Class.
N2InterfaceAmfInfo AMF N2 interface information.
N32Purpose Usage purpose of establishing N32 connectivity.
Ncgi Contains the NCGI (NR Cell Global Identity), as described in 3GPP 23.003.
NcgiTai List of NR cell ids, with their pertaining TAIs.
NefInfo Information of an NEF NF Instance.
NetworkNodeDiameterAddress struct for NetworkNodeDiameterAddress.
NfInstanceInfo Contains information on an NF profile matching a discovery request.
NFProfile Information of an NF Instance discovered by the NRF.
NFService Information of a given NF Service Instance; it is part of the NFProfile of an NF Instance discovered by the NRF.
NfServiceInstance - NF service instance.
NFServiceStatus Status of a given NF Service Instance of an NF Instance stored in NRF.
NFServiceVersion Contains the version details of an NF service.
NFStatus Status of a given NF Instance stored in NRF.
NFType NF types known to NRF.
NoProfileMatchInfo Provides the reason for not finding NF matching the search criteria.
NoProfileMatchReason No Profile Match Reason.
NotificationType Types of notifications used in Default Notification URIs in the NF Profile of an NF Instance.
NsacfCapability NSACF service capabilities (e.g.
NsacfInfo Information of a NSACF NF Instance.
NssaafInfo Information of a NSSAAF Instance.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NwdafCapability Indicates the capability supported by the NWDAF.
NwdafEvent Possible values are: - SLICE_LOAD_LEVEL: Indicates that the event subscribed is load level information of Network Slice - NETWORK_PERFORMANCE: Indicates that the event subscribed is network performance information.
NwdafInfo Information of a NWDAF NF Instance.
PcfInfo Information of a PCF NF Instance.
PcscfInfo Information of a P-CSCF NF Instance.
PduSessionType PduSessionType indicates the type of a PDU session.
PfdData List of Application IDs and/or AF IDs managed by a given NEF Instance.
PlmnId When PlmnId needs to be converted to string (e.g.
PlmnIdNid Contains the serving core network operator PLMN ID and, for an SNPN, the NID that together with the PLMN ID identifies the SNPN.
PlmnRange - Range of PLMN IDs.
PlmnSnssai List of network slices (S-NSSAIs) for a given PLMN ID.
PreferredSearch Contains information on whether the returned NFProfiles match the preferred query parameters.
ProblemDetails Provides additional information in an error response.
ProSeCapability Indicate the supported ProSe Capability by the PCF.
QueryParamCombination Contains a list of Query Parameters.
QueryParameter Contains the name and value of a query parameter.
RatType Indicates the radio access used.
RedirectResponse The response shall include a Location header field containing a different URI (pointing to a different URI of an other service instance), or the same URI if a request is redirected to the same target resource via a different SCP.
ScpCapability Indicates the capabilities supported by an SCP.
ScpDomainConnectivity SCP Domain Connectivity Information.
ScpDomainInfo SCP Domain specific information.
ScpDomainRoutingInfoNotification SCP Domain Routing Information Notification.
ScpDomainRoutingInformation SCP Domain Routing Information.
ScpDomainRoutingInfoSubscription SCP Domain Routing Information Subscription.
ScpInfo Information of an SCP Instance.
SdRange A range of SDs (Slice Differentiators).
SearchResult Contains the list of NF Profiles returned in a Discovery response.
SeppInfo Information of a SEPP Instance.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
ServiceName Service names known to NRF.
SharedDataIdRange A range of SharedDataIds based on regular-expression matching.
SmfInfo Information of an SMF NF Instance.
SmsfInfo Specific Data for SMSF.
Snssai When Snssai needs to be converted to string (e.g.
SnssaiEasdfInfoItem Set of parameters supported by EASDF for a given S-NSSAI.
SnssaiExtension Extensions to the Snssai data type, sdRanges and wildcardSd shall not be present simultaneously.
SnssaiInfoItem Parameters supported by an NF for a given S-NSSAI Set of parameters supported by NF for a given S-NSSAI.
SnssaiMbSmfInfoItem Parameters supported by an MB-SMF for a given S-NSSAI.
SnssaiSmfInfoItem Set of parameters supported by SMF for a given S-NSSAI.
SnssaiTsctsfInfoItem Set of parameters supported by TSCTSF for a given S-NSSAI.
SnssaiUpfInfoItem Set of parameters supported by UPF for a given S-NSSAI.
Ssm Source specific IP multicast address.
StoredSearchResult Contains a complete search result (i.e.
SuciInfo SUCI information containing Routing Indicator and Home Network Public Key ID.
SupiRange - A range of SUPIs (subscriber identities), either based on a numeric range, or based on regular-expression matching.
SupportedGADShapes Indicates supported GAD shapes.
TacRange - Range of TACs (Tracking Area Codes).
Tai Contains the tracking area identity as described in 3GPP 23.003.
TaiRange Range of TAIs (Tracking Area Identities).
Tmgi Temporary Mobile Group Identity.
TmgiRange Range of TMGIs.
TngfInfo Infomation of the TNGF endpoints.
TransportProtocol Types of transport protocol used in a given IP endpoint of an NF Service Instance.
TrustAfInfo Information of a trusted AF Instance.
TsctsfInfo Information of a TSCTSF NF Instance.
TwifInfo Addressing information (IP addresses, FQDN) of the TWIF.
UdmInfo Information of an UDM NF Instance.
UdrInfo Information of an UDR NF Instance.
UdsfInfo Information related to UDSF.
UnTrustAfInfo Information of a untrusted AF Instance.
UpfInfo Information of an UPF NF Instance.
UPInterfaceType Types of User-Plane interfaces of the UPF.
UriScheme HTTP and HTTPS URI scheme.
V2xCapability Indicate the supported V2X Capability by the PCF.
VendorSpecificFeature Information about a vendor-specific feature.
WAgfInfo Information of the W-AGF end-points.

# Interfaces

No description provided by the author

# Type aliases

AccessType Indicates whether the access is via 3GPP or via non-3GPP.
CompleteStoredSearchDocumentApiService CompleteStoredSearchDocumentApi service.
IndividualSCPDomainRoutingInformationSubscriptionDocumentApiService IndividualSCPDomainRoutingInformationSubscriptionDocumentApi service.
NFInstancesStoreApiService NFInstancesStoreApi service.
SCPDomainRoutingInformationDocumentApiService SCPDomainRoutingInformationDocumentApi service.
SCPDomainRoutingInformationSubscriptionsCollectionApiService SCPDomainRoutingInformationSubscriptionsCollectionApi service.
ServerConfigurations stores multiple ServerConfiguration items.
StoredSearchDocumentApiService StoredSearchDocumentApi service.