Class: OpenapiClient::UsersApi
- Inherits:
-
Object
- Object
- OpenapiClient::UsersApi
- Defined in:
- lib/openapi_client/api/users_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#assign_role_to_user(proj_id, env_id, user_id, user_role_create, opts = {}) ⇒ RoleAssignmentRead
Assign Role To User Assigns a role to the user within the tenant.
-
#assign_role_to_user_with_http_info(proj_id, env_id, user_id, user_role_create, opts = {}) ⇒ Array<(RoleAssignmentRead, Integer, Hash)>
Assign Role To User Assigns a role to the user within the tenant.
-
#create_user(proj_id, env_id, user_create, opts = {}) ⇒ UserRead
Create User Creates a new user inside the Permit.io system, from that point forward you may run permission checks on that user.
-
#create_user_with_http_info(proj_id, env_id, user_create, opts = {}) ⇒ Array<(UserRead, Integer, Hash)>
Create User Creates a new user inside the Permit.io system, from that point forward you may run permission checks on that user.
-
#delete_user(proj_id, env_id, user_id, opts = {}) ⇒ nil
Delete User Deletes the user and all its related data.
-
#delete_user_with_http_info(proj_id, env_id, user_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Delete User Deletes the user and all its related data.
-
#get_user(proj_id, env_id, user_id, opts = {}) ⇒ UserRead
Get User Gets a user, if such user exists.
-
#get_user_with_http_info(proj_id, env_id, user_id, opts = {}) ⇒ Array<(UserRead, Integer, Hash)>
Get User Gets a user, if such user exists.
-
#initialize(api_client = ApiClient.default) ⇒ UsersApi
constructor
A new instance of UsersApi.
-
#list_users(proj_id, env_id, opts = {}) ⇒ PaginatedResultUserRead
List Users Lists all the users defined within an environment.
-
#list_users_with_http_info(proj_id, env_id, opts = {}) ⇒ Array<(PaginatedResultUserRead, Integer, Hash)>
List Users Lists all the users defined within an environment.
-
#replace_user(proj_id, env_id, user_id, user_create, opts = {}) ⇒ UserRead
Replace User.
-
#replace_user_with_http_info(proj_id, env_id, user_id, user_create, opts = {}) ⇒ Array<(UserRead, Integer, Hash)>
Replace User.
-
#unassign_role_from_user(proj_id, env_id, user_id, user_role_remove, opts = {}) ⇒ UserRead
Unassign Role From User Unassigns the role from the user within the tenant.
-
#unassign_role_from_user_with_http_info(proj_id, env_id, user_id, user_role_remove, opts = {}) ⇒ Array<(UserRead, Integer, Hash)>
Unassign Role From User Unassigns the role from the user within the tenant.
-
#update_user(proj_id, env_id, user_id, user_update, opts = {}) ⇒ UserRead
Update User Partially updates the user definition.
-
#update_user_with_http_info(proj_id, env_id, user_id, user_update, opts = {}) ⇒ Array<(UserRead, Integer, Hash)>
Update User Partially updates the user definition.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/openapi_client/api/users_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#assign_role_to_user(proj_id, env_id, user_id, user_role_create, opts = {}) ⇒ RoleAssignmentRead
Assign Role To User Assigns a role to the user within the tenant. The tenant defines the scope of the assignment. In other words, the role is effective only within the tenant.
30 31 32 33 |
# File 'lib/openapi_client/api/users_api.rb', line 30 def assign_role_to_user(proj_id, env_id, user_id, user_role_create, opts = {}) data, _status_code, _headers = assign_role_to_user_with_http_info(proj_id, env_id, user_id, user_role_create, opts) data end |
#assign_role_to_user_with_http_info(proj_id, env_id, user_id, user_role_create, opts = {}) ⇒ Array<(RoleAssignmentRead, Integer, Hash)>
Assign Role To User Assigns a role to the user within the tenant. The tenant defines the scope of the assignment. In other words, the role is effective only within the tenant.
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/openapi_client/api/users_api.rb', line 43 def assign_role_to_user_with_http_info(proj_id, env_id, user_id, user_role_create, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsersApi.assign_role_to_user ...' end # verify the required parameter 'proj_id' is set if @api_client.config.client_side_validation && proj_id.nil? fail ArgumentError, "Missing the required parameter 'proj_id' when calling UsersApi.assign_role_to_user" end # verify the required parameter 'env_id' is set if @api_client.config.client_side_validation && env_id.nil? fail ArgumentError, "Missing the required parameter 'env_id' when calling UsersApi.assign_role_to_user" end # verify the required parameter 'user_id' is set if @api_client.config.client_side_validation && user_id.nil? fail ArgumentError, "Missing the required parameter 'user_id' when calling UsersApi.assign_role_to_user" end # verify the required parameter 'user_role_create' is set if @api_client.config.client_side_validation && user_role_create.nil? fail ArgumentError, "Missing the required parameter 'user_role_create' when calling UsersApi.assign_role_to_user" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/users/{user_id}/roles'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'user_id' + '}', CGI.escape(user_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/json']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(user_role_create) # return_type return_type = opts[:debug_return_type] || 'RoleAssignmentRead' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"UsersApi.assign_role_to_user", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsersApi#assign_role_to_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#create_user(proj_id, env_id, user_create, opts = {}) ⇒ UserRead
Create User Creates a new user inside the Permit.io system, from that point forward you may run permission checks on that user. If the user is already created: will return 200 instead of 201, and will return the existing user object in the response body.
115 116 117 118 |
# File 'lib/openapi_client/api/users_api.rb', line 115 def create_user(proj_id, env_id, user_create, opts = {}) data, _status_code, _headers = create_user_with_http_info(proj_id, env_id, user_create, opts) data end |
#create_user_with_http_info(proj_id, env_id, user_create, opts = {}) ⇒ Array<(UserRead, Integer, Hash)>
Create User Creates a new user inside the Permit.io system, from that point forward you may run permission checks on that user. If the user is already created: will return 200 instead of 201, and will return the existing user object in the response body.
127 128 129 130 131 132 133 134 135 136 137 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 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/openapi_client/api/users_api.rb', line 127 def create_user_with_http_info(proj_id, env_id, user_create, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsersApi.create_user ...' end # verify the required parameter 'proj_id' is set if @api_client.config.client_side_validation && proj_id.nil? fail ArgumentError, "Missing the required parameter 'proj_id' when calling UsersApi.create_user" end # verify the required parameter 'env_id' is set if @api_client.config.client_side_validation && env_id.nil? fail ArgumentError, "Missing the required parameter 'env_id' when calling UsersApi.create_user" end # verify the required parameter 'user_create' is set if @api_client.config.client_side_validation && user_create.nil? fail ArgumentError, "Missing the required parameter 'user_create' when calling UsersApi.create_user" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/users'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/json']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(user_create) # return_type return_type = opts[:debug_return_type] || 'UserRead' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"UsersApi.create_user", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsersApi#create_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_user(proj_id, env_id, user_id, opts = {}) ⇒ nil
Delete User Deletes the user and all its related data.
195 196 197 198 |
# File 'lib/openapi_client/api/users_api.rb', line 195 def delete_user(proj_id, env_id, user_id, opts = {}) delete_user_with_http_info(proj_id, env_id, user_id, opts) nil end |
#delete_user_with_http_info(proj_id, env_id, user_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Delete User Deletes the user and all its related data.
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'lib/openapi_client/api/users_api.rb', line 207 def delete_user_with_http_info(proj_id, env_id, user_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsersApi.delete_user ...' end # verify the required parameter 'proj_id' is set if @api_client.config.client_side_validation && proj_id.nil? fail ArgumentError, "Missing the required parameter 'proj_id' when calling UsersApi.delete_user" end # verify the required parameter 'env_id' is set if @api_client.config.client_side_validation && env_id.nil? fail ArgumentError, "Missing the required parameter 'env_id' when calling UsersApi.delete_user" end # verify the required parameter 'user_id' is set if @api_client.config.client_side_validation && user_id.nil? fail ArgumentError, "Missing the required parameter 'user_id' when calling UsersApi.delete_user" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/users/{user_id}'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'user_id' + '}', CGI.escape(user_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"UsersApi.delete_user", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsersApi#delete_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_user(proj_id, env_id, user_id, opts = {}) ⇒ UserRead
Get User Gets a user, if such user exists. Otherwise returns 404.
270 271 272 273 |
# File 'lib/openapi_client/api/users_api.rb', line 270 def get_user(proj_id, env_id, user_id, opts = {}) data, _status_code, _headers = get_user_with_http_info(proj_id, env_id, user_id, opts) data end |
#get_user_with_http_info(proj_id, env_id, user_id, opts = {}) ⇒ Array<(UserRead, Integer, Hash)>
Get User Gets a user, if such user exists. Otherwise returns 404.
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
# File 'lib/openapi_client/api/users_api.rb', line 282 def get_user_with_http_info(proj_id, env_id, user_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsersApi.get_user ...' end # verify the required parameter 'proj_id' is set if @api_client.config.client_side_validation && proj_id.nil? fail ArgumentError, "Missing the required parameter 'proj_id' when calling UsersApi.get_user" end # verify the required parameter 'env_id' is set if @api_client.config.client_side_validation && env_id.nil? fail ArgumentError, "Missing the required parameter 'env_id' when calling UsersApi.get_user" end # verify the required parameter 'user_id' is set if @api_client.config.client_side_validation && user_id.nil? fail ArgumentError, "Missing the required parameter 'user_id' when calling UsersApi.get_user" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/users/{user_id}'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'user_id' + '}', CGI.escape(user_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'UserRead' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"UsersApi.get_user", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsersApi#get_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list_users(proj_id, env_id, opts = {}) ⇒ PaginatedResultUserRead
List Users Lists all the users defined within an environment.
347 348 349 350 |
# File 'lib/openapi_client/api/users_api.rb', line 347 def list_users(proj_id, env_id, opts = {}) data, _status_code, _headers = list_users_with_http_info(proj_id, env_id, opts) data end |
#list_users_with_http_info(proj_id, env_id, opts = {}) ⇒ Array<(PaginatedResultUserRead, Integer, Hash)>
List Users Lists all the users defined within an environment.
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 |
# File 'lib/openapi_client/api/users_api.rb', line 361 def list_users_with_http_info(proj_id, env_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsersApi.list_users ...' end # verify the required parameter 'proj_id' is set if @api_client.config.client_side_validation && proj_id.nil? fail ArgumentError, "Missing the required parameter 'proj_id' when calling UsersApi.list_users" end # verify the required parameter 'env_id' is set if @api_client.config.client_side_validation && env_id.nil? fail ArgumentError, "Missing the required parameter 'env_id' when calling UsersApi.list_users" end if @api_client.config.client_side_validation && !opts[:'page'].nil? && opts[:'page'] < 1 fail ArgumentError, 'invalid value for "opts[:"page"]" when calling UsersApi.list_users, must be greater than or equal to 1.' end if @api_client.config.client_side_validation && !opts[:'per_page'].nil? && opts[:'per_page'] > 100 fail ArgumentError, 'invalid value for "opts[:"per_page"]" when calling UsersApi.list_users, must be smaller than or equal to 100.' end if @api_client.config.client_side_validation && !opts[:'per_page'].nil? && opts[:'per_page'] < 1 fail ArgumentError, 'invalid value for "opts[:"per_page"]" when calling UsersApi.list_users, must be greater than or equal to 1.' end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/users'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'search'] = opts[:'search'] if !opts[:'search'].nil? query_params[:'page'] = opts[:'page'] if !opts[:'page'].nil? query_params[:'per_page'] = opts[:'per_page'] if !opts[:'per_page'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'PaginatedResultUserRead' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"UsersApi.list_users", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsersApi#list_users\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#replace_user(proj_id, env_id, user_id, user_create, opts = {}) ⇒ UserRead
Replace User
435 436 437 438 |
# File 'lib/openapi_client/api/users_api.rb', line 435 def replace_user(proj_id, env_id, user_id, user_create, opts = {}) data, _status_code, _headers = replace_user_with_http_info(proj_id, env_id, user_id, user_create, opts) data end |
#replace_user_with_http_info(proj_id, env_id, user_id, user_create, opts = {}) ⇒ Array<(UserRead, Integer, Hash)>
Replace User
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 |
# File 'lib/openapi_client/api/users_api.rb', line 447 def replace_user_with_http_info(proj_id, env_id, user_id, user_create, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsersApi.replace_user ...' end # verify the required parameter 'proj_id' is set if @api_client.config.client_side_validation && proj_id.nil? fail ArgumentError, "Missing the required parameter 'proj_id' when calling UsersApi.replace_user" end # verify the required parameter 'env_id' is set if @api_client.config.client_side_validation && env_id.nil? fail ArgumentError, "Missing the required parameter 'env_id' when calling UsersApi.replace_user" end # verify the required parameter 'user_id' is set if @api_client.config.client_side_validation && user_id.nil? fail ArgumentError, "Missing the required parameter 'user_id' when calling UsersApi.replace_user" end # verify the required parameter 'user_create' is set if @api_client.config.client_side_validation && user_create.nil? fail ArgumentError, "Missing the required parameter 'user_create' when calling UsersApi.replace_user" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/users/{user_id}'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'user_id' + '}', CGI.escape(user_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/json']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(user_create) # return_type return_type = opts[:debug_return_type] || 'UserRead' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"UsersApi.replace_user", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:PUT, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsersApi#replace_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#unassign_role_from_user(proj_id, env_id, user_id, user_role_remove, opts = {}) ⇒ UserRead
Unassign Role From User Unassigns the role from the user within the tenant. The tenant defines the scope of the assignment. In other words, the role is effective only within the tenant. If the role is not actually assigned, will return 404.
520 521 522 523 |
# File 'lib/openapi_client/api/users_api.rb', line 520 def unassign_role_from_user(proj_id, env_id, user_id, user_role_remove, opts = {}) data, _status_code, _headers = unassign_role_from_user_with_http_info(proj_id, env_id, user_id, user_role_remove, opts) data end |
#unassign_role_from_user_with_http_info(proj_id, env_id, user_id, user_role_remove, opts = {}) ⇒ Array<(UserRead, Integer, Hash)>
Unassign Role From User Unassigns the role from the user within the tenant. The tenant defines the scope of the assignment. In other words, the role is effective only within the tenant. If the role is not actually assigned, will return 404.
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 |
# File 'lib/openapi_client/api/users_api.rb', line 533 def unassign_role_from_user_with_http_info(proj_id, env_id, user_id, user_role_remove, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsersApi.unassign_role_from_user ...' end # verify the required parameter 'proj_id' is set if @api_client.config.client_side_validation && proj_id.nil? fail ArgumentError, "Missing the required parameter 'proj_id' when calling UsersApi.unassign_role_from_user" end # verify the required parameter 'env_id' is set if @api_client.config.client_side_validation && env_id.nil? fail ArgumentError, "Missing the required parameter 'env_id' when calling UsersApi.unassign_role_from_user" end # verify the required parameter 'user_id' is set if @api_client.config.client_side_validation && user_id.nil? fail ArgumentError, "Missing the required parameter 'user_id' when calling UsersApi.unassign_role_from_user" end # verify the required parameter 'user_role_remove' is set if @api_client.config.client_side_validation && user_role_remove.nil? fail ArgumentError, "Missing the required parameter 'user_role_remove' when calling UsersApi.unassign_role_from_user" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/users/{user_id}/roles'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'user_id' + '}', CGI.escape(user_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/json']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(user_role_remove) # return_type return_type = opts[:debug_return_type] || 'UserRead' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"UsersApi.unassign_role_from_user", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsersApi#unassign_role_from_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_user(proj_id, env_id, user_id, user_update, opts = {}) ⇒ UserRead
Update User Partially updates the user definition. Fields that will be provided will be completely overwritten.
606 607 608 609 |
# File 'lib/openapi_client/api/users_api.rb', line 606 def update_user(proj_id, env_id, user_id, user_update, opts = {}) data, _status_code, _headers = update_user_with_http_info(proj_id, env_id, user_id, user_update, opts) data end |
#update_user_with_http_info(proj_id, env_id, user_id, user_update, opts = {}) ⇒ Array<(UserRead, Integer, Hash)>
Update User Partially updates the user definition. Fields that will be provided will be completely overwritten.
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 |
# File 'lib/openapi_client/api/users_api.rb', line 619 def update_user_with_http_info(proj_id, env_id, user_id, user_update, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: UsersApi.update_user ...' end # verify the required parameter 'proj_id' is set if @api_client.config.client_side_validation && proj_id.nil? fail ArgumentError, "Missing the required parameter 'proj_id' when calling UsersApi.update_user" end # verify the required parameter 'env_id' is set if @api_client.config.client_side_validation && env_id.nil? fail ArgumentError, "Missing the required parameter 'env_id' when calling UsersApi.update_user" end # verify the required parameter 'user_id' is set if @api_client.config.client_side_validation && user_id.nil? fail ArgumentError, "Missing the required parameter 'user_id' when calling UsersApi.update_user" end # verify the required parameter 'user_update' is set if @api_client.config.client_side_validation && user_update.nil? fail ArgumentError, "Missing the required parameter 'user_update' when calling UsersApi.update_user" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/users/{user_id}'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'user_id' + '}', CGI.escape(user_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/json']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(user_update) # return_type return_type = opts[:debug_return_type] || 'UserRead' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"UsersApi.update_user", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: UsersApi#update_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |