Esempio n. 1
0
    def forests(self, connection=None):
        """
        Get a list of the forests in the local cluster.
        """
        if connection is None:
            connection = self.connection

        return Forest.list(connection)
Esempio n. 2
0
    def forests(self, connection=None):
        """
        Get a list of the forests in the local cluster.
        """
        if connection is None:
            connection = self.connection

        return Forest.list(connection)
Esempio n. 3
0
 def list(self, args, config, connection):
     forests = Forest.list(connection)
     print(json.dumps(forests, sort_keys=True, indent=2))
Esempio n. 4
0
 def list(self, args, config, connection):
     print(Forest.list(connection))
    def forests(self, connection=None):
        if connection is None:
            connection = self.connection

        return Forest.list(connection)
Esempio n. 6
0
    def forests(self, connection=None):
        if connection is None:
            connection = self.connection

        return Forest.list(connection)
Esempio n. 7
0
 def list(self, args, config, connection):
     print(Forest.list(connection))
Esempio n. 8
0
 def list(self, args, config, connection):
     forests = Forest.list(connection)
     print(json.dumps(forests, sort_keys=True, indent=2))