Merge "Remove duplicate replacePod API"

This commit is contained in:
Jenkins 2015-04-23 18:42:49 +00:00 committed by Gerrit Code Review
commit fa6f47b4ec
1 changed files with 0 additions and 72 deletions

View File

@ -2861,78 +2861,6 @@ class ApivbetaApi(object):
def replacePod(self, **kwargs):
"""replace the specified Pod
Args:
name, str: name of the Pod (required)
namespaces, str: object name and auth scope, such as for teams and projects (required)
body, V1beta3_Pod: (required)
Returns:
"""
allParams = ['name', 'namespaces', 'body']
params = locals()
for (key, val) in params['kwargs'].iteritems():
if key not in allParams:
raise TypeError("Got an unexpected keyword argument '%s' to method replacePod" % key)
params[key] = val
del params['kwargs']
resourcePath = '/api/v1beta3/namespaces/{namespaces}/pods/{name}/status'
resourcePath = resourcePath.replace('{format}', 'json')
method = 'PUT'
queryParams = {}
headerParams = {}
formParams = {}
files = {}
bodyParam = None
headerParams['Accept'] = 'application/json'
headerParams['Content-Type'] = '*/*,'
if ('name' in params):
replacement = str(self.apiClient.toPathValue(params['name']))
replacement = urllib.quote(replacement)
resourcePath = resourcePath.replace('{' + 'name' + '}',
replacement)
if ('namespaces' in params):
replacement = str(self.apiClient.toPathValue(params['namespaces']))
replacement = urllib.quote(replacement)
resourcePath = resourcePath.replace('{' + 'namespaces' + '}',
replacement)
if ('body' in params):
bodyParam = params['body']
postData = (formParams if formParams else bodyParam)
response = self.apiClient.callAPI(resourcePath, method, queryParams,
postData, headerParams, files=files)