Class: DatadogAPIClient::V2::RolesAPI

Inherits:
Object
  • Object
show all
Defined in:
lib/datadog_api_client/v2/api/roles_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = DatadogAPIClient::APIClient.default) ⇒ RolesAPI

Returns a new instance of RolesAPI.



22
23
24
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 22

def initialize(api_client = APIClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



20
21
22
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 20

def api_client
  @api_client
end

Instance Method Details

#add_permission_to_role(role_id, body, opts = {}) ⇒ Object

Grant permission to a role.



31
32
33
34
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 31

def add_permission_to_role(role_id, body, opts = {})
  data, _status_code, _headers = add_permission_to_role_with_http_info(role_id, body, opts)
  data
end

#add_permission_to_role_with_http_info(role_id, body, opts = {}) ⇒ Array<(PermissionsResponse, Integer, Hash)>

Grant permission to a role.

Adds a permission to a role.

Parameters:

  • role_id (String)

    The unique identifier of the role.

  • body (RelationshipToPermission)
  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(PermissionsResponse, Integer, Hash)>)

    PermissionsResponse data, response status code and response headers



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
101
102
103
104
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 42

def add_permission_to_role_with_http_info(role_id, body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:add_permission_to_role)
    unstable_enabled = @api_client.config.unstable_operations[:add_permission_to_role]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "add_permission_to_role")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "add_permission_to_role"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.add_permission_to_role ...'
  end
  # verify the required parameter 'role_id' is set
  if @api_client.config.client_side_validation && role_id.nil?
    fail ArgumentError, "Missing the required parameter 'role_id' when calling RolesAPI.add_permission_to_role"
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling RolesAPI.add_permission_to_role"
  end
  # resource path
  local_var_path = '/api/v2/roles/{role_id}/permissions'.sub('{' + 'role_id' + '}', CGI.escape(role_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'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

  # return_type
  return_type = opts[:debug_return_type] || 'PermissionsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :add_permission_to_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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#add_permission_to_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#add_user_to_role(role_id, body, opts = {}) ⇒ Object

Add a user to a role.



112
113
114
115
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 112

def add_user_to_role(role_id, body, opts = {})
  data, _status_code, _headers = add_user_to_role_with_http_info(role_id, body, opts)
  data
end

#add_user_to_role_with_http_info(role_id, body, opts = {}) ⇒ Array<(UsersResponse, Integer, Hash)>

Add a user to a role.

Adds a user to a role.

Parameters:

  • role_id (String)

    The unique identifier of the role.

  • body (RelationshipToUser)
  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(UsersResponse, Integer, Hash)>)

    UsersResponse data, response status code and response headers



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
176
177
178
179
180
181
182
183
184
185
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 123

def add_user_to_role_with_http_info(role_id, body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:add_user_to_role)
    unstable_enabled = @api_client.config.unstable_operations[:add_user_to_role]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "add_user_to_role")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "add_user_to_role"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.add_user_to_role ...'
  end
  # verify the required parameter 'role_id' is set
  if @api_client.config.client_side_validation && role_id.nil?
    fail ArgumentError, "Missing the required parameter 'role_id' when calling RolesAPI.add_user_to_role"
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling RolesAPI.add_user_to_role"
  end
  # resource path
  local_var_path = '/api/v2/roles/{role_id}/users'.sub('{' + 'role_id' + '}', CGI.escape(role_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'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

  # return_type
  return_type = opts[:debug_return_type] || 'UsersResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :add_user_to_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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#add_user_to_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#clone_role(role_id, body, opts = {}) ⇒ Object

Create a new role by cloning an existing role.



193
194
195
196
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 193

def clone_role(role_id, body, opts = {})
  data, _status_code, _headers = clone_role_with_http_info(role_id, body, opts)
  data
end

#clone_role_with_http_info(role_id, body, opts = {}) ⇒ Array<(RoleResponse, Integer, Hash)>

Create a new role by cloning an existing role.

Clone an existing role

Parameters:

  • role_id (String)

    The unique identifier of the role.

  • body (RoleCloneRequest)
  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(RoleResponse, Integer, Hash)>)

    RoleResponse data, response status code and response headers



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
257
258
259
260
261
262
263
264
265
266
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 204

def clone_role_with_http_info(role_id, body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:clone_role)
    unstable_enabled = @api_client.config.unstable_operations[:clone_role]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "clone_role")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "clone_role"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.clone_role ...'
  end
  # verify the required parameter 'role_id' is set
  if @api_client.config.client_side_validation && role_id.nil?
    fail ArgumentError, "Missing the required parameter 'role_id' when calling RolesAPI.clone_role"
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling RolesAPI.clone_role"
  end
  # resource path
  local_var_path = '/api/v2/roles/{role_id}/clone'.sub('{' + 'role_id' + '}', CGI.escape(role_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'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

  # return_type
  return_type = opts[:debug_return_type] || 'RoleResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :clone_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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#clone_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#create_role(body, opts = {}) ⇒ Object

Create role.



273
274
275
276
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 273

def create_role(body, opts = {})
  data, _status_code, _headers = create_role_with_http_info(body, opts)
  data
end

#create_role_with_http_info(body, opts = {}) ⇒ Array<(RoleCreateResponse, Integer, Hash)>

Create role.

Create a new role for your organization.

Parameters:

Returns:

  • (Array<(RoleCreateResponse, Integer, Hash)>)

    RoleCreateResponse data, response status code and response headers



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
337
338
339
340
341
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 283

def create_role_with_http_info(body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:create_role)
    unstable_enabled = @api_client.config.unstable_operations[:create_role]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "create_role")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "create_role"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.create_role ...'
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling RolesAPI.create_role"
  end
  # resource path
  local_var_path = '/api/v2/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'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

  # return_type
  return_type = opts[:debug_return_type] || 'RoleCreateResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#create_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#delete_role(role_id, opts = {}) ⇒ Object

Delete role.



348
349
350
351
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 348

def delete_role(role_id, opts = {})
  delete_role_with_http_info(role_id, opts)
  nil
end

#delete_role_with_http_info(role_id, opts = {}) ⇒ Array<(nil, Integer, Hash)>

Delete role.

Disables a role.

Parameters:

  • role_id (String)

    The unique identifier of the role.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(nil, Integer, Hash)>)

    nil, response status code and response headers



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
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 358

