lentiq.models.spark_sql_configuration_master module
# coding: utf-8 ####alex test """ """ import pprint import re # noqa: F401 import six from lentiq.models.application_resources import ApplicationResources # noqa: F401,E501 class SparkSQLConfigurationMaster(object): """ """ """ 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. """ swagger_types = { 'java_driver_options_mem_mb': 'int', 'master_web_ui_proxy_port': 'int', 'replicas': 'int', 'resources': 'ApplicationResources', 'spark_app_ui_port': 'int', 'spark_master_port': 'int', 'thrift_port': 'int' } attribute_map = { 'java_driver_options_mem_mb': 'javaDriverOptionsMemMb', 'master_web_ui_proxy_port': 'masterWebUIProxyPort', 'replicas': 'replicas', 'resources': 'resources', 'spark_app_ui_port': 'sparkAppUIPort', 'spark_master_port': 'sparkMasterPort', 'thrift_port': 'thriftPort' } discriminator = None def __init__(self, java_driver_options_mem_mb=None, master_web_ui_proxy_port=None, replicas=None, resources=None, spark_app_ui_port=None, spark_master_port=None, thrift_port=None): # noqa: E501 """SparkSQLConfigurationMaster - a model defined in Swagger""" # noqa: E501 self._java_driver_options_mem_mb = None self._master_web_ui_proxy_port = None self._replicas = None self._resources = None self._spark_app_ui_port = None self._spark_master_port = None self._thrift_port = None if java_driver_options_mem_mb is not None: self.java_driver_options_mem_mb = java_driver_options_mem_mb if master_web_ui_proxy_port is not None: self.master_web_ui_proxy_port = master_web_ui_proxy_port if replicas is not None: self.replicas = replicas if resources is not None: self.resources = resources if spark_app_ui_port is not None: self.spark_app_ui_port = spark_app_ui_port if spark_master_port is not None: self.spark_master_port = spark_master_port if thrift_port is not None: self.thrift_port = thrift_port @property def java_driver_options_mem_mb(self): """Gets the java_driver_options_mem_mb of this SparkSQLConfigurationMaster. # noqa: E501 :return: The java_driver_options_mem_mb of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._java_driver_options_mem_mb @java_driver_options_mem_mb.setter def java_driver_options_mem_mb(self, java_driver_options_mem_mb): """Sets the java_driver_options_mem_mb of this SparkSQLConfigurationMaster. :param java_driver_options_mem_mb: The java_driver_options_mem_mb of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._java_driver_options_mem_mb = java_driver_options_mem_mb @property def master_web_ui_proxy_port(self): """Gets the master_web_ui_proxy_port of this SparkSQLConfigurationMaster. # noqa: E501 :return: The master_web_ui_proxy_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._master_web_ui_proxy_port @master_web_ui_proxy_port.setter def master_web_ui_proxy_port(self, master_web_ui_proxy_port): """Sets the master_web_ui_proxy_port of this SparkSQLConfigurationMaster. :param master_web_ui_proxy_port: The master_web_ui_proxy_port of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._master_web_ui_proxy_port = master_web_ui_proxy_port @property def replicas(self): """Gets the replicas of this SparkSQLConfigurationMaster. # noqa: E501 :return: The replicas of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._replicas @replicas.setter def replicas(self, replicas): """Sets the replicas of this SparkSQLConfigurationMaster. :param replicas: The replicas of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._replicas = replicas @property def resources(self): """Gets the resources of this SparkSQLConfigurationMaster. # noqa: E501 :return: The resources of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: ApplicationResources """ return self._resources @resources.setter def resources(self, resources): """Sets the resources of this SparkSQLConfigurationMaster. :param resources: The resources of this SparkSQLConfigurationMaster. # noqa: E501 :type: ApplicationResources """ self._resources = resources @property def spark_app_ui_port(self): """Gets the spark_app_ui_port of this SparkSQLConfigurationMaster. # noqa: E501 :return: The spark_app_ui_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._spark_app_ui_port @spark_app_ui_port.setter def spark_app_ui_port(self, spark_app_ui_port): """Sets the spark_app_ui_port of this SparkSQLConfigurationMaster. :param spark_app_ui_port: The spark_app_ui_port of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._spark_app_ui_port = spark_app_ui_port @property def spark_master_port(self): """Gets the spark_master_port of this SparkSQLConfigurationMaster. # noqa: E501 :return: The spark_master_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._spark_master_port @spark_master_port.setter def spark_master_port(self, spark_master_port): """Sets the spark_master_port of this SparkSQLConfigurationMaster. :param spark_master_port: The spark_master_port of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._spark_master_port = spark_master_port @property def thrift_port(self): """Gets the thrift_port of this SparkSQLConfigurationMaster. # noqa: E501 :return: The thrift_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._thrift_port @thrift_port.setter def thrift_port(self, thrift_port): """Sets the thrift_port of this SparkSQLConfigurationMaster. :param thrift_port: The thrift_port of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._thrift_port = thrift_port def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value if issubclass(SparkSQLConfigurationMaster, dict): for key, value in self.items(): result[key] = value return result def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict()) 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, SparkSQLConfigurationMaster): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other
Classes
class SparkSQLConfigurationMaster
class SparkSQLConfigurationMaster(object): """ """ """ 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. """ swagger_types = { 'java_driver_options_mem_mb': 'int', 'master_web_ui_proxy_port': 'int', 'replicas': 'int', 'resources': 'ApplicationResources', 'spark_app_ui_port': 'int', 'spark_master_port': 'int', 'thrift_port': 'int' } attribute_map = { 'java_driver_options_mem_mb': 'javaDriverOptionsMemMb', 'master_web_ui_proxy_port': 'masterWebUIProxyPort', 'replicas': 'replicas', 'resources': 'resources', 'spark_app_ui_port': 'sparkAppUIPort', 'spark_master_port': 'sparkMasterPort', 'thrift_port': 'thriftPort' } discriminator = None def __init__(self, java_driver_options_mem_mb=None, master_web_ui_proxy_port=None, replicas=None, resources=None, spark_app_ui_port=None, spark_master_port=None, thrift_port=None): # noqa: E501 """SparkSQLConfigurationMaster - a model defined in Swagger""" # noqa: E501 self._java_driver_options_mem_mb = None self._master_web_ui_proxy_port = None self._replicas = None self._resources = None self._spark_app_ui_port = None self._spark_master_port = None self._thrift_port = None if java_driver_options_mem_mb is not None: self.java_driver_options_mem_mb = java_driver_options_mem_mb if master_web_ui_proxy_port is not None: self.master_web_ui_proxy_port = master_web_ui_proxy_port if replicas is not None: self.replicas = replicas if resources is not None: self.resources = resources if spark_app_ui_port is not None: self.spark_app_ui_port = spark_app_ui_port if spark_master_port is not None: self.spark_master_port = spark_master_port if thrift_port is not None: self.thrift_port = thrift_port @property def java_driver_options_mem_mb(self): """Gets the java_driver_options_mem_mb of this SparkSQLConfigurationMaster. # noqa: E501 :return: The java_driver_options_mem_mb of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._java_driver_options_mem_mb @java_driver_options_mem_mb.setter def java_driver_options_mem_mb(self, java_driver_options_mem_mb): """Sets the java_driver_options_mem_mb of this SparkSQLConfigurationMaster. :param java_driver_options_mem_mb: The java_driver_options_mem_mb of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._java_driver_options_mem_mb = java_driver_options_mem_mb @property def master_web_ui_proxy_port(self): """Gets the master_web_ui_proxy_port of this SparkSQLConfigurationMaster. # noqa: E501 :return: The master_web_ui_proxy_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._master_web_ui_proxy_port @master_web_ui_proxy_port.setter def master_web_ui_proxy_port(self, master_web_ui_proxy_port): """Sets the master_web_ui_proxy_port of this SparkSQLConfigurationMaster. :param master_web_ui_proxy_port: The master_web_ui_proxy_port of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._master_web_ui_proxy_port = master_web_ui_proxy_port @property def replicas(self): """Gets the replicas of this SparkSQLConfigurationMaster. # noqa: E501 :return: The replicas of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._replicas @replicas.setter def replicas(self, replicas): """Sets the replicas of this SparkSQLConfigurationMaster. :param replicas: The replicas of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._replicas = replicas @property def resources(self): """Gets the resources of this SparkSQLConfigurationMaster. # noqa: E501 :return: The resources of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: ApplicationResources """ return self._resources @resources.setter def resources(self, resources): """Sets the resources of this SparkSQLConfigurationMaster. :param resources: The resources of this SparkSQLConfigurationMaster. # noqa: E501 :type: ApplicationResources """ self._resources = resources @property def spark_app_ui_port(self): """Gets the spark_app_ui_port of this SparkSQLConfigurationMaster. # noqa: E501 :return: The spark_app_ui_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._spark_app_ui_port @spark_app_ui_port.setter def spark_app_ui_port(self, spark_app_ui_port): """Sets the spark_app_ui_port of this SparkSQLConfigurationMaster. :param spark_app_ui_port: The spark_app_ui_port of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._spark_app_ui_port = spark_app_ui_port @property def spark_master_port(self): """Gets the spark_master_port of this SparkSQLConfigurationMaster. # noqa: E501 :return: The spark_master_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._spark_master_port @spark_master_port.setter def spark_master_port(self, spark_master_port): """Sets the spark_master_port of this SparkSQLConfigurationMaster. :param spark_master_port: The spark_master_port of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._spark_master_port = spark_master_port @property def thrift_port(self): """Gets the thrift_port of this SparkSQLConfigurationMaster. # noqa: E501 :return: The thrift_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int """ return self._thrift_port @thrift_port.setter def thrift_port(self, thrift_port): """Sets the thrift_port of this SparkSQLConfigurationMaster. :param thrift_port: The thrift_port of this SparkSQLConfigurationMaster. # noqa: E501 :type: int """ self._thrift_port = thrift_port def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value if issubclass(SparkSQLConfigurationMaster, dict): for key, value in self.items(): result[key] = value return result def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict()) 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, SparkSQLConfigurationMaster): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other
Ancestors (in MRO)
- SparkSQLConfigurationMaster
- builtins.object
Class variables
var attribute_map
var discriminator
var swagger_types
Static methods
def __init__(
self, java_driver_options_mem_mb=None, master_web_ui_proxy_port=None, replicas=None, resources=None, spark_app_ui_port=None, spark_master_port=None, thrift_port=None)
SparkSQLConfigurationMaster - a model defined in Swagger
def __init__(self, java_driver_options_mem_mb=None, master_web_ui_proxy_port=None, replicas=None, resources=None, spark_app_ui_port=None, spark_master_port=None, thrift_port=None): # noqa: E501 """SparkSQLConfigurationMaster - a model defined in Swagger""" # noqa: E501 self._java_driver_options_mem_mb = None self._master_web_ui_proxy_port = None self._replicas = None self._resources = None self._spark_app_ui_port = None self._spark_master_port = None self._thrift_port = None if java_driver_options_mem_mb is not None: self.java_driver_options_mem_mb = java_driver_options_mem_mb if master_web_ui_proxy_port is not None: self.master_web_ui_proxy_port = master_web_ui_proxy_port if replicas is not None: self.replicas = replicas if resources is not None: self.resources = resources if spark_app_ui_port is not None: self.spark_app_ui_port = spark_app_ui_port if spark_master_port is not None: self.spark_master_port = spark_master_port if thrift_port is not None: self.thrift_port = thrift_port
def to_dict(
self)
Returns the model properties as a dict
def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value if issubclass(SparkSQLConfigurationMaster, dict): for key, value in self.items(): result[key] = value return result
def to_str(
self)
Returns the string representation of the model
def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict())
Instance variables
var java_driver_options_mem_mb
Gets the java_driver_options_mem_mb of this SparkSQLConfigurationMaster. # noqa: E501
:return: The java_driver_options_mem_mb of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int
var master_web_ui_proxy_port
Gets the master_web_ui_proxy_port of this SparkSQLConfigurationMaster. # noqa: E501
:return: The master_web_ui_proxy_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int
var replicas
Gets the replicas of this SparkSQLConfigurationMaster. # noqa: E501
:return: The replicas of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int
var resources
Gets the resources of this SparkSQLConfigurationMaster. # noqa: E501
:return: The resources of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: ApplicationResources
var spark_app_ui_port
Gets the spark_app_ui_port of this SparkSQLConfigurationMaster. # noqa: E501
:return: The spark_app_ui_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int
var spark_master_port
Gets the spark_master_port of this SparkSQLConfigurationMaster. # noqa: E501
:return: The spark_master_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int
var thrift_port
Gets the thrift_port of this SparkSQLConfigurationMaster. # noqa: E501
:return: The thrift_port of this SparkSQLConfigurationMaster. # noqa: E501 :rtype: int