diff options
Diffstat (limited to 'python/fatcat_client')
| -rw-r--r-- | python/fatcat_client/README.md | 1 | ||||
| -rw-r--r-- | python/fatcat_client/api/default_api.py | 93 | 
2 files changed, 94 insertions, 0 deletions
| diff --git a/python/fatcat_client/README.md b/python/fatcat_client/README.md index 9c358fce..8704641e 100644 --- a/python/fatcat_client/README.md +++ b/python/fatcat_client/README.md @@ -74,6 +74,7 @@ All URIs are relative to *https://api.fatcat.wiki/v0*  Class | Method | HTTP request | Description  ------------ | ------------- | ------------- | -------------  *DefaultApi* | [**accept_editgroup**](docs/DefaultApi.md#accept_editgroup) | **POST** /editgroup/{editgroup_id}/accept |  +*DefaultApi* | [**auth_check**](docs/DefaultApi.md#auth_check) | **GET** /auth/check |   *DefaultApi* | [**auth_oidc**](docs/DefaultApi.md#auth_oidc) | **POST** /auth/oidc |   *DefaultApi* | [**create_container**](docs/DefaultApi.md#create_container) | **POST** /container |   *DefaultApi* | [**create_container_batch**](docs/DefaultApi.md#create_container_batch) | **POST** /container/batch |  diff --git a/python/fatcat_client/api/default_api.py b/python/fatcat_client/api/default_api.py index 926cbaca..8b652571 100644 --- a/python/fatcat_client/api/default_api.py +++ b/python/fatcat_client/api/default_api.py @@ -138,6 +138,99 @@ class DefaultApi(object):              _request_timeout=params.get('_request_timeout'),              collection_formats=collection_formats) +    def auth_check(self, **kwargs):  # noqa: E501 +        """auth_check  # noqa: E501 + +        This method makes a synchronous HTTP request by default. To make an +        asynchronous HTTP request, please pass async=True +        >>> thread = api.auth_check(async=True) +        >>> result = thread.get() + +        :param async bool +        :param str role: +        :return: Success +                 If the method is called asynchronously, +                 returns the request thread. +        """ +        kwargs['_return_http_data_only'] = True +        if kwargs.get('async'): +            return self.auth_check_with_http_info(**kwargs)  # noqa: E501 +        else: +            (data) = self.auth_check_with_http_info(**kwargs)  # noqa: E501 +            return data + +    def auth_check_with_http_info(self, **kwargs):  # noqa: E501 +        """auth_check  # noqa: E501 + +        This method makes a synchronous HTTP request by default. To make an +        asynchronous HTTP request, please pass async=True +        >>> thread = api.auth_check_with_http_info(async=True) +        >>> result = thread.get() + +        :param async bool +        :param str role: +        :return: Success +                 If the method is called asynchronously, +                 returns the request thread. +        """ + +        all_params = ['role']  # noqa: E501 +        all_params.append('async') +        all_params.append('_return_http_data_only') +        all_params.append('_preload_content') +        all_params.append('_request_timeout') + +        params = locals() +        for key, val in six.iteritems(params['kwargs']): +            if key not in all_params: +                raise TypeError( +                    "Got an unexpected keyword argument '%s'" +                    " to method auth_check" % key +                ) +            params[key] = val +        del params['kwargs'] + +        collection_formats = {} + +        path_params = {} + +        query_params = [] +        if 'role' in params: +            query_params.append(('role', params['role']))  # 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 + +        # HTTP header `Content-Type` +        header_params['Content-Type'] = self.api_client.select_header_content_type(  # noqa: E501 +            ['application/json'])  # noqa: E501 + +        # Authentication setting +        auth_settings = ['Bearer']  # noqa: E501 + +        return self.api_client.call_api( +            '/auth/check', 'GET', +            path_params, +            query_params, +            header_params, +            body=body_params, +            post_params=form_params, +            files=local_var_files, +            response_type='Success',  # noqa: E501 +            auth_settings=auth_settings, +            async=params.get('async'), +            _return_http_data_only=params.get('_return_http_data_only'), +            _preload_content=params.get('_preload_content', True), +            _request_timeout=params.get('_request_timeout'), +            collection_formats=collection_formats) +      def auth_oidc(self, oidc_params, **kwargs):  # noqa: E501          """auth_oidc  # noqa: E501 | 
