コード例 #1
0
 def getArguments(self):
     '''
     Extracts the specific arguments of this CLI
     '''
     PluginBase.getArguments(self)
     if self.args.organizationName != None:
         self.organizationName = self.args.organizationName
     if self.args.repositoryName != None:
         self.repositoryName = self.args.repositoryName
         
     self.path = "v1/plugins/private/{0}/{1}/{2}".format(self.pluginName, self.organizationName, self.repositoryName)
コード例 #2
0
 def getArguments(self):
     """
     Extracts the specific arguments of this CLI
     """
     PluginBase.getArguments(self)
     self.path = "v1/plugins/private/{0}".format(self.pluginName)
コード例 #3
0
 def getArguments(self):
     PluginBase.getArguments(self)
     self.path = "v1/plugins/installed/{0}".format(self.pluginName)
コード例 #4
0
 def getArguments(self):
     PluginBase.getArguments(self)
     self.path = "v1/plugins/installed/{0}".format(self.pluginName)
     self.url_parameters = {"removeMetrics": self.removeMetrics, "removeDashes": self.removeDashes}