def delete_role_with_http_info(role_id, opts = {})

  if @api_client.config.unstable_operations.has_key?(:delete_role)
    unstable_enabled = @api_client.config.unstable_operations[:delete_role]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "delete_role")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "delete_role"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.delete_role ...'
  end
  # verify the required parameter 'role_id' is set
  if @api_client.config.client_side_validation && role_id.nil?
    fail ArgumentError, "Missing the required parameter 'role_id' when calling RolesAPI.delete_role"
  end
  # resource path
  local_var_path = '/api/v2/roles/{role_id}'.sub('{' + 'role_id' + '}', CGI.escape(role_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] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#delete_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_role(role_id, opts = {}) ⇒ Object

Get a role.



421
422
423
424
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 421

def get_role(role_id, opts = {})
  data, _status_code, _headers = get_role_with_http_info(role_id, opts)
  data
end

#get_role_with_http_info(role_id, opts = {}) ⇒ Array<(RoleResponse, Integer, Hash)>

Get a role.

Get a role in the organization specified by the role’s role_id.

Parameters:

  • role_id (String)

    The unique identifier of the role.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(RoleResponse, Integer, Hash)>)

    RoleResponse data, response status code and response headers



431
432
433
434
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
487
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 431

def get_role_with_http_info(role_id, opts = {})

  if @api_client.config.unstable_operations.has_key?(:get_role)
    unstable_enabled = @api_client.config.unstable_operations[:get_role]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "get_role")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "get_role"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.get_role ...'
  end
  # verify the required parameter 'role_id' is set
  if @api_client.config.client_side_validation && role_id.nil?
    fail ArgumentError, "Missing the required parameter 'role_id' when calling RolesAPI.get_role"
  end
  # resource path
  local_var_path = '/api/v2/roles/{role_id}'.sub('{' + 'role_id' + '}', CGI.escape(role_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] || 'RoleResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#get_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#list_permissions(opts = {}) ⇒ Object

List permissions.



493
494
495
496
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 493

def list_permissions(opts = {})
  data, _status_code, _headers = list_permissions_with_http_info(opts)
  data
end

#list_permissions_with_http_info(opts = {}) ⇒ Array<(PermissionsResponse, Integer, Hash)>

List permissions.

Returns a list of all permissions, including name, description, and ID.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(PermissionsResponse, Integer, Hash)>)

    PermissionsResponse data, response status code and response headers



