diff --git a/dash-pipeline/SAI/templates/saifixedapis.cpp.j2 b/dash-pipeline/SAI/templates/saifixedapis.cpp.j2 index 501cfe0ba..f1479fc07 100644 --- a/dash-pipeline/SAI/templates/saifixedapis.cpp.j2 +++ b/dash-pipeline/SAI/templates/saifixedapis.cpp.j2 @@ -194,3 +194,38 @@ sai_status_t sai_tam_telemetry_get_data( return SAI_STATUS_NOT_IMPLEMENTED; } + +sai_status_t sai_bulk_object_clear_stats( + _In_ sai_object_id_t switch_id, + _In_ sai_object_type_t object_type, + _In_ uint32_t object_count, + _In_ const sai_object_key_t *object_key, + _In_ uint32_t number_of_counters, + _In_ const sai_stat_id_t *counter_ids, + _In_ sai_stats_mode_t mode, + _Inout_ sai_status_t *object_statuses) +{ + DASH_LOG_ENTER(); + + DASH_LOG_WARN("not implemented"); + + return SAI_STATUS_NOT_IMPLEMENTED; +} + +sai_status_t sai_bulk_object_get_stats( + _In_ sai_object_id_t switch_id, + _In_ sai_object_type_t object_type, + _In_ uint32_t object_count, + _In_ const sai_object_key_t *object_key, + _In_ uint32_t number_of_counters, + _In_ const sai_stat_id_t *counter_ids, + _In_ sai_stats_mode_t mode, + _Inout_ sai_status_t *object_statuses, + _Out_ uint64_t *counters) +{ + DASH_LOG_ENTER(); + + DASH_LOG_WARN("not implemented"); + + return SAI_STATUS_NOT_IMPLEMENTED; +}