Beispiel #1
0
 def get_arguments(self):
     """
     Extracts the specific arguments of this CLI
     """
     PluginBase.get_arguments(self)
     if self.args.organizationName is not None:
         self.organizationName = self.args.organizationName
     if self.args.repositoryName is not None:
         self.repositoryName = self.args.repositoryName
         
     self.path = "v1/plugins/private/{0}/{1}/{2}".format(self.pluginName, self.organizationName, self.repositoryName)
Beispiel #2
0
    def get_arguments(self):
        """
        Extracts the specific arguments of this CLI
        """
        PluginBase.get_arguments(self)
        if self.args.organizationName is not None:
            self.organizationName = self.args.organizationName
        if self.args.repositoryName is not None:
            self.repositoryName = self.args.repositoryName

        self.path = "v1/plugins/private/{0}/{1}/{2}".format(
            self.pluginName, self.organizationName, self.repositoryName)
 def get_arguments(self):
     PluginBase.get_arguments(self)
     self.path = "v1/plugins/installed/{0}".format(self.pluginName)
     self.url_parameters = {"removeMetrics": self.removeMetrics, "removeDashes": self.removeDashes}
 def get_arguments(self):
     PluginBase.get_arguments(self)
     self.path = "v1/plugins/installed/{0}".format(self.pluginName)
Beispiel #5
0
 def get_arguments(self):
     """
     Extracts the specific arguments of this CLI
     """
     PluginBase.get_arguments(self)
     self.path = "v1/plugins/private/{0}".format(self.pluginName)