502
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
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 502

def list_permissions_with_http_info(opts = {})

  if @api_client.config.unstable_operations.has_key?(:list_permissions)
    unstable_enabled = @api_client.config.unstable_operations[:list_permissions]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "list_permissions")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "list_permissions"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.list_permissions ...'
  end
  # resource path
  local_var_path = '/api/v2/permissions'

  # 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] || 'PermissionsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :list_permissions,
    :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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#list_permissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#list_role_permissions(role_id, opts = {}) ⇒ Object

List permissions for a role.



561
562
563
564
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 561

def list_role_permissions(role_id, opts = {})
  data, _status_code, _headers = list_role_permissions_with_http_info(role_id, opts)
  data
end

#list_role_permissions_with_http_info(role_id, opts = {}) ⇒ Array<(PermissionsResponse, Integer, Hash)>

List permissions for a role.

Returns a list of all permissions for a single role.

Parameters:

  • role_id (String)

    The unique identifier of the role.

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(PermissionsResponse, Integer, Hash)>)

    PermissionsResponse data, response status code and response headers



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
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 571

def list_role_permissions_with_http_info(role_id, opts = {})

  if @api_client.config.unstable_operations.has_key?(:list_role_permissions)
    unstable_enabled = @api_client.config.unstable_operations[:list_role_permissions]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "list_role_permissions")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "list_role_permissions"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.list_role_permissions ...'
  end
  # verify the required parameter 'role_id' is set
  if @api_client.config.client_side_validation && role_id.nil?
    fail ArgumentError, "Missing the required parameter 'role_id' when calling RolesAPI.list_role_permissions"
  end
  # resource path
  local_var_path = '/api/v2/roles/{role_id}/permissions'.sub('{' + 'role_id' + '}', CGI.escape(role_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] || 'PermissionsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :list_role_permissions,
    :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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#list_role_permissions\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#list_role_users(role_id, opts = {}) ⇒ Object

Get all users of a role.



638
639
640
641
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 638

def list_role_users(role_id, opts = {})
  data, _status_code, _headers = list_role_users_with_http_info(role_id, opts)
  data
end

#list_role_users_with_http_info(role_id, opts = {}) ⇒ Array<(UsersResponse, Integer, Hash)>

Get all users of a role.

Gets all users of a role.

Parameters:

  • role_id (String)

    The unique identifier of the role.

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :page_size (Integer)

    Size for a given page. The maximum allowed value is 100.

  • :page_number (Integer)

    Specific page number to return.

  • :sort (String)

    User attribute to order results by. Sort order is ascending by default. Sort order is descending if the field is prefixed by a negative sign, for example sort=-name. Options: name, email, status.

  • :filter (String)

    Filter all users by the given string. Defaults to no filtering.

Returns:

  • (Array<(UsersResponse, Integer, Hash)>)

    UsersResponse data, response status code and response headers



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
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 652

def list_role_users_with_http_info(role_id, opts = {})

  if @api_client.config.unstable_operations.has_key?(:list_role_users)
    unstable_enabled = @api_client.config.unstable_operations[:list_role_users]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "list_role_users")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "list_role_users"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.list_role_users ...'
  end
  # verify the required parameter 'role_id' is set
  if @api_client.config.client_side_validation && role_id.nil?
    fail ArgumentError, "Missing the required parameter 'role_id' when calling RolesAPI.list_role_users"
  end
  # resource path
  local_var_path = '/api/v2/roles/{role_id}/users'.sub('{' + 'role_id' + '}', CGI.escape(role_id.to_s))

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'page[size]'] = opts[:'page_size'] if !opts[:'page_size'].nil?
  query_params[:'page[number]'] = opts[:'page_number'] if !opts[:'page_number'].nil?
  query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
  query_params[:'filter'] = opts[:'filter'] if !opts[:'filter'].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] || 'UsersResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :list_role_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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#list_role_users\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#list_roles(opts = {}) ⇒ Object

