Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

For every new shareable slice creation request, OOF checks whether any existing slice can be reused.

...

With this current configuration data, OOF further checks against the actual requirements of these slices from the service/slice profile and finds the occupancy level.

The interface interface details between OOF and Slice Analysis MS doesn't exist and the details are below.

API Definition

Get utilization of Slices

Interface definition

Description

Content-Typeapplication/json
OperationGET
URI/api/v1/slices-config


Request Body

Attribute

Required

Type

Description

sliceIdentifiersYList<String>Identifier for the specific type of slices
configParamsYList<String>configuration fields expected from Slice Analysis MS  


Code Block
titleRequest Body - Sample
{
	"sliceIdentifiers": [
		"7e000ddc-7ba1-4fdb-a7ce-8f0a65ab3282",
		"cb51e744-bfcf-4188-885a-e3e3c51ed53e"
	],
	"configParams": [
		"dLThptPerSlice",
		"uLThptPerSlice",
		"maxNumberOfConns"
	]
}

Response Codes

Code

Description

200Data returned successfully
400Bad Request (Error in request attributes)
500Internal server error

Response Body

Attribute

Required

Type

Description

sliceConfigResponseYSliceConfigResponseResponse body containing the configuration details for the requested slices

SliceConfigResponse - Sample Response

...