# coding: utf-8 """ Pulp 3 API Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501 The version of the OpenAPI document: v3 Contact: pulp-list@redhat.com Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import re # noqa: F401 # python 2 and python 3 compatibility library import six from pulpcore.client.pulp_python.api_client import ApiClient from pulpcore.client.pulp_python.exceptions import ( # noqa: F401 ApiTypeError, ApiValueError ) class RemotesPythonApi(object): """NOTE: This class is auto generated by OpenAPI Generator Ref: https://openapi-generator.tech Do not edit the class manually. """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def create(self, python_python_remote, **kwargs): # noqa: E501 """Create a python remote # noqa: E501 Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create(python_python_remote, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param PythonPythonRemote python_python_remote: (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: PythonPythonRemoteResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.create_with_http_info(python_python_remote, **kwargs) # noqa: E501 def create_with_http_info(self, python_python_remote, **kwargs): # noqa: E501 """Create a python remote # noqa: E501 Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.create_with_http_info(python_python_remote, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param PythonPythonRemote python_python_remote: (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(PythonPythonRemoteResponse, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'python_python_remote' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method create" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'python_python_remote' is set if self.api_client.client_side_validation and ('python_python_remote' not in local_var_params or # noqa: E501 local_var_params['python_python_remote'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `python_python_remote` when calling `create`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None if 'python_python_remote' in local_var_params: body_params = local_var_params['python_python_remote'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data']) # noqa: E501 # Authentication setting auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501 return self.api_client.call_api( '/pulp/api/v3/remotes/python/python/', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='PythonPythonRemoteResponse', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def delete(self, python_python_remote_href, **kwargs): # noqa: E501 """Delete a python remote # noqa: E501 Trigger an asynchronous delete task # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete(python_python_remote_href, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str python_python_remote_href: (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: AsyncOperationResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.delete_with_http_info(python_python_remote_href, **kwargs) # noqa: E501 def delete_with_http_info(self, python_python_remote_href, **kwargs): # noqa: E501 """Delete a python remote # noqa: E501 Trigger an asynchronous delete task # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.delete_with_http_info(python_python_remote_href, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str python_python_remote_href: (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(AsyncOperationResponse, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'python_python_remote_href' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method delete" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'python_python_remote_href' is set if self.api_client.client_side_validation and ('python_python_remote_href' not in local_var_params or # noqa: E501 local_var_params['python_python_remote_href'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `python_python_remote_href` when calling `delete`") # noqa: E501 collection_formats = {} path_params = {} if 'python_python_remote_href' in local_var_params: path_params['python_python_remote_href'] = local_var_params['python_python_remote_href'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501 return self.api_client.call_api( '{python_python_remote_href}', 'DELETE', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='AsyncOperationResponse', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def from_bandersnatch(self, config, name, **kwargs): # noqa: E501 """Create from Bandersnatch # noqa: E501 Takes the fields specified in the Bandersnatch config and creates a Python Remote from it. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.from_bandersnatch(config, name, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param file config: A Bandersnatch config that may be used to construct a Python Remote. (required) :param str name: A unique name for this remote (required) :param PolicyEnum policy: The policy to use when downloading content. The possible values include: 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default. :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: PythonPythonRemoteResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.from_bandersnatch_with_http_info(config, name, **kwargs) # noqa: E501 def from_bandersnatch_with_http_info(self, config, name, **kwargs): # noqa: E501 """Create from Bandersnatch # noqa: E501 Takes the fields specified in the Bandersnatch config and creates a Python Remote from it. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.from_bandersnatch_with_http_info(config, name, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param file config: A Bandersnatch config that may be used to construct a Python Remote. (required) :param str name: A unique name for this remote (required) :param PolicyEnum policy: The policy to use when downloading content. The possible values include: 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default. :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(PythonPythonRemoteResponse, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'config', 'name', 'policy' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method from_bandersnatch" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'config' is set if self.api_client.client_side_validation and ('config' not in local_var_params or # noqa: E501 local_var_params['config'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `config` when calling `from_bandersnatch`") # noqa: E501 # verify the required parameter 'name' is set if self.api_client.client_side_validation and ('name' not in local_var_params or # noqa: E501 local_var_params['name'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `name` when calling `from_bandersnatch`") # noqa: E501 collection_formats = {} path_params = {} query_params = [] header_params = {} form_params = [] local_var_files = {} if 'config' in local_var_params: local_var_files['config'] = local_var_params['config'] # noqa: E501 if 'name' in local_var_params: form_params.append(('name', local_var_params['name'])) # noqa: E501 if 'policy' in local_var_params: form_params.append(('policy', local_var_params['policy'])) # noqa: E501 body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['multipart/form-data', 'application/x-www-form-urlencoded']) # noqa: E501 # Authentication setting auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501 return self.api_client.call_api( '/pulp/api/v3/remotes/python/python/from_bandersnatch/', 'POST', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='PythonPythonRemoteResponse', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def list(self, **kwargs): # noqa: E501 """List python remotes # noqa: E501 Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param int limit: Number of results to return per page. :param str name: :param str name__contains: Filter results where name contains value :param str name__icontains: Filter results where name contains value :param list[str] name__in: Filter results where name is in a comma-separated list of values :param str name__startswith: Filter results where name starts with value :param int offset: The initial index from which to return the results. :param str ordering: Which field to use when ordering the results. :param str pulp_label_select: Filter labels by search string :param datetime pulp_last_updated: ISO 8601 formatted dates are supported :param datetime pulp_last_updated__gt: Filter results where pulp_last_updated is greater than value :param datetime pulp_last_updated__gte: Filter results where pulp_last_updated is greater than or equal to value :param datetime pulp_last_updated__lt: Filter results where pulp_last_updated is less than value :param datetime pulp_last_updated__lte: Filter results where pulp_last_updated is less than or equal to value :param list[datetime] pulp_last_updated__range: Filter results where pulp_last_updated is between two comma separated values :param str fields: A list of fields to include in the response. :param str exclude_fields: A list of fields to exclude from the response. :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: PaginatedpythonPythonRemoteResponseList If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.list_with_http_info(**kwargs) # noqa: E501 def list_with_http_info(self, **kwargs): # noqa: E501 """List python remotes # noqa: E501 Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.list_with_http_info(async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param int limit: Number of results to return per page. :param str name: :param str name__contains: Filter results where name contains value :param str name__icontains: Filter results where name contains value :param list[str] name__in: Filter results where name is in a comma-separated list of values :param str name__startswith: Filter results where name starts with value :param int offset: The initial index from which to return the results. :param str ordering: Which field to use when ordering the results. :param str pulp_label_select: Filter labels by search string :param datetime pulp_last_updated: ISO 8601 formatted dates are supported :param datetime pulp_last_updated__gt: Filter results where pulp_last_updated is greater than value :param datetime pulp_last_updated__gte: Filter results where pulp_last_updated is greater than or equal to value :param datetime pulp_last_updated__lt: Filter results where pulp_last_updated is less than value :param datetime pulp_last_updated__lte: Filter results where pulp_last_updated is less than or equal to value :param list[datetime] pulp_last_updated__range: Filter results where pulp_last_updated is between two comma separated values :param str fields: A list of fields to include in the response. :param str exclude_fields: A list of fields to exclude from the response. :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(PaginatedpythonPythonRemoteResponseList, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'limit', 'name', 'name__contains', 'name__icontains', 'name__in', 'name__startswith', 'offset', 'ordering', 'pulp_label_select', 'pulp_last_updated', 'pulp_last_updated__gt', 'pulp_last_updated__gte', 'pulp_last_updated__lt', 'pulp_last_updated__lte', 'pulp_last_updated__range', 'fields', 'exclude_fields' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method list" % key ) local_var_params[key] = val del local_var_params['kwargs'] collection_formats = {} path_params = {} query_params = [] if 'limit' in local_var_params and local_var_params['limit'] is not None: # noqa: E501 query_params.append(('limit', local_var_params['limit'])) # noqa: E501 if 'name' in local_var_params and local_var_params['name'] is not None: # noqa: E501 query_params.append(('name', local_var_params['name'])) # noqa: E501 if 'name__contains' in local_var_params and local_var_params['name__contains'] is not None: # noqa: E501 query_params.append(('name__contains', local_var_params['name__contains'])) # noqa: E501 if 'name__icontains' in local_var_params and local_var_params['name__icontains'] is not None: # noqa: E501 query_params.append(('name__icontains', local_var_params['name__icontains'])) # noqa: E501 if 'name__in' in local_var_params and local_var_params['name__in'] is not None: # noqa: E501 query_params.append(('name__in', local_var_params['name__in'])) # noqa: E501 collection_formats['name__in'] = 'csv' # noqa: E501 if 'name__startswith' in local_var_params and local_var_params['name__startswith'] is not None: # noqa: E501 query_params.append(('name__startswith', local_var_params['name__startswith'])) # noqa: E501 if 'offset' in local_var_params and local_var_params['offset'] is not None: # noqa: E501 query_params.append(('offset', local_var_params['offset'])) # noqa: E501 if 'ordering' in local_var_params and local_var_params['ordering'] is not None: # noqa: E501 query_params.append(('ordering', local_var_params['ordering'])) # noqa: E501 if 'pulp_label_select' in local_var_params and local_var_params['pulp_label_select'] is not None: # noqa: E501 query_params.append(('pulp_label_select', local_var_params['pulp_label_select'])) # noqa: E501 if 'pulp_last_updated' in local_var_params and local_var_params['pulp_last_updated'] is not None: # noqa: E501 query_params.append(('pulp_last_updated', local_var_params['pulp_last_updated'])) # noqa: E501 if 'pulp_last_updated__gt' in local_var_params and local_var_params['pulp_last_updated__gt'] is not None: # noqa: E501 query_params.append(('pulp_last_updated__gt', local_var_params['pulp_last_updated__gt'])) # noqa: E501 if 'pulp_last_updated__gte' in local_var_params and local_var_params['pulp_last_updated__gte'] is not None: # noqa: E501 query_params.append(('pulp_last_updated__gte', local_var_params['pulp_last_updated__gte'])) # noqa: E501 if 'pulp_last_updated__lt' in local_var_params and local_var_params['pulp_last_updated__lt'] is not None: # noqa: E501 query_params.append(('pulp_last_updated__lt', local_var_params['pulp_last_updated__lt'])) # noqa: E501 if 'pulp_last_updated__lte' in local_var_params and local_var_params['pulp_last_updated__lte'] is not None: # noqa: E501 query_params.append(('pulp_last_updated__lte', local_var_params['pulp_last_updated__lte'])) # noqa: E501 if 'pulp_last_updated__range' in local_var_params and local_var_params['pulp_last_updated__range'] is not None: # noqa: E501 query_params.append(('pulp_last_updated__range', local_var_params['pulp_last_updated__range'])) # noqa: E501 collection_formats['pulp_last_updated__range'] = 'csv' # noqa: E501 if 'fields' in local_var_params and local_var_params['fields'] is not None: # noqa: E501 query_params.append(('fields', local_var_params['fields'])) # noqa: E501 if 'exclude_fields' in local_var_params and local_var_params['exclude_fields'] is not None: # noqa: E501 query_params.append(('exclude_fields', local_var_params['exclude_fields'])) # noqa: E501 header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501 return self.api_client.call_api( '/pulp/api/v3/remotes/python/python/', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='PaginatedpythonPythonRemoteResponseList', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def partial_update(self, python_python_remote_href, patchedpython_python_remote, **kwargs): # noqa: E501 """Update a python remote # noqa: E501 Trigger an asynchronous partial update task # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.partial_update(python_python_remote_href, patchedpython_python_remote, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str python_python_remote_href: (required) :param PatchedpythonPythonRemote patchedpython_python_remote: (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: AsyncOperationResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.partial_update_with_http_info(python_python_remote_href, patchedpython_python_remote, **kwargs) # noqa: E501 def partial_update_with_http_info(self, python_python_remote_href, patchedpython_python_remote, **kwargs): # noqa: E501 """Update a python remote # noqa: E501 Trigger an asynchronous partial update task # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.partial_update_with_http_info(python_python_remote_href, patchedpython_python_remote, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str python_python_remote_href: (required) :param PatchedpythonPythonRemote patchedpython_python_remote: (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(AsyncOperationResponse, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'python_python_remote_href', 'patchedpython_python_remote' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method partial_update" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'python_python_remote_href' is set if self.api_client.client_side_validation and ('python_python_remote_href' not in local_var_params or # noqa: E501 local_var_params['python_python_remote_href'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `python_python_remote_href` when calling `partial_update`") # noqa: E501 # verify the required parameter 'patchedpython_python_remote' is set if self.api_client.client_side_validation and ('patchedpython_python_remote' not in local_var_params or # noqa: E501 local_var_params['patchedpython_python_remote'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `patchedpython_python_remote` when calling `partial_update`") # noqa: E501 collection_formats = {} path_params = {} if 'python_python_remote_href' in local_var_params: path_params['python_python_remote_href'] = local_var_params['python_python_remote_href'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None if 'patchedpython_python_remote' in local_var_params: body_params = local_var_params['patchedpython_python_remote'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data']) # noqa: E501 # Authentication setting auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501 return self.api_client.call_api( '{python_python_remote_href}', 'PATCH', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='AsyncOperationResponse', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def read(self, python_python_remote_href, **kwargs): # noqa: E501 """Inspect a python remote # noqa: E501 Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.read(python_python_remote_href, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str python_python_remote_href: (required) :param str fields: A list of fields to include in the response. :param str exclude_fields: A list of fields to exclude from the response. :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: PythonPythonRemoteResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.read_with_http_info(python_python_remote_href, **kwargs) # noqa: E501 def read_with_http_info(self, python_python_remote_href, **kwargs): # noqa: E501 """Inspect a python remote # noqa: E501 Python Remotes are representations of an external repository of Python content, eg. PyPI. Fields include upstream repository config. Python Remotes are also used to `sync` from upstream repositories, and contains sync settings. # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.read_with_http_info(python_python_remote_href, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str python_python_remote_href: (required) :param str fields: A list of fields to include in the response. :param str exclude_fields: A list of fields to exclude from the response. :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(PythonPythonRemoteResponse, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'python_python_remote_href', 'fields', 'exclude_fields' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method read" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'python_python_remote_href' is set if self.api_client.client_side_validation and ('python_python_remote_href' not in local_var_params or # noqa: E501 local_var_params['python_python_remote_href'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `python_python_remote_href` when calling `read`") # noqa: E501 collection_formats = {} path_params = {} if 'python_python_remote_href' in local_var_params: path_params['python_python_remote_href'] = local_var_params['python_python_remote_href'] # noqa: E501 query_params = [] if 'fields' in local_var_params and local_var_params['fields'] is not None: # noqa: E501 query_params.append(('fields', local_var_params['fields'])) # noqa: E501 if 'exclude_fields' in local_var_params and local_var_params['exclude_fields'] is not None: # noqa: E501 query_params.append(('exclude_fields', local_var_params['exclude_fields'])) # noqa: E501 header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501 return self.api_client.call_api( '{python_python_remote_href}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='PythonPythonRemoteResponse', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats) def update(self, python_python_remote_href, python_python_remote, **kwargs): # noqa: E501 """Update a python remote # noqa: E501 Trigger an asynchronous update task # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update(python_python_remote_href, python_python_remote, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str python_python_remote_href: (required) :param PythonPythonRemote python_python_remote: (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: AsyncOperationResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.update_with_http_info(python_python_remote_href, python_python_remote, **kwargs) # noqa: E501 def update_with_http_info(self, python_python_remote_href, python_python_remote, **kwargs): # noqa: E501 """Update a python remote # noqa: E501 Trigger an asynchronous update task # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.update_with_http_info(python_python_remote_href, python_python_remote, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str python_python_remote_href: (required) :param PythonPythonRemote python_python_remote: (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. :param _request_timeout: timeout setting for this request. If one number provided, it will be total request timeout. It can also be a pair (tuple) of (connection, read) timeouts. :return: tuple(AsyncOperationResponse, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'python_python_remote_href', 'python_python_remote' ] all_params.extend( [ 'async_req', '_return_http_data_only', '_preload_content', '_request_timeout' ] ) for key, val in six.iteritems(local_var_params['kwargs']): if key not in all_params: raise ApiTypeError( "Got an unexpected keyword argument '%s'" " to method update" % key ) local_var_params[key] = val del local_var_params['kwargs'] # verify the required parameter 'python_python_remote_href' is set if self.api_client.client_side_validation and ('python_python_remote_href' not in local_var_params or # noqa: E501 local_var_params['python_python_remote_href'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `python_python_remote_href` when calling `update`") # noqa: E501 # verify the required parameter 'python_python_remote' is set if self.api_client.client_side_validation and ('python_python_remote' not in local_var_params or # noqa: E501 local_var_params['python_python_remote'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `python_python_remote` when calling `update`") # noqa: E501 collection_formats = {} path_params = {} if 'python_python_remote_href' in local_var_params: path_params['python_python_remote_href'] = local_var_params['python_python_remote_href'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None if 'python_python_remote' in local_var_params: body_params = local_var_params['python_python_remote'] # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data']) # noqa: E501 # Authentication setting auth_settings = ['basicAuth', 'cookieAuth'] # noqa: E501 return self.api_client.call_api( '{python_python_remote_href}', 'PUT', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='AsyncOperationResponse', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 _preload_content=local_var_params.get('_preload_content', True), _request_timeout=local_var_params.get('_request_timeout'), collection_formats=collection_formats)