blob: 0fb89402e9aab69f83e9aec1e4439d342c3748c2 [file] [log] [blame]
# Copyright 2020-present Open Networking Foundation
# Original copyright 2020-present ADTRAN, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
from robot.api.deco import keyword
from grpc_robot.services.service import is_connected
from grpc_robot.services.service import Service
from dmi import hw_metrics_mgmt_service_pb2_grpc, hw_metrics_mgmt_service_pb2, hw_pb2
class NativeMetricsManagementService(Service):
prefix = 'hw_metrics_mgmt_service_'
def __init__(self, ctx):
super().__init__(ctx=ctx, stub=hw_metrics_mgmt_service_pb2_grpc.NativeMetricsManagementServiceStub)
# rpc ListMetrics(HardwareID) returns(ListMetricsResponse);
@keyword
@is_connected
def hw_metrics_mgmt_service_list_metrics(self, param_dict, **kwargs):
return self._grpc_helper(self.stub.ListMetrics, hw_pb2.HardwareID, param_dict, **kwargs)
# rpc UpdateMetricsConfiguration(MetricsConfigurationRequest) returns(MetricsConfigurationResponse);
@keyword
@is_connected
def hw_metrics_mgmt_service_update_metrics_configuration(self, param_dict, **kwargs):
return self._grpc_helper(self.stub.UpdateMetricsConfiguration, hw_metrics_mgmt_service_pb2.MetricsConfigurationRequest, param_dict, **kwargs)
# rpc GetMetric(GetMetricRequest) returns(GetMetricResponse);
@keyword
@is_connected
def hw_metrics_mgmt_service_get_metric(self, param_dict, **kwargs):
return self._grpc_helper(self.stub.GetMetric, hw_metrics_mgmt_service_pb2.GetMetricRequest, param_dict, **kwargs)