List roles.



722
723
724
725
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 722

def list_roles(opts = {})
  data, _status_code, _headers = list_roles_with_http_info(opts)
  data
end

#list_roles_with_http_info(opts = {}) ⇒ Array<(RolesResponse, Integer, Hash)>

List roles.

Returns all roles, including their names and their unique identifiers.

Parameters:

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :page_size (Integer)

    Size for a given page. The maximum allowed value is 100.

  • :page_number (Integer)

    Specific page number to return.

  • :sort (RolesSort)

    Sort roles depending on the given field. Sort order is ascending by default. Sort order is descending if the field is prefixed by a negative sign, for example: sort=-name.

  • :filter (String)

    Filter all roles by the given string.

  • :filter_id (String)

    Filter all roles by the given list of role IDs.

Returns:

  • (Array<(RolesResponse, Integer, Hash)>)

    RolesResponse data, response status code and response headers



735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 735

def list_roles_with_http_info(opts = {})

  if @api_client.config.unstable_operations.has_key?(:list_roles)
    unstable_enabled = @api_client.config.unstable_operations[:list_roles]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "list_roles")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "list_roles"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.list_roles ...'
  end
  # resource path
  local_var_path = '/api/v2/roles'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'page[size]'] = opts[:'page_size'] if !opts[:'page_size'].nil?
  query_params[:'page[number]'] = opts[:'page_number'] if !opts[:'page_number'].nil?
  query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
  query_params[:'filter'] = opts[:'filter'] if !opts[:'filter'].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] || 'RolesResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#list_roles\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#remove_permission_from_role(role_id, body, opts = {}) ⇒ Object

Revoke permission.



799
800
801
802
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 799

def remove_permission_from_role(role_id, body, opts = {})
  data, _status_code, _headers = remove_permission_from_role_with_http_info(role_id, body, opts)
  data
end

#remove_permission_from_role_with_http_info(role_id, body, opts = {}) ⇒ Array<(PermissionsResponse, Integer, Hash)>

Revoke permission.

Removes a permission from a role.

Parameters:

  • role_id (String)

    The unique identifier of the role.

  • body (RelationshipToPermission)
  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(PermissionsResponse, Integer, Hash)>)

    PermissionsResponse data, response status code and response headers



810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 810

