# 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_ansible.api_client import ApiClient from pulpcore.client.pulp_ansible.exceptions import ( # noqa: F401 ApiTypeError, ApiValueError ) class PulpAnsibleGalaxyApiV3VersionsApi(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 list(self, name, namespace, path, **kwargs): # noqa: E501 """list # noqa: E501 Returns paginated CollectionVersions list. # 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(name, namespace, path, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str name: (required) :param str namespace: (required) :param str path: (required) :param bool is_highest: :param int limit: Number of results to return per page. :param str name2: :param str namespace2: :param int offset: The initial index from which to return the results. :param str q: :param str repository_version: Repository Version referenced by HREF :param str repository_version_added: Repository Version referenced by HREF :param str repository_version_removed: Repository Version referenced by HREF :param str tags: Filter by comma separate list of tags that must all be matched :param str version: Filter results where version matches value :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: PaginatedCollectionVersionResponseList If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.list_with_http_info(name, namespace, path, **kwargs) # noqa: E501 def list_with_http_info(self, name, namespace, path, **kwargs): # noqa: E501 """list # noqa: E501 Returns paginated CollectionVersions list. # 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(name, namespace, path, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str name: (required) :param str namespace: (required) :param str path: (required) :param bool is_highest: :param int limit: Number of results to return per page. :param str name2: :param str namespace2: :param int offset: The initial index from which to return the results. :param str q: :param str repository_version: Repository Version referenced by HREF :param str repository_version_added: Repository Version referenced by HREF :param str repository_version_removed: Repository Version referenced by HREF :param str tags: Filter by comma separate list of tags that must all be matched :param str version: Filter results where version matches value :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(PaginatedCollectionVersionResponseList, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'name', 'namespace', 'path', 'is_highest', 'limit', 'name2', 'namespace2', 'offset', 'q', 'repository_version', 'repository_version_added', 'repository_version_removed', 'tags', 'version', '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'] # 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 `list`") # noqa: E501 # verify the required parameter 'namespace' is set if self.api_client.client_side_validation and ('namespace' not in local_var_params or # noqa: E501 local_var_params['namespace'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `namespace` when calling `list`") # noqa: E501 # verify the required parameter 'path' is set if self.api_client.client_side_validation and ('path' not in local_var_params or # noqa: E501 local_var_params['path'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `path` when calling `list`") # noqa: E501 collection_formats = {} path_params = {} if 'name' in local_var_params: path_params['name'] = local_var_params['name'] # noqa: E501 if 'namespace' in local_var_params: path_params['namespace'] = local_var_params['namespace'] # noqa: E501 if 'path' in local_var_params: path_params['path'] = local_var_params['path'] # noqa: E501 query_params = [] if 'is_highest' in local_var_params and local_var_params['is_highest'] is not None: # noqa: E501 query_params.append(('is_highest', local_var_params['is_highest'])) # noqa: E501 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 'name2' in local_var_params and local_var_params['name2'] is not None: # noqa: E501 query_params.append(('name', local_var_params['name2'])) # noqa: E501 if 'namespace2' in local_var_params and local_var_params['namespace2'] is not None: # noqa: E501 query_params.append(('namespace', local_var_params['namespace2'])) # 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 'q' in local_var_params and local_var_params['q'] is not None: # noqa: E501 query_params.append(('q', local_var_params['q'])) # noqa: E501 if 'repository_version' in local_var_params and local_var_params['repository_version'] is not None: # noqa: E501 query_params.append(('repository_version', local_var_params['repository_version'])) # noqa: E501 if 'repository_version_added' in local_var_params and local_var_params['repository_version_added'] is not None: # noqa: E501 query_params.append(('repository_version_added', local_var_params['repository_version_added'])) # noqa: E501 if 'repository_version_removed' in local_var_params and local_var_params['repository_version_removed'] is not None: # noqa: E501 query_params.append(('repository_version_removed', local_var_params['repository_version_removed'])) # noqa: E501 if 'tags' in local_var_params and local_var_params['tags'] is not None: # noqa: E501 query_params.append(('tags', local_var_params['tags'])) # noqa: E501 if 'version' in local_var_params and local_var_params['version'] is not None: # noqa: E501 query_params.append(('version', local_var_params['version'])) # 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 = [] # noqa: E501 return self.api_client.call_api( '/pulp_ansible/galaxy/{path}/api/v3/collections/{namespace}/{name}/versions/', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='PaginatedCollectionVersionResponseList', # 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, name, namespace, path, version, **kwargs): # noqa: E501 """read # noqa: E501 Returns a CollectionVersion object. # 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(name, namespace, path, version, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str name: (required) :param str namespace: (required) :param str path: (required) :param str version: (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: CollectionVersionResponse If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True return self.read_with_http_info(name, namespace, path, version, **kwargs) # noqa: E501 def read_with_http_info(self, name, namespace, path, version, **kwargs): # noqa: E501 """read # noqa: E501 Returns a CollectionVersion object. # 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(name, namespace, path, version, async_req=True) >>> result = thread.get() :param async_req bool: execute request asynchronously :param str name: (required) :param str namespace: (required) :param str path: (required) :param str version: (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(CollectionVersionResponse, status_code(int), headers(HTTPHeaderDict)) If the method is called asynchronously, returns the request thread. """ local_var_params = locals() all_params = [ 'name', 'namespace', 'path', 'version', '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 '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 `read`") # noqa: E501 # verify the required parameter 'namespace' is set if self.api_client.client_side_validation and ('namespace' not in local_var_params or # noqa: E501 local_var_params['namespace'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `namespace` when calling `read`") # noqa: E501 # verify the required parameter 'path' is set if self.api_client.client_side_validation and ('path' not in local_var_params or # noqa: E501 local_var_params['path'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `path` when calling `read`") # noqa: E501 # verify the required parameter 'version' is set if self.api_client.client_side_validation and ('version' not in local_var_params or # noqa: E501 local_var_params['version'] is None): # noqa: E501 raise ApiValueError("Missing the required parameter `version` when calling `read`") # noqa: E501 collection_formats = {} path_params = {} if 'name' in local_var_params: path_params['name'] = local_var_params['name'] # noqa: E501 if 'namespace' in local_var_params: path_params['namespace'] = local_var_params['namespace'] # noqa: E501 if 'path' in local_var_params: path_params['path'] = local_var_params['path'] # noqa: E501 if 'version' in local_var_params: path_params['version'] = local_var_params['version'] # 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 = [] # noqa: E501 return self.api_client.call_api( '/pulp_ansible/galaxy/{path}/api/v3/collections/{namespace}/{name}/versions/{version}/', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='CollectionVersionResponse', # 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)