Source code for ntnx_clustermgmt_py_client.models.clustermgmt.v4.config.NetworkInfo

# coding: utf-8


"""
IGNORE:
    Nutanix Clustermgmt Versioned APIs

    Manage Hosts, Clusters and other Infrastructure.  # noqa: E501

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

import six
from ntnx_clustermgmt_py_client.models.clustermgmt.v4.config.NameNetworkRef import NameNetworkRef  # noqa: F401,E501

[docs]class NetworkInfo(object): """Network information of HCI and SO nodes :param hci: (:attr:`hci`) Network information of HCI nodes :type hci: :param so: (:attr:`so`) Network information of SO nodes :type so: """ """ 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 = { 'hci': 'list[clustermgmt.v4.config.NameNetworkRef]', 'so': 'list[clustermgmt.v4.config.NameNetworkRef]', '_reserved': 'dict(str, object)', '_object_type': 'str', '_unknown_fields': 'dict(str, object)', } attribute_map = { 'hci': 'hci', 'so': 'so', '_reserved': '$reserved', '_object_type': '$objectType', '_unknown_fields': '$unknownFields', } def __init__(self, hci=None, so=None, *args, **kwargs): # noqa: E501 self.__hci = None self.__so = None self.discriminator = None if hci is not None: self.__hci = hci if so is not None: self.__so = so # populate hidden vars if not empty self._populate_hidden_vars(kwargs) def _initialize_object_type(self): return 'clustermgmt.v4.config.NetworkInfo' def _initialize_fq_object_type(self): return 'clustermgmt.v4.r0.b1.config.NetworkInfo' 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 hci(self): """ Network information of HCI nodes :type: list[ :class:`~ntnx_clustermgmt_py_client.models.clustermgmt.v4.config.NameNetworkRef` ] """ # noqa: E501 return self.__hci @hci.setter def hci(self, hci): self.__hci = hci @property def so(self): """ Network information of SO nodes :type: list[ :class:`~ntnx_clustermgmt_py_client.models.clustermgmt.v4.config.NameNetworkRef` ] """ # noqa: E501 return self.__so @so.setter def so(self, so): self.__so = so @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(NetworkInfo, 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, NetworkInfo): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other