Class: OpenapiClient::TenantsApi
- Inherits:
-
Object
- Object
- OpenapiClient::TenantsApi
- Defined in:
- lib/openapi_client/api/tenants_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#create_tenant(proj_id, env_id, tenant_create, opts = {}) ⇒ TenantRead
Create Tenant Creates a new tenant inside the Permit.io system.
-
#create_tenant_with_http_info(proj_id, env_id, tenant_create, opts = {}) ⇒ Array<(TenantRead, Integer, Hash)>
Create Tenant Creates a new tenant inside the Permit.io system.
-
#delete_tenant(proj_id, env_id, tenant_id, opts = {}) ⇒ nil
Delete Tenant Deletes the tenant and all its related data.
-
#delete_tenant_user(proj_id, env_id, tenant_id, user_id, opts = {}) ⇒ nil
Delete Tenant User Deletes a user under a tenant.
-
#delete_tenant_user_with_http_info(proj_id, env_id, tenant_id, user_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Delete Tenant User Deletes a user under a tenant.
-
#delete_tenant_with_http_info(proj_id, env_id, tenant_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Delete Tenant Deletes the tenant and all its related data.
-
#get_tenant(proj_id, env_id, tenant_id, opts = {}) ⇒ TenantRead
Get Tenant Gets a tenant, if such tenant exists.
-
#get_tenant_with_http_info(proj_id, env_id, tenant_id, opts = {}) ⇒ Array<(TenantRead, Integer, Hash)>
Get Tenant Gets a tenant, if such tenant exists.
-
#initialize(api_client = ApiClient.default) ⇒ TenantsApi
constructor
A new instance of TenantsApi.
-
#list_tenant_users(proj_id, tenant_id, env_id, opts = {}) ⇒ PaginatedResultUserRead
List Tenant Users.
-
#list_tenant_users_with_http_info(proj_id, tenant_id, env_id, opts = {}) ⇒ Array<(PaginatedResultUserRead, Integer, Hash)>
List Tenant Users.
-
#list_tenants(proj_id, env_id, opts = {}) ⇒ Array<TenantRead>
List Tenants Lists all the tenants defined within an environment.
-
#list_tenants_with_http_info(proj_id, env_id, opts = {}) ⇒ Array<(Array<TenantRead>, Integer, Hash)>
List Tenants Lists all the tenants defined within an environment.
-
#update_tenant(proj_id, env_id, tenant_id, tenant_update, opts = {}) ⇒ TenantRead
Update Tenant Partially updates the tenant definition.
-
#update_tenant_with_http_info(proj_id, env_id, tenant_id, tenant_update, opts = {}) ⇒ Array<(TenantRead, Integer, Hash)>
Update Tenant Partially updates the tenant definition.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ TenantsApi
Returns a new instance of TenantsApi.
19 20 21 |
# File 'lib/openapi_client/api/tenants_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/openapi_client/api/tenants_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#create_tenant(proj_id, env_id, tenant_create, opts = {}) ⇒ TenantRead
Create Tenant Creates a new tenant inside the Permit.io system. If the tenant is already created: will return 200 instead of 201, and will return the existing tenant object in the response body.
29 30 31 32 |
# File 'lib/openapi_client/api/tenants_api.rb', line 29 def create_tenant(proj_id, env_id, tenant_create, opts = {}) data, _status_code, _headers = create_tenant_with_http_info(proj_id, env_id, tenant_create, opts) data end |
#create_tenant_with_http_info(proj_id, env_id, tenant_create, opts = {}) ⇒ Array<(TenantRead, Integer, Hash)>
Create Tenant Creates a new tenant inside the Permit.io system. If the tenant is already created: will return 200 instead of 201, and will return the existing tenant object in the response body.
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 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 |
# File 'lib/openapi_client/api/tenants_api.rb', line 41 def create_tenant_with_http_info(proj_id, env_id, tenant_create, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TenantsApi.create_tenant ...' 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 TenantsApi.create_tenant" 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 TenantsApi.create_tenant" end # verify the required parameter 'tenant_create' is set if @api_client.config.client_side_validation && tenant_create.nil? fail ArgumentError, "Missing the required parameter 'tenant_create' when calling TenantsApi.create_tenant" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/tenants'.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(tenant_create) # return_type return_type = opts[:debug_return_type] || 'TenantRead' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"TenantsApi.create_tenant", :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: TenantsApi#create_tenant\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_tenant(proj_id, env_id, tenant_id, opts = {}) ⇒ nil
Delete Tenant Deletes the tenant and all its related data.
109 110 111 112 |
# File 'lib/openapi_client/api/tenants_api.rb', line 109 def delete_tenant(proj_id, env_id, tenant_id, opts = {}) delete_tenant_with_http_info(proj_id, env_id, tenant_id, opts) nil end |
#delete_tenant_user(proj_id, env_id, tenant_id, user_id, opts = {}) ⇒ nil
Delete Tenant User Deletes a user under a tenant.
185 186 187 188 |
# File 'lib/openapi_client/api/tenants_api.rb', line 185 def delete_tenant_user(proj_id, env_id, tenant_id, user_id, opts = {}) delete_tenant_user_with_http_info(proj_id, env_id, tenant_id, user_id, opts) nil end |
#delete_tenant_user_with_http_info(proj_id, env_id, tenant_id, user_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Delete Tenant User Deletes a user under a tenant.
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 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 |
# File 'lib/openapi_client/api/tenants_api.rb', line 198 def delete_tenant_user_with_http_info(proj_id, env_id, tenant_id, user_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TenantsApi.delete_tenant_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 TenantsApi.delete_tenant_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 TenantsApi.delete_tenant_user" end # verify the required parameter 'tenant_id' is set if @api_client.config.client_side_validation && tenant_id.nil? fail ArgumentError, "Missing the required parameter 'tenant_id' when calling TenantsApi.delete_tenant_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 TenantsApi.delete_tenant_user" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/tenants/{tenant_id}/users/{user_id}'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'tenant_id' + '}', CGI.escape(tenant_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 => :"TenantsApi.delete_tenant_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: TenantsApi#delete_tenant_user\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_tenant_with_http_info(proj_id, env_id, tenant_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Delete Tenant Deletes the tenant and all its related data.
121 122 123 124 125 126 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 |
# File 'lib/openapi_client/api/tenants_api.rb', line 121 def delete_tenant_with_http_info(proj_id, env_id, tenant_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TenantsApi.delete_tenant ...' 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 TenantsApi.delete_tenant" 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 TenantsApi.delete_tenant" end # verify the required parameter 'tenant_id' is set if @api_client.config.client_side_validation && tenant_id.nil? fail ArgumentError, "Missing the required parameter 'tenant_id' when calling TenantsApi.delete_tenant" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/tenants/{tenant_id}'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'tenant_id' + '}', CGI.escape(tenant_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 => :"TenantsApi.delete_tenant", :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: TenantsApi#delete_tenant\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_tenant(proj_id, env_id, tenant_id, opts = {}) ⇒ TenantRead
Get Tenant Gets a tenant, if such tenant exists. Otherwise returns 404.
265 266 267 268 |
# File 'lib/openapi_client/api/tenants_api.rb', line 265 def get_tenant(proj_id, env_id, tenant_id, opts = {}) data, _status_code, _headers = get_tenant_with_http_info(proj_id, env_id, tenant_id, opts) data end |
#get_tenant_with_http_info(proj_id, env_id, tenant_id, opts = {}) ⇒ Array<(TenantRead, Integer, Hash)>
Get Tenant Gets a tenant, if such tenant exists. Otherwise returns 404.
277 278 279 280 281 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 |
# File 'lib/openapi_client/api/tenants_api.rb', line 277 def get_tenant_with_http_info(proj_id, env_id, tenant_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TenantsApi.get_tenant ...' 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 TenantsApi.get_tenant" 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 TenantsApi.get_tenant" end # verify the required parameter 'tenant_id' is set if @api_client.config.client_side_validation && tenant_id.nil? fail ArgumentError, "Missing the required parameter 'tenant_id' when calling TenantsApi.get_tenant" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/tenants/{tenant_id}'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'tenant_id' + '}', CGI.escape(tenant_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] || 'TenantRead' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"TenantsApi.get_tenant", :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: TenantsApi#get_tenant\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list_tenant_users(proj_id, tenant_id, env_id, opts = {}) ⇒ PaginatedResultUserRead
List Tenant Users
342 343 344 345 |
# File 'lib/openapi_client/api/tenants_api.rb', line 342 def list_tenant_users(proj_id, tenant_id, env_id, opts = {}) data, _status_code, _headers = list_tenant_users_with_http_info(proj_id, tenant_id, env_id, opts) data end |
#list_tenant_users_with_http_info(proj_id, tenant_id, env_id, opts = {}) ⇒ Array<(PaginatedResultUserRead, Integer, Hash)>
List Tenant Users
356 357 358 359 360 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 |
# File 'lib/openapi_client/api/tenants_api.rb', line 356 def list_tenant_users_with_http_info(proj_id, tenant_id, env_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TenantsApi.list_tenant_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 TenantsApi.list_tenant_users" end # verify the required parameter 'tenant_id' is set if @api_client.config.client_side_validation && tenant_id.nil? fail ArgumentError, "Missing the required parameter 'tenant_id' when calling TenantsApi.list_tenant_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 TenantsApi.list_tenant_users" end if @api_client.config.client_side_validation && !opts[:'page'].nil? && opts[:'page'] < 1 fail ArgumentError, 'invalid value for "opts[:"page"]" when calling TenantsApi.list_tenant_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 TenantsApi.list_tenant_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 TenantsApi.list_tenant_users, must be greater than or equal to 1.' end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/tenants/{tenant_id}/users'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'tenant_id' + '}', CGI.escape(tenant_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 => :"TenantsApi.list_tenant_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: TenantsApi#list_tenant_users\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list_tenants(proj_id, env_id, opts = {}) ⇒ Array<TenantRead>
List Tenants Lists all the tenants defined within an environment.
436 437 438 439 |
# File 'lib/openapi_client/api/tenants_api.rb', line 436 def list_tenants(proj_id, env_id, opts = {}) data, _status_code, _headers = list_tenants_with_http_info(proj_id, env_id, opts) data end |
#list_tenants_with_http_info(proj_id, env_id, opts = {}) ⇒ Array<(Array<TenantRead>, Integer, Hash)>
List Tenants Lists all the tenants defined within an environment.
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 511 512 513 514 515 |
# File 'lib/openapi_client/api/tenants_api.rb', line 450 def list_tenants_with_http_info(proj_id, env_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TenantsApi.list_tenants ...' 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 TenantsApi.list_tenants" 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 TenantsApi.list_tenants" end if @api_client.config.client_side_validation && !opts[:'page'].nil? && opts[:'page'] < 1 fail ArgumentError, 'invalid value for "opts[:"page"]" when calling TenantsApi.list_tenants, 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 TenantsApi.list_tenants, 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 TenantsApi.list_tenants, must be greater than or equal to 1.' end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/tenants'.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] || 'Array<TenantRead>' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"TenantsApi.list_tenants", :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: TenantsApi#list_tenants\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_tenant(proj_id, env_id, tenant_id, tenant_update, opts = {}) ⇒ TenantRead
Update Tenant Partially updates the tenant definition. Fields that will be provided will be completely overwritten.
525 526 527 528 |
# File 'lib/openapi_client/api/tenants_api.rb', line 525 def update_tenant(proj_id, env_id, tenant_id, tenant_update, opts = {}) data, _status_code, _headers = update_tenant_with_http_info(proj_id, env_id, tenant_id, tenant_update, opts) data end |
#update_tenant_with_http_info(proj_id, env_id, tenant_id, tenant_update, opts = {}) ⇒ Array<(TenantRead, Integer, Hash)>
Update Tenant Partially updates the tenant definition. Fields that will be provided will be completely overwritten.
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 597 598 599 600 601 |
# File 'lib/openapi_client/api/tenants_api.rb', line 538 def update_tenant_with_http_info(proj_id, env_id, tenant_id, tenant_update, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: TenantsApi.update_tenant ...' 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 TenantsApi.update_tenant" 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 TenantsApi.update_tenant" end # verify the required parameter 'tenant_id' is set if @api_client.config.client_side_validation && tenant_id.nil? fail ArgumentError, "Missing the required parameter 'tenant_id' when calling TenantsApi.update_tenant" end # verify the required parameter 'tenant_update' is set if @api_client.config.client_side_validation && tenant_update.nil? fail ArgumentError, "Missing the required parameter 'tenant_update' when calling TenantsApi.update_tenant" end # resource path local_var_path = '/v2/facts/{proj_id}/{env_id}/tenants/{tenant_id}'.sub('{' + 'proj_id' + '}', CGI.escape(proj_id.to_s)).sub('{' + 'env_id' + '}', CGI.escape(env_id.to_s)).sub('{' + 'tenant_id' + '}', CGI.escape(tenant_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(tenant_update) # return_type return_type = opts[:debug_return_type] || 'TenantRead' # auth_names auth_names = opts[:debug_auth_names] || ['HTTPBearer'] = opts.merge( :operation => :"TenantsApi.update_tenant", :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: TenantsApi#update_tenant\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |