diff options
author | 2021-07-29 11:55:23 +0000 | |
---|---|---|
committer | 2021-08-03 10:56:24 +0000 | |
commit | eacfbf2aec781c4f886e3e72866b4399db0a1cde (patch) | |
tree | 298bcbda5a16ec7d752cb9da0cd63efdb61f2b4d | |
parent | c09eeb2ceced595d7bb0c1ecc8b33789322145af (diff) |
Update slice profiles
Issue-ID: OPTFRA-979
Signed-off-by: deepikasatheesh <deepika.s84@wipro.com>
Change-Id: I6331e854e5bd730b64a2b3b4749e9e22963ace6a
-rw-r--r-- | conductor/conductor/data/plugins/inventory_provider/candidates/slice_profiles_candidate.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/conductor/conductor/data/plugins/inventory_provider/candidates/slice_profiles_candidate.py b/conductor/conductor/data/plugins/inventory_provider/candidates/slice_profiles_candidate.py index 68e767e..2e2d5ef 100644 --- a/conductor/conductor/data/plugins/inventory_provider/candidates/slice_profiles_candidate.py +++ b/conductor/conductor/data/plugins/inventory_provider/candidates/slice_profiles_candidate.py @@ -33,18 +33,23 @@ ATTRIBUTE_AGGREGATION = { "latency": sum, "resource_sharing_level": copy_first, "s_nssai": copy_first, + "s_nssai_list": copy_first, "plmn_id_list": copy_first, "availability": copy_first, "throughput": min, "reliability": copy_first, "max_number_of_ues": copy_first, - "exp_data_rate_ul": min, - "exp_data_rate_dl": min, + "exp_data_rate_ul": copy_first, + "exp_data_rate_dl": copy_first, "ue_mobility_level": copy_first, "activity_factor": copy_first, "survival_time": copy_first, "max_number_of_conns": copy_first, - "coverage_area_ta_list": copy_first + "coverage_area_ta_list": copy_first, + "max_number_of_pdu_session": copy_first, + "max_throughput": copy_first, + "perf_req": copy_first, + "terminal_density": copy_first } |