File: //lib/mysqlsh/lib/python3.8/site-packages/oci/log_analytics/models/label_summary_report.py
# coding: utf-8
# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601
from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
from oci.decorators import init_model_state_from_kwargs
@init_model_state_from_kwargs
class LabelSummaryReport(object):
"""
LabelSummaryReport
"""
def __init__(self, **kwargs):
"""
Initializes a new LabelSummaryReport object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param non_oob_count:
The value to assign to the non_oob_count property of this LabelSummaryReport.
:type non_oob_count: int
:param oob_count:
The value to assign to the oob_count property of this LabelSummaryReport.
:type oob_count: int
"""
self.swagger_types = {
'non_oob_count': 'int',
'oob_count': 'int'
}
self.attribute_map = {
'non_oob_count': 'nonOobCount',
'oob_count': 'oobCount'
}
self._non_oob_count = None
self._oob_count = None
@property
def non_oob_count(self):
"""
Gets the non_oob_count of this LabelSummaryReport.
The count of custom (user defined) labels.
:return: The non_oob_count of this LabelSummaryReport.
:rtype: int
"""
return self._non_oob_count
@non_oob_count.setter
def non_oob_count(self, non_oob_count):
"""
Sets the non_oob_count of this LabelSummaryReport.
The count of custom (user defined) labels.
:param non_oob_count: The non_oob_count of this LabelSummaryReport.
:type: int
"""
self._non_oob_count = non_oob_count
@property
def oob_count(self):
"""
Gets the oob_count of this LabelSummaryReport.
The count of built in labels.
:return: The oob_count of this LabelSummaryReport.
:rtype: int
"""
return self._oob_count
@oob_count.setter
def oob_count(self, oob_count):
"""
Sets the oob_count of this LabelSummaryReport.
The count of built in labels.
:param oob_count: The oob_count of this LabelSummaryReport.
:type: int
"""
self._oob_count = oob_count
def __repr__(self):
return formatted_flat_dict(self)
def __eq__(self, other):
if other is None:
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
return not self == other