Source code for ntnx_vmm_py_client.models.vmm.v4.ahv.config.SBDF

# coding: utf-8


"""
IGNORE:
    Nutanix Vmm Versioned APIs

    Manage the life-cycle of virtual machines hosted on Nutanix  # noqa: E501

    OpenAPI spec version: 4.0.3-alpha-1
    
    Generated by: https://github.com/swagger-api/swagger-codegen.git
IGNORE
"""
import pprint
import json
import ast
import re  # noqa: F401

import six

[docs]class SBDF(object): """The (S)egment:(B)us:(D)evice.(F)unction hardware address. See https://wiki.xen.org/wiki/Bus:Device.Function_(BDF)_Notation for more details. :param segment: (:attr:`segment`) :type segment: :param bus: (:attr:`bus`) :type bus: :param device: (:attr:`device`) :type device: :param func: (:attr:`func`) :type func: """ """ IGNORE: Attributes: swagger_types (dict): The key is attribute name and the value is attribute type. attribute_map (dict): The key is attribute name and the value is json key in definition. IGNORE """ # noqa: E501 swagger_types = { 'segment': 'int', 'bus': 'int', 'device': 'int', 'func': 'int', '_reserved': 'dict(str, object)', '_object_type': 'str', '_unknown_fields': 'dict(str, object)', } attribute_map = { 'segment': 'segment', 'bus': 'bus', 'device': 'device', 'func': 'func', '_reserved': '$reserved', '_object_type': '$objectType', '_unknown_fields': '$unknownFields', } def __init__(self, segment=None, bus=None, device=None, func=None, *args, **kwargs): # noqa: E501 self.__segment = None self.__bus = None self.__device = None self.__func = None self.discriminator = None if segment is not None: self.__segment = segment if bus is not None: self.__bus = bus if device is not None: self.__device = device if func is not None: self.__func = func # populate hidden vars if not empty self._populate_hidden_vars(kwargs) def _initialize_object_type(self): return 'vmm.v4.ahv.config.SBDF' def _initialize_fq_object_type(self): return 'vmm.v4.r0.a1.ahv.config.SBDF' def _populate_hidden_vars(self, kwargs): if "_reserved" in kwargs and kwargs["_reserved"] is not None: self.__dollar_reserved = kwargs["_reserved"] elif "_reserved" in self.attribute_map and self.attribute_map["_reserved"] in kwargs and kwargs[self.attribute_map["_reserved"]] is not None: self.__dollar_reserved = kwargs[self.attribute_map["_reserved"]] else : self.__dollar_reserved = {"$fqObjectType": self._initialize_fq_object_type()} if "_unknown_fields" in kwargs and kwargs["_unknown_fields"] is not None: self.__dollar_unknown_fields = kwargs["_unknown_fields"] elif "_unknown_fields" in self.attribute_map and self.attribute_map["_unknown_fields"] in kwargs and kwargs[self.attribute_map["_unknown_fields"]] is not None: self.__dollar_unknown_fields = kwargs[self.attribute_map["_unknown_fields"]] else : self.__dollar_unknown_fields = {} if "_object_type" in kwargs and kwargs["_object_type"] is not None: self.__dollar_object_type = kwargs["_object_type"] elif "_object_type" in self.attribute_map and self.attribute_map["_object_type"] in kwargs and kwargs[self.attribute_map["_object_type"]] is not None: self.__dollar_object_type = kwargs[self.attribute_map["_object_type"]] else: self.__dollar_object_type = self._initialize_object_type() def get_object_type(self): return self.__dollar_object_type def get_reserved(self): return self.__dollar_reserved def get_unknown_fields(self): return self.__dollar_unknown_fields @property def segment(self): """ :type: :class:`~int` """ # noqa: E501 return self.__segment @segment.setter def segment(self, segment): self.__segment = segment @property def bus(self): """ :type: :class:`~int` """ # noqa: E501 return self.__bus @bus.setter def bus(self, bus): self.__bus = bus @property def device(self): """ :type: :class:`~int` """ # noqa: E501 return self.__device @device.setter def device(self, device): self.__device = device @property def func(self): """ :type: :class:`~int` """ # noqa: E501 return self.__func @func.setter def func(self, func): self.__func = func @property def _reserved(self): """ :type: dict(str, :class:`~object`) """ # noqa: E501 return self.__dollar_reserved @property def _object_type(self): """ :type: :class:`~str` """ # noqa: E501 return self.__dollar_object_type @property def _unknown_fields(self): """ :type: dict(str, :class:`~object`) """ # noqa: E501 return self.__dollar_unknown_fields def _to_dict(self, sanitize): """Returns the model properties as a dict. Omits None properties based on the provided "sanitize" parameter. :param sanitize: A flag to omit None properties if set to True :type sanitize: bool """ result = {} for attr, attr_type in six.iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x._to_dict(sanitize) if hasattr(x, "_to_dict") else x, value )) elif hasattr(value, "_to_dict"): result[attr] = value._to_dict(sanitize) elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1]._to_dict(sanitize)) if hasattr(item[1], "_to_dict") else item, six.iteritems(value) )) else: if sanitize: if value is not None: result[attr] = value else: result[attr] = value if issubclass(SBDF, dict): for key, value in six.iteritems(self): result[key] = value return result
[docs] def to_dict(self): """Returns the model properties as a dictionary""" return self._to_dict(False)
[docs] def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self._to_dict(True))
def __repr__(self): """For `print` and `pprint`""" return self.to_str() def __eq__(self, other): """Returns true if both objects are equal""" if not isinstance(other, SBDF): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other