OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
heavydb.thrift.Heavy.krb5_connect_args Class Reference
+ Inheritance diagram for heavydb.thrift.Heavy.krb5_connect_args:
+ Collaboration diagram for heavydb.thrift.Heavy.krb5_connect_args:

Public Member Functions

def __init__
 
def read
 
def write
 
def validate
 
def __repr__
 
def __eq__
 
def __ne__
 

Public Attributes

 inputToken
 
 dbname
 

Private Attributes

 __dict__
 

Detailed Description

Attributes:
 - inputToken
 - dbname

Definition at line 7742 of file Heavy.py.

Constructor & Destructor Documentation

def heavydb.thrift.Heavy.krb5_connect_args.__init__ (   self,
  inputToken = None,
  dbname = None 
)

Definition at line 7751 of file Heavy.py.

7752  def __init__(self, inputToken=None, dbname=None,):
7753  self.inputToken = inputToken
7754  self.dbname = dbname

Member Function Documentation

def heavydb.thrift.Heavy.krb5_connect_args.__eq__ (   self,
  other 
)

Definition at line 7803 of file Heavy.py.

7804  def __eq__(self, other):
7805  return isinstance(other, self.__class__) and self.__dict__ == other.__dict__
def heavydb.thrift.Heavy.krb5_connect_args.__ne__ (   self,
  other 
)

Definition at line 7806 of file Heavy.py.

7807  def __ne__(self, other):
7808  return not (self == other)
7809 all_structs.append(krb5_connect_args)
krb5_connect_args.thrift_spec = (
def heavydb.thrift.Heavy.krb5_connect_args.__repr__ (   self)

Definition at line 7798 of file Heavy.py.

7799  def __repr__(self):
7800  L = ['%s=%r' % (key, value)
7801  for key, value in self.__dict__.items()]
7802  return '%s(%s)' % (self.__class__.__name__, ', '.join(L))
std::string join(T const &container, std::string const &delim)

+ Here is the call graph for this function:

def heavydb.thrift.Heavy.krb5_connect_args.read (   self,
  iprot 
)

Definition at line 7755 of file Heavy.py.

References heavydb.thrift.Heavy.connect_args.dbname, heavydb.thrift.Heavy.krb5_connect_args.dbname, and heavydb.thrift.Heavy.krb5_connect_args.inputToken.

7756  def read(self, iprot):
7757  if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None:
7758  iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec])
7759  return
7760  iprot.readStructBegin()
7761  while True:
7762  (fname, ftype, fid) = iprot.readFieldBegin()
7763  if ftype == TType.STOP:
7764  break
7765  if fid == 1:
7766  if ftype == TType.STRING:
7767  self.inputToken = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString()
7768  else:
7769  iprot.skip(ftype)
7770  elif fid == 2:
7771  if ftype == TType.STRING:
7772  self.dbname = iprot.readString().decode('utf-8', errors='replace') if sys.version_info[0] == 2 else iprot.readString()
7773  else:
7774  iprot.skip(ftype)
7775  else:
7776  iprot.skip(ftype)
7777  iprot.readFieldEnd()
7778  iprot.readStructEnd()
def heavydb.thrift.Heavy.krb5_connect_args.validate (   self)

Definition at line 7795 of file Heavy.py.

7796  def validate(self):
7797  return
def heavydb.thrift.Heavy.krb5_connect_args.write (   self,
  oprot 
)

Definition at line 7779 of file Heavy.py.

References heavydb.thrift.Heavy.connect_args.dbname, heavydb.thrift.Heavy.krb5_connect_args.dbname, and heavydb.thrift.Heavy.krb5_connect_args.inputToken.

7780  def write(self, oprot):
7781  if oprot._fast_encode is not None and self.thrift_spec is not None:
7782  oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec]))
7783  return
7784  oprot.writeStructBegin('krb5_connect_args')
7785  if self.inputToken is not None:
7786  oprot.writeFieldBegin('inputToken', TType.STRING, 1)
7787  oprot.writeString(self.inputToken.encode('utf-8') if sys.version_info[0] == 2 else self.inputToken)
7788  oprot.writeFieldEnd()
7789  if self.dbname is not None:
7790  oprot.writeFieldBegin('dbname', TType.STRING, 2)
7791  oprot.writeString(self.dbname.encode('utf-8') if sys.version_info[0] == 2 else self.dbname)
7792  oprot.writeFieldEnd()
7793  oprot.writeFieldStop()
7794  oprot.writeStructEnd()

Member Data Documentation

heavydb.thrift.Heavy.krb5_connect_args.__dict__
private

Definition at line 7804 of file Heavy.py.

Referenced by TableFunctionsFactory_node.Node.copy().

heavydb.thrift.Heavy.krb5_connect_args.dbname

Definition at line 7753 of file Heavy.py.

Referenced by heavydb.thrift.Heavy.krb5_connect_args.read(), heavydb.thrift.Heavy.switch_database_args.read(), heavydb.thrift.Heavy.krb5_connect_args.write(), and heavydb.thrift.Heavy.switch_database_args.write().

heavydb.thrift.Heavy.krb5_connect_args.inputToken

Definition at line 7752 of file Heavy.py.

Referenced by heavydb.thrift.Heavy.krb5_connect_args.read(), and heavydb.thrift.Heavy.krb5_connect_args.write().


The documentation for this class was generated from the following file: