Class: RBACApiClient::RoleApi
- Inherits:
-
Object
- Object
- RBACApiClient::RoleApi
- Defined in:
- lib/insights-rbac-api-client/api/role_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#create_role(role_in, opts = {}) ⇒ RoleWithAccess
Create a role for a tenant.
-
#create_role_with_http_info(role_in, opts = {}) ⇒ Array<(RoleWithAccess, Integer, Hash)>
Create a role for a tenant.
-
#delete_role(uuid, opts = {}) ⇒ nil
Delete a role in the tenant.
-
#delete_role_with_http_info(uuid, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Delete a role in the tenant.
-
#get_role(uuid, opts = {}) ⇒ RoleWithAccess
Get a role in the tenant.
-
#get_role_access(uuid, opts = {}) ⇒ AccessPagination
Get access for a role in the tenant.
-
#get_role_access_with_http_info(uuid, opts = {}) ⇒ Array<(AccessPagination, Integer, Hash)>
Get access for a role in the tenant.
-
#get_role_with_http_info(uuid, opts = {}) ⇒ Array<(RoleWithAccess, Integer, Hash)>
Get a role in the tenant.
-
#initialize(api_client = ApiClient.default) ⇒ RoleApi
constructor
A new instance of RoleApi.
-
#list_roles(opts = {}) ⇒ RolePaginationDynamic
List the roles for a tenant By default, responses are sorted in ascending order by role name.
-
#list_roles_with_http_info(opts = {}) ⇒ Array<(RolePaginationDynamic, Integer, Hash)>
List the roles for a tenant By default, responses are sorted in ascending order by role name.
-
#patch_role(uuid, opts = {}) ⇒ RoleWithAccess
Patch a role in the tenant.
-
#patch_role_with_http_info(uuid, opts = {}) ⇒ Array<(RoleWithAccess, Integer, Hash)>
Patch a role in the tenant.
-
#update_role(uuid, role_with_access, opts = {}) ⇒ nil
Update a role in the tenant.
-
#update_role_with_http_info(uuid, role_with_access, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Update a role in the tenant.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#create_role(role_in, opts = {}) ⇒ RoleWithAccess
Create a role for a tenant
26 27 28 29 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 26 def create_role(role_in, opts = {}) data, _status_code, _headers = create_role_with_http_info(role_in, opts) data end |
#create_role_with_http_info(role_in, opts = {}) ⇒ Array<(RoleWithAccess, Integer, Hash)>
Create a role for a tenant
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 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 35 def create_role_with_http_info(role_in, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: RoleApi.create_role ...' end # verify the required parameter 'role_in' is set if @api_client.config.client_side_validation && role_in.nil? fail ArgumentError, "Missing the required parameter 'role_in' when calling RoleApi.create_role" end # resource path local_var_path = '/roles/' # 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(role_in) # return_type return_type = opts[:debug_return_type] || 'RoleWithAccess' # auth_names auth_names = opts[:debug_auth_names] || ['basic_auth'] = opts.merge( :operation => :"RoleApi.create_role", :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: RoleApi#create_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_role(uuid, opts = {}) ⇒ nil
Delete a role in the tenant
92 93 94 95 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 92 def delete_role(uuid, opts = {}) delete_role_with_http_info(uuid, opts) nil end |
#delete_role_with_http_info(uuid, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Delete a role in the tenant
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 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 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 101 def delete_role_with_http_info(uuid, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: RoleApi.delete_role ...' end # verify the required parameter 'uuid' is set if @api_client.config.client_side_validation && uuid.nil? fail ArgumentError, "Missing the required parameter 'uuid' when calling RoleApi.delete_role" end # resource path local_var_path = '/roles/{uuid}/'.sub('{' + 'uuid' + '}', CGI.escape(uuid.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] || ['basic_auth'] = opts.merge( :operation => :"RoleApi.delete_role", :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: RoleApi#delete_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_role(uuid, opts = {}) ⇒ RoleWithAccess
Get a role in the tenant
154 155 156 157 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 154 def get_role(uuid, opts = {}) data, _status_code, _headers = get_role_with_http_info(uuid, opts) data end |
#get_role_access(uuid, opts = {}) ⇒ AccessPagination
Get access for a role in the tenant
223 224 225 226 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 223 def get_role_access(uuid, opts = {}) data, _status_code, _headers = get_role_access_with_http_info(uuid, opts) data end |
#get_role_access_with_http_info(uuid, opts = {}) ⇒ Array<(AccessPagination, Integer, Hash)>
Get access for a role in the tenant
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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 234 def get_role_access_with_http_info(uuid, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: RoleApi.get_role_access ...' end # verify the required parameter 'uuid' is set if @api_client.config.client_side_validation && uuid.nil? fail ArgumentError, "Missing the required parameter 'uuid' when calling RoleApi.get_role_access" end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 1000 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling RoleApi.get_role_access, must be smaller than or equal to 1000.' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling RoleApi.get_role_access, must be greater than or equal to 1.' end if @api_client.config.client_side_validation && !opts[:'offset'].nil? && opts[:'offset'] < 0 fail ArgumentError, 'invalid value for "opts[:"offset"]" when calling RoleApi.get_role_access, must be greater than or equal to 0.' end # resource path local_var_path = '/roles/{uuid}/access/'.sub('{' + 'uuid' + '}', CGI.escape(uuid.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].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] || 'AccessPagination' # auth_names auth_names = opts[:debug_auth_names] || ['basic_auth'] = opts.merge( :operation => :"RoleApi.get_role_access", :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: RoleApi#get_role_access\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_role_with_http_info(uuid, opts = {}) ⇒ Array<(RoleWithAccess, Integer, Hash)>
Get a role in the tenant
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 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 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 164 def get_role_with_http_info(uuid, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: RoleApi.get_role ...' end # verify the required parameter 'uuid' is set if @api_client.config.client_side_validation && uuid.nil? fail ArgumentError, "Missing the required parameter 'uuid' when calling RoleApi.get_role" end allowable_values = ["account", "principal"] if @api_client.config.client_side_validation && opts[:'scope'] && !allowable_values.include?(opts[:'scope']) fail ArgumentError, "invalid value for \"scope\", must be one of #{allowable_values}" end # resource path local_var_path = '/roles/{uuid}/'.sub('{' + 'uuid' + '}', CGI.escape(uuid.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'scope'] = opts[:'scope'] if !opts[:'scope'].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] || 'RoleWithAccess' # auth_names auth_names = opts[:debug_auth_names] || ['basic_auth'] = opts.merge( :operation => :"RoleApi.get_role", :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: RoleApi#get_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list_roles(opts = {}) ⇒ RolePaginationDynamic
List the roles for a tenant By default, responses are sorted in ascending order by role name
313 314 315 316 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 313 def list_roles(opts = {}) data, _status_code, _headers = list_roles_with_http_info(opts) data end |
#list_roles_with_http_info(opts = {}) ⇒ Array<(RolePaginationDynamic, Integer, Hash)>
List the roles for a tenant By default, responses are sorted in ascending order by role name
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 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 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 335 def list_roles_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: RoleApi.list_roles ...' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 1000 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling RoleApi.list_roles, must be smaller than or equal to 1000.' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling RoleApi.list_roles, must be greater than or equal to 1.' end if @api_client.config.client_side_validation && !opts[:'offset'].nil? && opts[:'offset'] < 0 fail ArgumentError, 'invalid value for "opts[:"offset"]" when calling RoleApi.list_roles, must be greater than or equal to 0.' end allowable_values = ["partial", "exact"] if @api_client.config.client_side_validation && opts[:'name_match'] && !allowable_values.include?(opts[:'name_match']) fail ArgumentError, "invalid value for \"name_match\", must be one of #{allowable_values}" end allowable_values = ["account", "principal"] if @api_client.config.client_side_validation && opts[:'scope'] && !allowable_values.include?(opts[:'scope']) fail ArgumentError, "invalid value for \"scope\", must be one of #{allowable_values}" end allowable_values = ["name", "display_name", "modified", "policyCount"] if @api_client.config.client_side_validation && opts[:'order_by'] && !allowable_values.include?(opts[:'order_by']) fail ArgumentError, "invalid value for \"order_by\", must be one of #{allowable_values}" end allowable_values = ["groups_in", "groups_in_count", "access"] if @api_client.config.client_side_validation && opts[:'add_fields'] && !opts[:'add_fields'].all? { |item| allowable_values.include?(item) } fail ArgumentError, "invalid value for \"add_fields\", must include one of #{allowable_values}" end # resource path local_var_path = '/roles/' # query parameters query_params = opts[:query_params] || {} query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil? query_params[:'system'] = opts[:'system'] if !opts[:'system'].nil? query_params[:'display_name'] = opts[:'display_name'] if !opts[:'display_name'].nil? query_params[:'name_match'] = opts[:'name_match'] if !opts[:'name_match'].nil? query_params[:'scope'] = opts[:'scope'] if !opts[:'scope'].nil? query_params[:'order_by'] = opts[:'order_by'] if !opts[:'order_by'].nil? query_params[:'add_fields'] = @api_client.build_collection_param(opts[:'add_fields'], :csv) if !opts[:'add_fields'].nil? query_params[:'username'] = opts[:'username'] if !opts[:'username'].nil? query_params[:'application'] = opts[:'application'] if !opts[:'application'].nil? query_params[:'permission'] = opts[:'permission'] if !opts[:'permission'].nil? query_params[:'external_tenant'] = opts[:'external_tenant'] if !opts[:'external_tenant'].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] || 'RolePaginationDynamic' # auth_names auth_names = opts[:debug_auth_names] || ['basic_auth'] = opts.merge( :operation => :"RoleApi.list_roles", :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: RoleApi#list_roles\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#patch_role(uuid, opts = {}) ⇒ RoleWithAccess
Patch a role in the tenant
425 426 427 428 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 425 def patch_role(uuid, opts = {}) data, _status_code, _headers = patch_role_with_http_info(uuid, opts) data end |
#patch_role_with_http_info(uuid, opts = {}) ⇒ Array<(RoleWithAccess, Integer, Hash)>
Patch a role in the tenant
435 436 437 438 439 440 441 442 443 444 445 446 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 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 435 def patch_role_with_http_info(uuid, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: RoleApi.patch_role ...' end # verify the required parameter 'uuid' is set if @api_client.config.client_side_validation && uuid.nil? fail ArgumentError, "Missing the required parameter 'uuid' when calling RoleApi.patch_role" end # resource path local_var_path = '/roles/{uuid}/'.sub('{' + 'uuid' + '}', CGI.escape(uuid.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(opts[:'role_patch']) # return_type return_type = opts[:debug_return_type] || 'RoleWithAccess' # auth_names auth_names = opts[:debug_auth_names] || ['basic_auth'] = opts.merge( :operation => :"RoleApi.patch_role", :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: RoleApi#patch_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_role(uuid, role_with_access, opts = {}) ⇒ nil
Update a role in the tenant
493 494 495 496 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 493 def update_role(uuid, role_with_access, opts = {}) update_role_with_http_info(uuid, role_with_access, opts) nil end |
#update_role_with_http_info(uuid, role_with_access, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Update a role in the tenant
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 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 |
# File 'lib/insights-rbac-api-client/api/role_api.rb', line 503 def update_role_with_http_info(uuid, role_with_access, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: RoleApi.update_role ...' end # verify the required parameter 'uuid' is set if @api_client.config.client_side_validation && uuid.nil? fail ArgumentError, "Missing the required parameter 'uuid' when calling RoleApi.update_role" end # verify the required parameter 'role_with_access' is set if @api_client.config.client_side_validation && role_with_access.nil? fail ArgumentError, "Missing the required parameter 'role_with_access' when calling RoleApi.update_role" end # resource path local_var_path = '/roles/{uuid}/'.sub('{' + 'uuid' + '}', CGI.escape(uuid.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(role_with_access) # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || ['basic_auth'] = opts.merge( :operation => :"RoleApi.update_role", :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: RoleApi#update_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |