Exemplo n.º 1
0
 def update_secret(self, namespace, name, data):
     secret = resources.Secret(self.api_client)
     return secret.update_secret(namespace, name, data)
Exemplo n.º 2
0
 def get_secret(self, params):
     secret = resources.Secret(self.api_client)
     return secret.get_secret(params)
Exemplo n.º 3
0
 def delete_secret(self, namespace, name):
     secret = resources.Secret(self.api_client)
     return secret.delete_secret(namespace, name)