def remove_permission_from_role_with_http_info(role_id, body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:remove_permission_from_role)
    unstable_enabled = @api_client.config.unstable_operations[:remove_permission_from_role]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "remove_permission_from_role")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "remove_permission_from_role"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.remove_permission_from_role ...'
  end
  # verify the required parameter 'role_id' is set
  if @api_client.config.client_side_validation && role_id.nil?
    fail ArgumentError, "Missing the required parameter 'role_id' when calling RolesAPI.remove_permission_from_role"
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling RolesAPI.remove_permission_from_role"
  end
  # resource path
  local_var_path = '/api/v2/roles/{role_id}/permissions'.sub('{' + 'role_id' + '}', CGI.escape(role_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'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

  # return_type
  return_type = opts[:debug_return_type] || 'PermissionsResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :remove_permission_from_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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#remove_permission_from_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#remove_user_from_role(role_id, body, opts = {}) ⇒ Object

Remove a user from a role.



880
881
882
883
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 880

def remove_user_from_role(role_id, body, opts = {})
  data, _status_code, _headers = remove_user_from_role_with_http_info(role_id, body, opts)
  data
end

#remove_user_from_role_with_http_info(role_id, body, opts = {}) ⇒ Array<(UsersResponse, Integer, Hash)>

Remove a user from a role.

Removes a user from a role.

Parameters:

  • role_id (String)

    The unique identifier of the role.

  • body (RelationshipToUser)
  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(UsersResponse, Integer, Hash)>)

    UsersResponse data, response status code and response headers



891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 891

def remove_user_from_role_with_http_info(role_id, body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:remove_user_from_role)
    unstable_enabled = @api_client.config.unstable_operations[:remove_user_from_role]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "remove_user_from_role")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "remove_user_from_role"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.remove_user_from_role ...'
  end
  # verify the required parameter 'role_id' is set
  if @api_client.config.client_side_validation && role_id.nil?
    fail ArgumentError, "Missing the required parameter 'role_id' when calling RolesAPI.remove_user_from_role"
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling RolesAPI.remove_user_from_role"
  end
  # resource path
  local_var_path = '/api/v2/roles/{role_id}/users'.sub('{' + 'role_id' + '}', CGI.escape(role_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'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

  # return_type
  return_type = opts[:debug_return_type] || 'UsersResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :remove_user_from_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, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#remove_user_from_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#update_role(role_id, body, opts = {}) ⇒ Object

Update a role.



961
962
963
964
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 961

def update_role(role_id, body, opts = {})
  data, _status_code, _headers = update_role_with_http_info(role_id, body, opts)
  data
end

#update_role_with_http_info(role_id, body, opts = {}) ⇒ Array<(RoleUpdateResponse, Integer, Hash)>

Update a role.

Edit a role. Can only be used with application keys belonging to administrators.

Parameters:

  • role_id (String)

    The unique identifier of the role.

  • body (RoleUpdateRequest)
  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (Array<(RoleUpdateResponse, Integer, Hash)>)

    RoleUpdateResponse data, response status code and response headers



972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
# File 'lib/datadog_api_client/v2/api/roles_api.rb', line 972

def update_role_with_http_info(role_id, body, opts = {})

  if @api_client.config.unstable_operations.has_key?(:update_role)
    unstable_enabled = @api_client.config.unstable_operations[:update_role]
    if unstable_enabled
      @api_client.config.logger.warn format("Using unstable operation '%s'", "update_role")
    else
      raise APIError.new(message: format("Unstable operation '%s' is disabled", "update_role"))
    end
  end

  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: RolesAPI.update_role ...'
  end
  # verify the required parameter 'role_id' is set
  if @api_client.config.client_side_validation && role_id.nil?
    fail ArgumentError, "Missing the required parameter 'role_id' when calling RolesAPI.update_role"
  end
  # verify the required parameter 'body' is set
  if @api_client.config.client_side_validation && body.nil?
    fail ArgumentError, "Missing the required parameter 'body' when calling RolesAPI.update_role"
  end
  # resource path
  local_var_path = '/api/v2/roles/{role_id}'.sub('{' + 'role_id' + '}', CGI.escape(role_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'
  header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(body)

  # return_type
  return_type = opts[:debug_return_type] || 'RoleUpdateResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || [:AuthZ, :apiKeyAuth, :appKeyAuth]

  new_options = opts.merge(
    :operation => :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(:PATCH, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: RolesAPI#update_role\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end