Class: SamplifyAPIClient::AuthApi
- Inherits:
-
Object
- Object
- SamplifyAPIClient::AuthApi
- Defined in:
- lib/samplify_api_client/api/auth_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#auth_code(payload, opts = {}) ⇒ TokenMedia
code auth.
-
#auth_code_with_http_info(payload, opts = {}) ⇒ Array<(TokenMedia, Fixnum, Hash)>
code auth.
-
#auth_logout(payload, opts = {}) ⇒ nil
logout auth.
-
#auth_logout_with_http_info(payload, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
logout auth.
-
#auth_password(payload, opts = {}) ⇒ TokenMedia
password auth.
-
#auth_password_with_http_info(payload, opts = {}) ⇒ Array<(TokenMedia, Fixnum, Hash)>
password auth.
-
#auth_refresh(payload, opts = {}) ⇒ TokenMedia
refresh auth.
-
#auth_refresh_with_http_info(payload, opts = {}) ⇒ Array<(TokenMedia, Fixnum, Hash)>
refresh auth.
-
#initialize(api_client = ApiClient.default) ⇒ AuthApi
constructor
A new instance of AuthApi.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/samplify_api_client/api/auth_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#auth_code(payload, opts = {}) ⇒ TokenMedia
code auth
26 27 28 29 |
# File 'lib/samplify_api_client/api/auth_api.rb', line 26 def auth_code(payload, opts = {}) data, _status_code, _headers = auth_code_with_http_info(payload, opts) data end |
#auth_code_with_http_info(payload, opts = {}) ⇒ Array<(TokenMedia, Fixnum, Hash)>
code auth
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/samplify_api_client/api/auth_api.rb', line 35 def auth_code_with_http_info(payload, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AuthApi.auth_code ...' end # verify the required parameter 'payload' is set if @api_client.config.client_side_validation && payload.nil? fail ArgumentError, "Missing the required parameter 'payload' when calling AuthApi.auth_code" end # resource path local_var_path = '/auth/v1/token/code' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/vnd.auth.error+json', 'application/vnd.token+json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/xml', 'application/gob', 'application/x-gob']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(payload) auth_names = [] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'TokenMedia') if @api_client.config.debugging @api_client.config.logger.debug "API called: AuthApi#auth_code\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#auth_logout(payload, opts = {}) ⇒ nil
logout auth
78 79 80 81 |
# File 'lib/samplify_api_client/api/auth_api.rb', line 78 def auth_logout(payload, opts = {}) auth_logout_with_http_info(payload, opts) nil end |
#auth_logout_with_http_info(payload, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
logout auth
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/samplify_api_client/api/auth_api.rb', line 87 def auth_logout_with_http_info(payload, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AuthApi.auth_logout ...' end # verify the required parameter 'payload' is set if @api_client.config.client_side_validation && payload.nil? fail ArgumentError, "Missing the required parameter 'payload' when calling AuthApi.auth_logout" end # resource path local_var_path = '/auth/v1/logout' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/vnd.auth.error+json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/xml', 'application/gob', 'application/x-gob']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(payload) auth_names = [] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: AuthApi#auth_logout\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#auth_password(payload, opts = {}) ⇒ TokenMedia
password auth
129 130 131 132 |
# File 'lib/samplify_api_client/api/auth_api.rb', line 129 def auth_password(payload, opts = {}) data, _status_code, _headers = auth_password_with_http_info(payload, opts) data end |
#auth_password_with_http_info(payload, opts = {}) ⇒ Array<(TokenMedia, Fixnum, Hash)>
password auth
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/samplify_api_client/api/auth_api.rb', line 138 def auth_password_with_http_info(payload, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AuthApi.auth_password ...' end # verify the required parameter 'payload' is set if @api_client.config.client_side_validation && payload.nil? fail ArgumentError, "Missing the required parameter 'payload' when calling AuthApi.auth_password" end # resource path local_var_path = '/auth/v1/token/password' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/vnd.auth.error+json', 'application/vnd.token+json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/xml', 'application/gob', 'application/x-gob']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(payload) auth_names = [] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'TokenMedia') if @api_client.config.debugging @api_client.config.logger.debug "API called: AuthApi#auth_password\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#auth_refresh(payload, opts = {}) ⇒ TokenMedia
refresh auth
181 182 183 184 |
# File 'lib/samplify_api_client/api/auth_api.rb', line 181 def auth_refresh(payload, opts = {}) data, _status_code, _headers = auth_refresh_with_http_info(payload, opts) data end |
#auth_refresh_with_http_info(payload, opts = {}) ⇒ Array<(TokenMedia, Fixnum, Hash)>
refresh auth
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
# File 'lib/samplify_api_client/api/auth_api.rb', line 190 def auth_refresh_with_http_info(payload, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AuthApi.auth_refresh ...' end # verify the required parameter 'payload' is set if @api_client.config.client_side_validation && payload.nil? fail ArgumentError, "Missing the required parameter 'payload' when calling AuthApi.auth_refresh" end # resource path local_var_path = '/auth/v1/token/refresh' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/vnd.auth.error+json', 'application/vnd.token+json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/xml', 'application/gob', 'application/x-gob']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(payload) auth_names = [] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'TokenMedia') if @api_client.config.debugging @api_client.config.logger.debug "API called: AuthApi#auth_refresh\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |