Class: EmassClient::DashboardsApi

Inherits:
Object
  • Object
show all
Defined in:
lib/emass_client/api/dashboards_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ DashboardsApi

Returns a new instance of DashboardsApi.



19
20
21
# File 'lib/emass_client/api/dashboards_api.rb', line 19

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

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



17
18
19
# File 'lib/emass_client/api/dashboards_api.rb', line 17

def api_client
  @api_client
end

Instance Method Details

#get_system_assessment_procedures_details(org_id, opts = {}) ⇒ Object

Get dashboard information Get systems assessement procdures details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


29
30
31
32
# File 'lib/emass_client/api/dashboards_api.rb', line 29

def get_system_assessment_procedures_details(org_id, opts = {})
  data, _status_code, _headers = get_system_assessment_procedures_details_with_http_info(org_id, opts)
  data
end

#get_system_assessment_procedures_details_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get systems assessement procdures details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



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
# File 'lib/emass_client/api/dashboards_api.rb', line 41

def get_system_assessment_procedures_details_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_system_assessment_procedures_details ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_system_assessment_procedures_details"
  end
  # resource path
  local_var_path = '/api/dashboards/system-assessment-procedures-details'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_system_assessment_procedures_details",
    :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: DashboardsApi#get_system_assessment_procedures_details\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_system_associations_details(org_id, opts = {}) ⇒ Object

Get dashboard information Get system associations details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


99
100
101
102
# File 'lib/emass_client/api/dashboards_api.rb', line 99

def get_system_associations_details(org_id, opts = {})
  data, _status_code, _headers = get_system_associations_details_with_http_info(org_id, opts)
  data
end

#get_system_associations_details_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get system associations details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



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
148
149
150
151
152
153
154
155
156
157
158
159
160
# File 'lib/emass_client/api/dashboards_api.rb', line 111

def get_system_associations_details_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_system_associations_details ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_system_associations_details"
  end
  # resource path
  local_var_path = '/api/dashboards/system-associations-details'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_system_associations_details",
    :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: DashboardsApi#get_system_associations_details\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_system_control_compliance_summary(org_id, opts = {}) ⇒ Object

Get dashboard information Get systems control compliance summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


169
170
171
172
# File 'lib/emass_client/api/dashboards_api.rb', line 169

def get_system_control_compliance_summary(org_id, opts = {})
  data, _status_code, _headers = get_system_control_compliance_summary_with_http_info(org_id, opts)
  data
end

#get_system_control_compliance_summary_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get systems control compliance summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
# File 'lib/emass_client/api/dashboards_api.rb', line 181

def get_system_control_compliance_summary_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_system_control_compliance_summary ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_system_control_compliance_summary"
  end
  # resource path
  local_var_path = '/api/dashboards/system-control-compliance-summary'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_system_control_compliance_summary",
    :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: DashboardsApi#get_system_control_compliance_summary\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_system_hardware_details(org_id, opts = {}) ⇒ Object

Get dashboard information Get system hardware details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


239
240
241
242
# File 'lib/emass_client/api/dashboards_api.rb', line 239

def get_system_hardware_details(org_id, opts = {})
  data, _status_code, _headers = get_system_hardware_details_with_http_info(org_id, opts)
  data
end

#get_system_hardware_details_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get system hardware details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



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
295
296
297
298
299
300
# File 'lib/emass_client/api/dashboards_api.rb', line 251

def get_system_hardware_details_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_system_hardware_details ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_system_hardware_details"
  end
  # resource path
  local_var_path = '/api/dashboards/system-hardware-details'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_system_hardware_details",
    :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: DashboardsApi#get_system_hardware_details\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_system_hardware_summary(org_id, opts = {}) ⇒ Object

Get dashboard information Get system hardware summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


309
310
311
312
# File 'lib/emass_client/api/dashboards_api.rb', line 309

def get_system_hardware_summary(org_id, opts = {})
  data, _status_code, _headers = get_system_hardware_summary_with_http_info(org_id, opts)
  data
end

#get_system_hardware_summary_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get system hardware summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



321
322
323
324
325
326
327
328
329
330
331
332
333
334
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
# File 'lib/emass_client/api/dashboards_api.rb', line 321

def get_system_hardware_summary_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_system_hardware_summary ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_system_hardware_summary"
  end
  # resource path
  local_var_path = '/api/dashboards/system-hardware-summary'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_system_hardware_summary",
    :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: DashboardsApi#get_system_hardware_summary\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_system_poam_details(org_id, opts = {}) ⇒ Object

Get dashboard information Get system POA&Ms details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


379
380
381
382
# File 'lib/emass_client/api/dashboards_api.rb', line 379

def get_system_poam_details(org_id, opts = {})
  data, _status_code, _headers = get_system_poam_details_with_http_info(org_id, opts)
  data
end

#get_system_poam_details_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get system POA&amp;Ms details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
# File 'lib/emass_client/api/dashboards_api.rb', line 391

def get_system_poam_details_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_system_poam_details ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_system_poam_details"
  end
  # resource path
  local_var_path = '/api/dashboards/system-poam-details'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_system_poam_details",
    :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: DashboardsApi#get_system_poam_details\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_system_poam_summary(org_id, opts = {}) ⇒ Object

Get dashboard information Get systems POA&Ms summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


449
450
451
452
# File 'lib/emass_client/api/dashboards_api.rb', line 449

def get_system_poam_summary(org_id, opts = {})
  data, _status_code, _headers = get_system_poam_summary_with_http_info(org_id, opts)
  data
end

#get_system_poam_summary_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get systems POA&amp;Ms summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



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/emass_client/api/dashboards_api.rb', line 461

def get_system_poam_summary_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_system_poam_summary ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_system_poam_summary"
  end
  # resource path
  local_var_path = '/api/dashboards/system-poam-summary'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_system_poam_summary",
    :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: DashboardsApi#get_system_poam_summary\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_system_privacy_summary(org_id, opts = {}) ⇒ Object

Get dashboard information Get user system privacy summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


519
520
521
522
# File 'lib/emass_client/api/dashboards_api.rb', line 519

def get_system_privacy_summary(org_id, opts = {})
  data, _status_code, _headers = get_system_privacy_summary_with_http_info(org_id, opts)
  data
end

#get_system_privacy_summary_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get user system privacy summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



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
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
# File 'lib/emass_client/api/dashboards_api.rb', line 531

def get_system_privacy_summary_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_system_privacy_summary ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_system_privacy_summary"
  end
  # resource path
  local_var_path = '/api/dashboards/system-privacy-summary'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_system_privacy_summary",
    :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: DashboardsApi#get_system_privacy_summary\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_system_security_control_details(org_id, opts = {}) ⇒ Object

Get dashboard information Get systems security control details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


589
590
591
592
# File 'lib/emass_client/api/dashboards_api.rb', line 589

def get_system_security_control_details(org_id, opts = {})
  data, _status_code, _headers = get_system_security_control_details_with_http_info(org_id, opts)
  data
end

#get_system_security_control_details_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get systems security control details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



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
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
# File 'lib/emass_client/api/dashboards_api.rb', line 601

def get_system_security_control_details_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_system_security_control_details ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_system_security_control_details"
  end
  # resource path
  local_var_path = '/api/dashboards/system-security-controls-details'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_system_security_control_details",
    :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: DashboardsApi#get_system_security_control_details\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_system_status_details(org_id, opts = {}) ⇒ Object

Get dashboard information Get systems status detail dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


659
660
661
662
# File 'lib/emass_client/api/dashboards_api.rb', line 659

def get_system_status_details(org_id, opts = {})
  data, _status_code, _headers = get_system_status_details_with_http_info(org_id, opts)
  data
end

#get_system_status_details_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get systems status detail dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



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
713
714
715
716
717
718
719
720
# File 'lib/emass_client/api/dashboards_api.rb', line 671

def get_system_status_details_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_system_status_details ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_system_status_details"
  end
  # resource path
  local_var_path = '/api/dashboards/system-status-details'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_system_status_details",
    :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: DashboardsApi#get_system_status_details\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_user_system_assignments_details(org_id, opts = {}) ⇒ Object

Get dashboard information Get user system assignments details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


729
730
731
732
# File 'lib/emass_client/api/dashboards_api.rb', line 729

def get_user_system_assignments_details(org_id, opts = {})
  data, _status_code, _headers = get_user_system_assignments_details_with_http_info(org_id, opts)
  data
end

#get_user_system_assignments_details_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get user system assignments details dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



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
# File 'lib/emass_client/api/dashboards_api.rb', line 741

def get_user_system_assignments_details_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_user_system_assignments_details ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_user_system_assignments_details"
  end
  # resource path
  local_var_path = '/api/dashboards/user-system-assignments-details'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_user_system_assignments_details",
    :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: DashboardsApi#get_user_system_assignments_details\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_va_omb_fsma_saop_summary(org_id, opts = {}) ⇒ Object

Get dashboard information Get VA OMB-FISMA SAOP summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


799
800
801
802
# File 'lib/emass_client/api/dashboards_api.rb', line 799

def get_va_omb_fsma_saop_summary(org_id, opts = {})
  data, _status_code, _headers = get_va_omb_fsma_saop_summary_with_http_info(org_id, opts)
  data
end

#get_va_omb_fsma_saop_summary_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get VA OMB-FISMA SAOP summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



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
# File 'lib/emass_client/api/dashboards_api.rb', line 811

def get_va_omb_fsma_saop_summary_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_va_omb_fsma_saop_summary ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_va_omb_fsma_saop_summary"
  end
  # resource path
  local_var_path = '/api/dashboards/va-omb-fisma-saop-summary'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_va_omb_fsma_saop_summary",
    :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: DashboardsApi#get_va_omb_fsma_saop_summary\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_va_system_a2_summary(org_id, opts = {}) ⇒ Object

Get dashboard information Get VA system A2.0 summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


869
870
871
872
# File 'lib/emass_client/api/dashboards_api.rb', line 869

def get_va_system_a2_summary(org_id, opts = {})
  data, _status_code, _headers = get_va_system_a2_summary_with_http_info(org_id, opts)
  data
end

#get_va_system_a2_summary_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get VA system A2.0 summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



881
882
883
884
885
886
887
888
889
890
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
# File 'lib/emass_client/api/dashboards_api.rb', line 881

def get_va_system_a2_summary_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_va_system_a2_summary ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_va_system_a2_summary"
  end
  # resource path
  local_var_path = '/api/dashboards/va-system-a2-summary'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_va_system_a2_summary",
    :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: DashboardsApi#get_va_system_a2_summary\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_va_system_aa_summary(org_id, opts = {}) ⇒ Object

Get dashboard information Get VA system A&A summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


939
940
941
942
# File 'lib/emass_client/api/dashboards_api.rb', line 939

def get_va_system_aa_summary(org_id, opts = {})
  data, _status_code, _headers = get_va_system_aa_summary_with_http_info(org_id, opts)
  data
end

#get_va_system_aa_summary_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get VA system A&amp;A summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
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
# File 'lib/emass_client/api/dashboards_api.rb', line 951

def get_va_system_aa_summary_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_va_system_aa_summary ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_va_system_aa_summary"
  end
  # resource path
  local_var_path = '/api/dashboards/va-system-aa-summary'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_va_system_aa_summary",
    :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: DashboardsApi#get_va_system_aa_summary\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_va_system_fisma_invetory_summary(org_id, opts = {}) ⇒ Object

Get dashboard information Get VA system FISMA inventory summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


1009
1010
1011
1012
# File 'lib/emass_client/api/dashboards_api.rb', line 1009

def get_va_system_fisma_invetory_summary(org_id, opts = {})
  data, _status_code, _headers = get_va_system_fisma_invetory_summary_with_http_info(org_id, opts)
  data
end

#get_va_system_fisma_invetory_summary_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get VA system FISMA inventory summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
# File 'lib/emass_client/api/dashboards_api.rb', line 1021

def get_va_system_fisma_invetory_summary_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_va_system_fisma_invetory_summary ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_va_system_fisma_invetory_summary"
  end
  # resource path
  local_var_path = '/api/dashboards/va-system-fisma-inventory-summary'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_va_system_fisma_invetory_summary",
    :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: DashboardsApi#get_va_system_fisma_invetory_summary\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#get_va_system_pl109_reporting_summary(org_id, opts = {}) ⇒ Object

Get dashboard information Get VA system P.L. 109 reporting summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

  • (Object)


1079
1080
1081
1082
# File 'lib/emass_client/api/dashboards_api.rb', line 1079

def get_va_system_pl109_reporting_summary(org_id, opts = {})
  data, _status_code, _headers = get_va_system_pl109_reporting_summary_with_http_info(org_id, opts)
  data
end

#get_va_system_pl109_reporting_summary_with_http_info(org_id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Get dashboard information Get VA system P.L. 109 reporting summary dashboard information.

Parameters:

  • org_id (Integer)

    **Organization Id**: The unique organization identifier.

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

    the optional parameters

Options Hash (opts):

  • :page_index (Integer)

    **Page Index**: If no value is specified, the default returns results from the first page with an index of 0. (default to 0)

  • :page_size (Integer)

    **Page Size**: If no value is specified, the default returns 20000 per page. (default to 20000)

Returns:

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

    Object data, response status code and response headers



1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
# File 'lib/emass_client/api/dashboards_api.rb', line 1091

def get_va_system_pl109_reporting_summary_with_http_info(org_id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DashboardsApi.get_va_system_pl109_reporting_summary ...'
  end
  # verify the required parameter 'org_id' is set
  if @api_client.config.client_side_validation && org_id.nil?
    fail ArgumentError, "Missing the required parameter 'org_id' when calling DashboardsApi.get_va_system_pl109_reporting_summary"
  end
  # resource path
  local_var_path = '/api/dashboards/va-system-pl-109-reporting-summary'

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'orgId'] = org_id
  query_params[:'pageIndex'] = opts[:'page_index'] if !opts[:'page_index'].nil?
  query_params[:'pageSize'] = opts[:'page_size'] if !opts[:'page_size'].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] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['apiKey', 'mockType', 'userId']

  new_options = opts.merge(
    :operation => :"DashboardsApi.get_va_system_pl109_reporting_summary",
    :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: DashboardsApi#get_va_system_pl109_reporting_summary\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end