esp_sdk 1.1.0 → 2.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (199) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -2
  3. data/.rubocop.yml +53 -6
  4. data/.ruby-version +1 -1
  5. data/.travis.yml +8 -2
  6. data/Gemfile.lock +171 -0
  7. data/Guardfile +47 -0
  8. data/README.md +230 -5
  9. data/Rakefile +14 -1
  10. data/assets/logo.png +0 -0
  11. data/bin/esp_console +71 -0
  12. data/esp_sdk.gemspec +27 -18
  13. data/lib/esp/exceptions.rb +3 -0
  14. data/lib/esp/extensions/active_resource/formats/json_api_format.rb +105 -0
  15. data/lib/esp/extensions/active_resource/paginated_collection.rb +198 -0
  16. data/lib/esp/extensions/active_resource/validations.rb +45 -0
  17. data/lib/esp/resources/alert.rb +135 -0
  18. data/lib/esp/resources/cloud_trail_event.rb +45 -0
  19. data/lib/esp/resources/concerns/stat_totals.rb +79 -0
  20. data/lib/esp/resources/contact_request.rb +42 -0
  21. data/lib/esp/resources/custom_signature.rb +224 -0
  22. data/lib/esp/resources/dashboard.rb +31 -0
  23. data/lib/esp/resources/external_account.rb +89 -0
  24. data/lib/esp/resources/organization.rb +61 -0
  25. data/lib/esp/resources/region.rb +46 -0
  26. data/lib/esp/resources/report.rb +100 -0
  27. data/lib/esp/resources/resource.rb +66 -0
  28. data/lib/esp/resources/service.rb +31 -0
  29. data/lib/esp/resources/signature.rb +106 -0
  30. data/lib/esp/resources/stat.rb +124 -0
  31. data/lib/esp/resources/stat_custom_signature.rb +121 -0
  32. data/lib/esp/resources/stat_region.rb +121 -0
  33. data/lib/esp/resources/stat_service.rb +121 -0
  34. data/lib/esp/resources/stat_signature.rb +121 -0
  35. data/lib/esp/resources/sub_organization.rb +69 -0
  36. data/lib/esp/resources/suppression/region.rb +99 -0
  37. data/lib/esp/resources/suppression/signature.rb +107 -0
  38. data/lib/esp/resources/suppression/unique_identifier.rb +60 -0
  39. data/lib/esp/resources/suppression.rb +86 -0
  40. data/lib/esp/resources/tag.rb +45 -0
  41. data/lib/esp/resources/team.rb +79 -0
  42. data/lib/esp/resources/user.rb +46 -0
  43. data/lib/esp/version.rb +3 -0
  44. data/lib/esp.rb +95 -0
  45. data/lib/esp_sdk.rb +9 -45
  46. data/lib/tasks/rubocop.rake +2 -0
  47. data/lib/tasks/testing.rake +3 -0
  48. data/rdoc/ActiveResource/Formats.html +176 -0
  49. data/rdoc/ActiveResource/PaginatedCollection.html +910 -0
  50. data/rdoc/ActiveResource.html +180 -0
  51. data/rdoc/ESP/Alert.html +771 -0
  52. data/rdoc/ESP/CloudTrailEvent.html +375 -0
  53. data/rdoc/ESP/ContactRequest.html +366 -0
  54. data/rdoc/ESP/CustomSignature.html +746 -0
  55. data/rdoc/ESP/Dashboard.html +355 -0
  56. data/rdoc/ESP/ExternalAccount.html +565 -0
  57. data/rdoc/ESP/Organization.html +590 -0
  58. data/rdoc/ESP/Region.html +399 -0
  59. data/rdoc/ESP/Report.html +622 -0
  60. data/rdoc/ESP/Service.html +380 -0
  61. data/rdoc/ESP/Signature.html +555 -0
  62. data/rdoc/ESP/Stat.html +1778 -0
  63. data/rdoc/ESP/StatCustomSignature.html +1599 -0
  64. data/rdoc/ESP/StatRegion.html +1598 -0
  65. data/rdoc/ESP/StatService.html +1598 -0
  66. data/rdoc/ESP/StatSignature.html +1598 -0
  67. data/rdoc/ESP/SubOrganization.html +540 -0
  68. data/rdoc/ESP/Suppression/Region.html +454 -0
  69. data/rdoc/ESP/Suppression/Signature.html +470 -0
  70. data/rdoc/ESP/Suppression/UniqueIdentifier.html +417 -0
  71. data/rdoc/ESP/Suppression.html +649 -0
  72. data/rdoc/ESP/Tag.html +371 -0
  73. data/rdoc/ESP/Team.html +584 -0
  74. data/rdoc/ESP/User.html +483 -0
  75. data/rdoc/ESP.html +546 -0
  76. data/rdoc/README_md.html +501 -0
  77. data/rdoc/created.rid +30 -0
  78. data/rdoc/images/add.png +0 -0
  79. data/rdoc/images/arrow_up.png +0 -0
  80. data/rdoc/images/brick.png +0 -0
  81. data/rdoc/images/brick_link.png +0 -0
  82. data/rdoc/images/bug.png +0 -0
  83. data/rdoc/images/bullet_black.png +0 -0
  84. data/rdoc/images/bullet_toggle_minus.png +0 -0
  85. data/rdoc/images/bullet_toggle_plus.png +0 -0
  86. data/rdoc/images/date.png +0 -0
  87. data/rdoc/images/delete.png +0 -0
  88. data/rdoc/images/find.png +0 -0
  89. data/rdoc/images/loadingAnimation.gif +0 -0
  90. data/rdoc/images/macFFBgHack.png +0 -0
  91. data/rdoc/images/package.png +0 -0
  92. data/rdoc/images/page_green.png +0 -0
  93. data/rdoc/images/page_white_text.png +0 -0
  94. data/rdoc/images/page_white_width.png +0 -0
  95. data/rdoc/images/plugin.png +0 -0
  96. data/rdoc/images/ruby.png +0 -0
  97. data/rdoc/images/tag_blue.png +0 -0
  98. data/rdoc/images/tag_green.png +0 -0
  99. data/rdoc/images/transparent.png +0 -0
  100. data/rdoc/images/wrench.png +0 -0
  101. data/rdoc/images/wrench_orange.png +0 -0
  102. data/rdoc/images/zoom.png +0 -0
  103. data/rdoc/index.html +134 -0
  104. data/rdoc/js/darkfish.js +155 -0
  105. data/rdoc/js/jquery.js +4 -0
  106. data/rdoc/js/navigation.js +142 -0
  107. data/rdoc/js/search.js +94 -0
  108. data/rdoc/js/search_index.js +1 -0
  109. data/rdoc/js/searcher.js +228 -0
  110. data/rdoc/rdoc.css +595 -0
  111. data/rdoc/table_of_contents.html +927 -0
  112. data/test/esp/extensions/active_resource/formats/json_api_format_test.rb +109 -0
  113. data/test/esp/extensions/active_resource/paginated_collection_test.rb +435 -0
  114. data/test/esp/extensions/active_resource/validations_test.rb +59 -0
  115. data/test/esp/resources/alert_test.rb +263 -0
  116. data/test/esp/resources/cloud_trail_event_test.rb +98 -0
  117. data/test/esp/resources/contact_request_test.rb +73 -0
  118. data/test/esp/resources/custom_signature_test.rb +241 -0
  119. data/test/esp/resources/dashboard_test.rb +71 -0
  120. data/test/esp/resources/external_account_test.rb +125 -0
  121. data/test/esp/resources/organization_test.rb +175 -0
  122. data/test/esp/resources/region_test.rb +84 -0
  123. data/test/esp/resources/report_test.rb +180 -0
  124. data/test/esp/resources/resource_test.rb +183 -0
  125. data/test/esp/resources/service_test.rb +64 -0
  126. data/test/esp/resources/signature_test.rb +177 -0
  127. data/test/esp/resources/stat_custom_signature_test.rb +115 -0
  128. data/test/esp/resources/stat_region_test.rb +114 -0
  129. data/test/esp/resources/stat_service_test.rb +114 -0
  130. data/test/esp/resources/stat_signature_test.rb +115 -0
  131. data/test/esp/resources/stat_test.rb +159 -0
  132. data/test/esp/resources/sub_organization_test.rb +127 -0
  133. data/test/esp/resources/suppression/region_test.rb +115 -0
  134. data/test/esp/resources/suppression/signature_test.rb +117 -0
  135. data/test/esp/resources/suppression/unique_identifier_test.rb +79 -0
  136. data/test/esp/resources/suppression_test.rb +226 -0
  137. data/test/esp/resources/tag_test.rb +98 -0
  138. data/test/esp/resources/team_test.rb +140 -0
  139. data/test/esp/resources/user_test.rb +113 -0
  140. data/test/esp_test.rb +139 -0
  141. data/test/factories/alerts.rb +234 -0
  142. data/test/factories/cloud_trail_events.rb +16 -0
  143. data/test/factories/contact_requests.rb +14 -0
  144. data/test/factories/custom_signatures.rb +30 -0
  145. data/test/factories/dashboards.rb +91 -0
  146. data/test/factories/errors.rb +24 -0
  147. data/test/factories/external_accounts.rb +44 -0
  148. data/test/factories/organizations.rb +48 -0
  149. data/test/factories/regions.rb +9 -0
  150. data/test/factories/reports.rb +56 -0
  151. data/test/factories/services.rb +12 -0
  152. data/test/factories/signatures.rb +28 -0
  153. data/test/factories/stat_custom_signatures.rb +97 -0
  154. data/test/factories/stat_regions.rb +97 -0
  155. data/test/factories/stat_services.rb +97 -0
  156. data/test/factories/stat_signautures.rb +97 -0
  157. data/test/factories/stats.rb +129 -0
  158. data/test/factories/sub_organizations.rb +34 -0
  159. data/test/factories/suppression/regions.rb +90 -0
  160. data/test/factories/suppression/signatures.rb +117 -0
  161. data/test/factories/suppression/unique_identifiers.rb +111 -0
  162. data/test/factories/suppressions.rb +71 -0
  163. data/test/factories/tags.rb +12 -0
  164. data/test/factories/teams.rb +32 -0
  165. data/test/factories/users.rb +54 -0
  166. data/test/json_strategy.rb +25 -0
  167. data/test/test_helper.rb +44 -5
  168. metadata +387 -119
  169. data/bin/esp_repl +0 -60
  170. data/lib/esp_sdk/api.rb +0 -33
  171. data/lib/esp_sdk/client.rb +0 -62
  172. data/lib/esp_sdk/configure.rb +0 -40
  173. data/lib/esp_sdk/end_points/base.rb +0 -102
  174. data/lib/esp_sdk/end_points/contact_requests.rb +0 -6
  175. data/lib/esp_sdk/end_points/custom_signatures.rb +0 -41
  176. data/lib/esp_sdk/end_points/dashboard.rb +0 -35
  177. data/lib/esp_sdk/end_points/external_accounts.rb +0 -9
  178. data/lib/esp_sdk/end_points/organizations.rb +0 -6
  179. data/lib/esp_sdk/end_points/reports.rb +0 -6
  180. data/lib/esp_sdk/end_points/services.rb +0 -6
  181. data/lib/esp_sdk/end_points/signatures.rb +0 -39
  182. data/lib/esp_sdk/end_points/sub_organizations.rb +0 -6
  183. data/lib/esp_sdk/end_points/teams.rb +0 -6
  184. data/lib/esp_sdk/end_points/users.rb +0 -6
  185. data/lib/esp_sdk/exceptions.rb +0 -8
  186. data/lib/esp_sdk/extensions/rest_client/request.rb +0 -9
  187. data/lib/esp_sdk/repl.rb +0 -61
  188. data/lib/esp_sdk/version.rb +0 -3
  189. data/test/esp_sdk/api_test.rb +0 -36
  190. data/test/esp_sdk/client_test.rb +0 -129
  191. data/test/esp_sdk/configure_test.rb +0 -65
  192. data/test/esp_sdk/end_points/.keep +0 -0
  193. data/test/esp_sdk/end_points/base_test.rb +0 -230
  194. data/test/esp_sdk/end_points/custom_signatures_test.rb +0 -90
  195. data/test/esp_sdk/end_points/dashboard_test.rb +0 -55
  196. data/test/esp_sdk/end_points/external_accounts_test.rb +0 -20
  197. data/test/esp_sdk/end_points/signatures_test.rb +0 -83
  198. data/test/esp_sdk/exceptions_test.rb +0 -41
  199. data/test/esp_sdk_test.rb +0 -70
@@ -0,0 +1,142 @@
1
+ /*
2
+ * Navigation allows movement using the arrow keys through the search results.
3
+ *
4
+ * When using this library you will need to set scrollIntoView to the
5
+ * appropriate function for your layout. Use scrollInWindow if the container
6
+ * is not scrollable and scrollInElement if the container is a separate
7
+ * scrolling region.
8
+ */
9
+ Navigation = new function() {
10
+ this.initNavigation = function() {
11
+ var _this = this;
12
+
13
+ $(document).keydown(function(e) {
14
+ _this.onkeydown(e);
15
+ }).keyup(function(e) {
16
+ _this.onkeyup(e);
17
+ });
18
+
19
+ this.navigationActive = true;
20
+ }
21
+
22
+ this.setNavigationActive = function(state) {
23
+ this.navigationActive = state;
24
+ this.clearMoveTimeout();
25
+ }
26
+
27
+ this.onkeyup = function(e) {
28
+ if (!this.navigationActive) return;
29
+
30
+ switch(e.keyCode) {
31
+ case 37: //Event.KEY_LEFT:
32
+ case 38: //Event.KEY_UP:
33
+ case 39: //Event.KEY_RIGHT:
34
+ case 40: //Event.KEY_DOWN:
35
+ this.clearMoveTimeout();
36
+ break;
37
+ }
38
+ }
39
+
40
+ this.onkeydown = function(e) {
41
+ if (!this.navigationActive) return;
42
+ switch(e.keyCode) {
43
+ case 37: //Event.KEY_LEFT:
44
+ if (this.moveLeft()) e.preventDefault();
45
+ break;
46
+ case 38: //Event.KEY_UP:
47
+ if (e.keyCode == 38 || e.ctrlKey) {
48
+ if (this.moveUp()) e.preventDefault();
49
+ this.startMoveTimeout(false);
50
+ }
51
+ break;
52
+ case 39: //Event.KEY_RIGHT:
53
+ if (this.moveRight()) e.preventDefault();
54
+ break;
55
+ case 40: //Event.KEY_DOWN:
56
+ if (e.keyCode == 40 || e.ctrlKey) {
57
+ if (this.moveDown()) e.preventDefault();
58
+ this.startMoveTimeout(true);
59
+ }
60
+ break;
61
+ case 13: //Event.KEY_RETURN:
62
+ if (this.$current)
63
+ e.preventDefault();
64
+ this.select(this.$current);
65
+ break;
66
+ }
67
+ if (e.ctrlKey && e.shiftKey) this.select(this.$current);
68
+ }
69
+
70
+ this.clearMoveTimeout = function() {
71
+ clearTimeout(this.moveTimeout);
72
+ this.moveTimeout = null;
73
+ }
74
+
75
+ this.startMoveTimeout = function(isDown) {
76
+ if (!$.browser.mozilla && !$.browser.opera) return;
77
+ if (this.moveTimeout) this.clearMoveTimeout();
78
+ var _this = this;
79
+
80
+ var go = function() {
81
+ if (!_this.moveTimeout) return;
82
+ _this[isDown ? 'moveDown' : 'moveUp']();
83
+ _this.moveTimout = setTimeout(go, 100);
84
+ }
85
+ this.moveTimeout = setTimeout(go, 200);
86
+ }
87
+
88
+ this.moveRight = function() {
89
+ }
90
+
91
+ this.moveLeft = function() {
92
+ }
93
+
94
+ this.move = function(isDown) {
95
+ }
96
+
97
+ this.moveUp = function() {
98
+ return this.move(false);
99
+ }
100
+
101
+ this.moveDown = function() {
102
+ return this.move(true);
103
+ }
104
+
105
+ /*
106
+ * Scrolls to the given element in the scrollable element view.
107
+ */
108
+ this.scrollInElement = function(element, view) {
109
+ var offset, viewHeight, viewScroll, height;
110
+ offset = element.offsetTop;
111
+ height = element.offsetHeight;
112
+ viewHeight = view.offsetHeight;
113
+ viewScroll = view.scrollTop;
114
+
115
+ if (offset - viewScroll + height > viewHeight) {
116
+ view.scrollTop = offset - viewHeight + height;
117
+ }
118
+ if (offset < viewScroll) {
119
+ view.scrollTop = offset;
120
+ }
121
+ }
122
+
123
+ /*
124
+ * Scrolls to the given element in the window. The second argument is
125
+ * ignored
126
+ */
127
+ this.scrollInWindow = function(element, ignored) {
128
+ var offset, viewHeight, viewScroll, height;
129
+ offset = element.offsetTop;
130
+ height = element.offsetHeight;
131
+ viewHeight = window.innerHeight;
132
+ viewScroll = window.scrollY;
133
+
134
+ if (offset - viewScroll + height > viewHeight) {
135
+ window.scrollTo(window.scrollX, offset - viewHeight + height);
136
+ }
137
+ if (offset < viewScroll) {
138
+ window.scrollTo(window.scrollX, offset);
139
+ }
140
+ }
141
+ }
142
+
data/rdoc/js/search.js ADDED
@@ -0,0 +1,94 @@
1
+ Search = function(data, input, result) {
2
+ this.data = data;
3
+ this.$input = $(input);
4
+ this.$result = $(result);
5
+
6
+ this.$current = null;
7
+ this.$view = this.$result.parent();
8
+ this.searcher = new Searcher(data.index);
9
+ this.init();
10
+ }
11
+
12
+ Search.prototype = $.extend({}, Navigation, new function() {
13
+ var suid = 1;
14
+
15
+ this.init = function() {
16
+ var _this = this;
17
+ var observer = function() {
18
+ _this.search(_this.$input[0].value);
19
+ };
20
+ this.$input.keyup(observer);
21
+ this.$input.click(observer); // mac's clear field
22
+
23
+ this.searcher.ready(function(results, isLast) {
24
+ _this.addResults(results, isLast);
25
+ })
26
+
27
+ this.initNavigation();
28
+ this.setNavigationActive(false);
29
+ }
30
+
31
+ this.search = function(value, selectFirstMatch) {
32
+ value = jQuery.trim(value).toLowerCase();
33
+ if (value) {
34
+ this.setNavigationActive(true);
35
+ } else {
36
+ this.setNavigationActive(false);
37
+ }
38
+
39
+ if (value == '') {
40
+ this.lastQuery = value;
41
+ this.$result.empty();
42
+ this.setNavigationActive(false);
43
+ } else if (value != this.lastQuery) {
44
+ this.lastQuery = value;
45
+ this.firstRun = true;
46
+ this.searcher.find(value);
47
+ }
48
+ }
49
+
50
+ this.addResults = function(results, isLast) {
51
+ var target = this.$result.get(0);
52
+ if (this.firstRun && (results.length > 0 || isLast)) {
53
+ this.$current = null;
54
+ this.$result.empty();
55
+ }
56
+
57
+ for (var i=0, l = results.length; i < l; i++) {
58
+ target.appendChild(this.renderItem.call(this, results[i]));
59
+ };
60
+
61
+ if (this.firstRun && results.length > 0) {
62
+ this.firstRun = false;
63
+ this.$current = $(target.firstChild);
64
+ this.$current.addClass('current');
65
+ }
66
+ if (jQuery.browser.msie) this.$element[0].className += '';
67
+ }
68
+
69
+ this.move = function(isDown) {
70
+ if (!this.$current) return;
71
+ var $next = this.$current[isDown ? 'next' : 'prev']();
72
+ if ($next.length) {
73
+ this.$current.removeClass('current');
74
+ $next.addClass('current');
75
+ this.scrollIntoView($next[0], this.$view[0]);
76
+ this.$current = $next;
77
+ }
78
+ return true;
79
+ }
80
+
81
+ this.hlt = function(html) {
82
+ return this.escapeHTML(html).
83
+ replace(/\u0001/g, '<em>').
84
+ replace(/\u0002/g, '</em>');
85
+ }
86
+
87
+ this.escapeHTML = function(html) {
88
+ return html.replace(/[&<>]/g, function(c) {
89
+ return '&#' + c.charCodeAt(0) + ';';
90
+ });
91
+ }
92
+
93
+ });
94
+
@@ -0,0 +1 @@
1
+ var search_data = {"index":{"searchIndex":["activeresource","formats","paginatedcollection","esp","alert","cloudtrailevent","contactrequest","customsignature","dashboard","externalaccount","organization","region","report","service","signature","stat","statcustomsignature","statregion","statservice","statsignature","suborganization","suppression","region","signature","uniqueidentifier","tag","team","user","access_key_id()","access_key_id=()","alerts()","all()","all()","all()","all()","all()","all()","all()","all()","all()","all()","all()","cloud_trail_events()","configure()","create()","create()","create()","create()","create()","create()","create()","create()","create()","create()","create()","create()","create()","create()","create()","create(attributes={})()","create_report()","created_by()","current_page_number()","custom_signature()","custom_signatures()","custom_signatures()","custom_signatures()","deactivate()","deactivate!()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","env()","external_account()","external_accounts()","external_accounts()","external_accounts()","external_accounts()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","find()","first_page()","first_page!()","for_alert()","for_alert()","for_report()","for_report()","for_stat()","for_stat()","for_stat()","for_stat()","generate_external_id()","host=()","last_page()","last_page!()","last_page?()","last_page_number()","latest_for_teams()","next_page()","next_page!()","next_page?()","next_page_number()","organization()","organization()","organization()","organization()","organization()","organization()","organization()","page()","page!()","previous_page()","previous_page!()","previous_page?()","previous_page_number()","recent()","region()","regions()","regions()","report()","reports()","reports()","reports()","run()","run()","run()","run!()","run!()","run!()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","save()","secret_access_key()","secret_access_key=()","service()","services()","signature()","signatures()","signatures()","signatures()","site()","stat()","sub_organization()","sub_organization()","sub_organization()","sub_organizations()","sub_organizations()","suppress()","suppress()","suppress()","suppress_region()","suppress_signature()","suppress_unique_identifier()","suppression()","tags()","team()","team()","teams()","teams()","teams()","total()","total()","total()","total()","total()","total_error()","total_error()","total_error()","total_error()","total_error()","total_fail()","total_fail()","total_fail()","total_fail()","total_fail()","total_info()","total_info()","total_info()","total_info()","total_info()","total_new_1d()","total_new_1d()","total_new_1d()","total_new_1d()","total_new_1d()","total_new_1d_error()","total_new_1d_error()","total_new_1d_error()","total_new_1d_error()","total_new_1d_error()","total_new_1d_fail()","total_new_1d_fail()","total_new_1d_fail()","total_new_1d_fail()","total_new_1d_fail()","total_new_1d_info()","total_new_1d_info()","total_new_1d_info()","total_new_1d_info()","total_new_1d_info()","total_new_1d_pass()","total_new_1d_pass()","total_new_1d_pass()","total_new_1d_pass()","total_new_1d_pass()","total_new_1d_warn()","total_new_1d_warn()","total_new_1d_warn()","total_new_1d_warn()","total_new_1d_warn()","total_new_1h()","total_new_1h()","total_new_1h()","total_new_1h()","total_new_1h()","total_new_1h_error()","total_new_1h_error()","total_new_1h_error()","total_new_1h_error()","total_new_1h_error()","total_new_1h_fail()","total_new_1h_fail()","total_new_1h_fail()","total_new_1h_fail()","total_new_1h_fail()","total_new_1h_info()","total_new_1h_info()","total_new_1h_info()","total_new_1h_info()","total_new_1h_info()","total_new_1h_pass()","total_new_1h_pass()","total_new_1h_pass()","total_new_1h_pass()","total_new_1h_pass()","total_new_1h_warn()","total_new_1h_warn()","total_new_1h_warn()","total_new_1h_warn()","total_new_1h_warn()","total_new_1w()","total_new_1w()","total_new_1w()","total_new_1w()","total_new_1w()","total_new_1w_error()","total_new_1w_error()","total_new_1w_error()","total_new_1w_error()","total_new_1w_error()","total_new_1w_fail()","total_new_1w_fail()","total_new_1w_fail()","total_new_1w_fail()","total_new_1w_fail()","total_new_1w_info()","total_new_1w_info()","total_new_1w_info()","total_new_1w_info()","total_new_1w_info()","total_new_1w_pass()","total_new_1w_pass()","total_new_1w_pass()","total_new_1w_pass()","total_new_1w_pass()","total_new_1w_warn()","total_new_1w_warn()","total_new_1w_warn()","total_new_1w_warn()","total_new_1w_warn()","total_old()","total_old()","total_old()","total_old()","total_old()","total_old_error()","total_old_error()","total_old_error()","total_old_error()","total_old_error()","total_old_fail()","total_old_fail()","total_old_fail()","total_old_fail()","total_old_fail()","total_old_info()","total_old_info()","total_old_info()","total_old_info()","total_old_info()","total_old_pass()","total_old_pass()","total_old_pass()","total_old_pass()","total_old_pass()","total_old_warn()","total_old_warn()","total_old_warn()","total_old_warn()","total_old_warn()","total_pass()","total_pass()","total_pass()","total_pass()","total_pass()","total_suppressed()","total_suppressed()","total_suppressed()","total_suppressed()","total_suppressed()","total_suppressed_error()","total_suppressed_error()","total_suppressed_error()","total_suppressed_error()","total_suppressed_error()","total_suppressed_fail()","total_suppressed_fail()","total_suppressed_fail()","total_suppressed_fail()","total_suppressed_fail()","total_suppressed_pass()","total_suppressed_pass()","total_suppressed_pass()","total_suppressed_pass()","total_suppressed_pass()","total_suppressed_warn()","total_suppressed_warn()","total_suppressed_warn()","total_suppressed_warn()","total_suppressed_warn()","total_warn()","total_warn()","total_warn()","total_warn()","total_warn()","update()","update()","update()","update()","update()","users()","readme"],"longSearchIndex":["activeresource","activeresource::formats","activeresource::paginatedcollection","esp","esp::alert","esp::cloudtrailevent","esp::contactrequest","esp::customsignature","esp::dashboard","esp::externalaccount","esp::organization","esp::region","esp::report","esp::service","esp::signature","esp::stat","esp::statcustomsignature","esp::statregion","esp::statservice","esp::statsignature","esp::suborganization","esp::suppression","esp::suppression::region","esp::suppression::signature","esp::suppression::uniqueidentifier","esp::tag","esp::team","esp::user","esp::access_key_id()","esp::access_key_id=()","esp::report#alerts()","esp::customsignature::all()","esp::externalaccount::all()","esp::organization::all()","esp::region::all()","esp::report::all()","esp::service::all()","esp::signature::all()","esp::suborganization::all()","esp::suppression::all()","esp::team::all()","esp::user::all()","esp::alert#cloud_trail_events()","esp::configure()","esp::customsignature::create()","esp::externalaccount::create()","esp::organization::create()","esp::report::create()","esp::stat::create()","esp::statcustomsignature::create()","esp::statregion::create()","esp::statservice::create()","esp::statsignature::create()","esp::suborganization::create()","esp::suppression::region::create()","esp::suppression::signature::create()","esp::suppression::uniqueidentifier::create()","esp::team::create()","esp::user::create()","esp::contactrequest#create(attributes={})()","esp::team#create_report()","esp::suppression#created_by()","activeresource::paginatedcollection#current_page_number()","esp::alert#custom_signature()","esp::organization#custom_signatures()","esp::stat#custom_signatures()","esp::suppression#custom_signatures()","esp::suppression#deactivate()","esp::suppression#deactivate!()","esp::alert#destroy()","esp::cloudtrailevent#destroy()","esp::contactrequest#destroy()","esp::dashboard#destroy()","esp::externalaccount#destroy()","esp::organization#destroy()","esp::region#destroy()","esp::report#destroy()","esp::service#destroy()","esp::signature#destroy()","esp::stat#destroy()","esp::statcustomsignature#destroy()","esp::statregion#destroy()","esp::statservice#destroy()","esp::statsignature#destroy()","esp::suborganization#destroy()","esp::suppression#destroy()","esp::suppression::region#destroy()","esp::suppression::signature#destroy()","esp::suppression::uniqueidentifier#destroy()","esp::tag#destroy()","esp::team#destroy()","esp::user#destroy()","esp::env()","esp::alert#external_account()","esp::organization#external_accounts()","esp::suborganization#external_accounts()","esp::suppression#external_accounts()","esp::team#external_accounts()","esp::alert::find()","esp::cloudtrailevent::find()","esp::contactrequest::find()","esp::customsignature::find()","esp::dashboard::find()","esp::externalaccount::find()","esp::organization::find()","esp::region::find()","esp::report::find()","esp::service::find()","esp::signature::find()","esp::stat::find()","esp::statcustomsignature::find()","esp::statregion::find()","esp::statservice::find()","esp::statsignature::find()","esp::suborganization::find()","esp::suppression::find()","esp::suppression::region::find()","esp::suppression::signature::find()","esp::suppression::uniqueidentifier::find()","esp::tag::find()","esp::team::find()","esp::user::find()","activeresource::paginatedcollection#first_page()","activeresource::paginatedcollection#first_page!()","esp::cloudtrailevent::for_alert()","esp::tag::for_alert()","esp::alert::for_report()","esp::stat::for_report()","esp::statcustomsignature::for_stat()","esp::statregion::for_stat()","esp::statservice::for_stat()","esp::statsignature::for_stat()","esp::externalaccount#generate_external_id()","esp::host=()","activeresource::paginatedcollection#last_page()","activeresource::paginatedcollection#last_page!()","activeresource::paginatedcollection#last_page?()","activeresource::paginatedcollection#last_page_number()","esp::stat::latest_for_teams()","activeresource::paginatedcollection#next_page()","activeresource::paginatedcollection#next_page!()","activeresource::paginatedcollection#next_page?()","activeresource::paginatedcollection#next_page_number()","esp::customsignature#organization()","esp::externalaccount#organization()","esp::report#organization()","esp::suborganization#organization()","esp::suppression#organization()","esp::team#organization()","esp::user#organization()","activeresource::paginatedcollection#page()","activeresource::paginatedcollection#page!()","activeresource::paginatedcollection#previous_page()","activeresource::paginatedcollection#previous_page!()","activeresource::paginatedcollection#previous_page?()","activeresource::paginatedcollection#previous_page_number()","esp::dashboard::recent()","esp::alert#region()","esp::stat#regions()","esp::suppression#regions()","esp::stat#report()","esp::organization#reports()","esp::suborganization#reports()","esp::team#reports()","esp::customsignature#run()","esp::customsignature::run()","esp::signature#run()","esp::customsignature#run!()","esp::customsignature::run!()","esp::signature#run!()","esp::alert#save()","esp::cloudtrailevent#save()","esp::customsignature#save()","esp::dashboard#save()","esp::externalaccount#save()","esp::organization#save()","esp::region#save()","esp::service#save()","esp::signature#save()","esp::stat#save()","esp::statcustomsignature#save()","esp::statregion#save()","esp::statservice#save()","esp::statsignature#save()","esp::suborganization#save()","esp::suppression#save()","esp::suppression::region#save()","esp::suppression::signature#save()","esp::suppression::uniqueidentifier#save()","esp::tag#save()","esp::team#save()","esp::user#save()","esp::secret_access_key()","esp::secret_access_key=()","esp::signature#service()","esp::stat#services()","esp::alert#signature()","esp::service#signatures()","esp::stat#signatures()","esp::suppression#signatures()","esp::site()","esp::report#stat()","esp::externalaccount#sub_organization()","esp::report#sub_organization()","esp::team#sub_organization()","esp::organization#sub_organizations()","esp::user#sub_organizations()","esp::customsignature#suppress()","esp::region#suppress()","esp::signature#suppress()","esp::alert#suppress_region()","esp::alert#suppress_signature()","esp::alert#suppress_unique_identifier()","esp::alert#suppression()","esp::alert#tags()","esp::externalaccount#team()","esp::report#team()","esp::organization#teams()","esp::suborganization#teams()","esp::user#teams()","esp::stat#total()","esp::statcustomsignature#total()","esp::statregion#total()","esp::statservice#total()","esp::statsignature#total()","esp::stat#total_error()","esp::statcustomsignature#total_error()","esp::statregion#total_error()","esp::statservice#total_error()","esp::statsignature#total_error()","esp::stat#total_fail()","esp::statcustomsignature#total_fail()","esp::statregion#total_fail()","esp::statservice#total_fail()","esp::statsignature#total_fail()","esp::stat#total_info()","esp::statcustomsignature#total_info()","esp::statregion#total_info()","esp::statservice#total_info()","esp::statsignature#total_info()","esp::stat#total_new_1d()","esp::statcustomsignature#total_new_1d()","esp::statregion#total_new_1d()","esp::statservice#total_new_1d()","esp::statsignature#total_new_1d()","esp::stat#total_new_1d_error()","esp::statcustomsignature#total_new_1d_error()","esp::statregion#total_new_1d_error()","esp::statservice#total_new_1d_error()","esp::statsignature#total_new_1d_error()","esp::stat#total_new_1d_fail()","esp::statcustomsignature#total_new_1d_fail()","esp::statregion#total_new_1d_fail()","esp::statservice#total_new_1d_fail()","esp::statsignature#total_new_1d_fail()","esp::stat#total_new_1d_info()","esp::statcustomsignature#total_new_1d_info()","esp::statregion#total_new_1d_info()","esp::statservice#total_new_1d_info()","esp::statsignature#total_new_1d_info()","esp::stat#total_new_1d_pass()","esp::statcustomsignature#total_new_1d_pass()","esp::statregion#total_new_1d_pass()","esp::statservice#total_new_1d_pass()","esp::statsignature#total_new_1d_pass()","esp::stat#total_new_1d_warn()","esp::statcustomsignature#total_new_1d_warn()","esp::statregion#total_new_1d_warn()","esp::statservice#total_new_1d_warn()","esp::statsignature#total_new_1d_warn()","esp::stat#total_new_1h()","esp::statcustomsignature#total_new_1h()","esp::statregion#total_new_1h()","esp::statservice#total_new_1h()","esp::statsignature#total_new_1h()","esp::stat#total_new_1h_error()","esp::statcustomsignature#total_new_1h_error()","esp::statregion#total_new_1h_error()","esp::statservice#total_new_1h_error()","esp::statsignature#total_new_1h_error()","esp::stat#total_new_1h_fail()","esp::statcustomsignature#total_new_1h_fail()","esp::statregion#total_new_1h_fail()","esp::statservice#total_new_1h_fail()","esp::statsignature#total_new_1h_fail()","esp::stat#total_new_1h_info()","esp::statcustomsignature#total_new_1h_info()","esp::statregion#total_new_1h_info()","esp::statservice#total_new_1h_info()","esp::statsignature#total_new_1h_info()","esp::stat#total_new_1h_pass()","esp::statcustomsignature#total_new_1h_pass()","esp::statregion#total_new_1h_pass()","esp::statservice#total_new_1h_pass()","esp::statsignature#total_new_1h_pass()","esp::stat#total_new_1h_warn()","esp::statcustomsignature#total_new_1h_warn()","esp::statregion#total_new_1h_warn()","esp::statservice#total_new_1h_warn()","esp::statsignature#total_new_1h_warn()","esp::stat#total_new_1w()","esp::statcustomsignature#total_new_1w()","esp::statregion#total_new_1w()","esp::statservice#total_new_1w()","esp::statsignature#total_new_1w()","esp::stat#total_new_1w_error()","esp::statcustomsignature#total_new_1w_error()","esp::statregion#total_new_1w_error()","esp::statservice#total_new_1w_error()","esp::statsignature#total_new_1w_error()","esp::stat#total_new_1w_fail()","esp::statcustomsignature#total_new_1w_fail()","esp::statregion#total_new_1w_fail()","esp::statservice#total_new_1w_fail()","esp::statsignature#total_new_1w_fail()","esp::stat#total_new_1w_info()","esp::statcustomsignature#total_new_1w_info()","esp::statregion#total_new_1w_info()","esp::statservice#total_new_1w_info()","esp::statsignature#total_new_1w_info()","esp::stat#total_new_1w_pass()","esp::statcustomsignature#total_new_1w_pass()","esp::statregion#total_new_1w_pass()","esp::statservice#total_new_1w_pass()","esp::statsignature#total_new_1w_pass()","esp::stat#total_new_1w_warn()","esp::statcustomsignature#total_new_1w_warn()","esp::statregion#total_new_1w_warn()","esp::statservice#total_new_1w_warn()","esp::statsignature#total_new_1w_warn()","esp::stat#total_old()","esp::statcustomsignature#total_old()","esp::statregion#total_old()","esp::statservice#total_old()","esp::statsignature#total_old()","esp::stat#total_old_error()","esp::statcustomsignature#total_old_error()","esp::statregion#total_old_error()","esp::statservice#total_old_error()","esp::statsignature#total_old_error()","esp::stat#total_old_fail()","esp::statcustomsignature#total_old_fail()","esp::statregion#total_old_fail()","esp::statservice#total_old_fail()","esp::statsignature#total_old_fail()","esp::stat#total_old_info()","esp::statcustomsignature#total_old_info()","esp::statregion#total_old_info()","esp::statservice#total_old_info()","esp::statsignature#total_old_info()","esp::stat#total_old_pass()","esp::statcustomsignature#total_old_pass()","esp::statregion#total_old_pass()","esp::statservice#total_old_pass()","esp::statsignature#total_old_pass()","esp::stat#total_old_warn()","esp::statcustomsignature#total_old_warn()","esp::statregion#total_old_warn()","esp::statservice#total_old_warn()","esp::statsignature#total_old_warn()","esp::stat#total_pass()","esp::statcustomsignature#total_pass()","esp::statregion#total_pass()","esp::statservice#total_pass()","esp::statsignature#total_pass()","esp::stat#total_suppressed()","esp::statcustomsignature#total_suppressed()","esp::statregion#total_suppressed()","esp::statservice#total_suppressed()","esp::statsignature#total_suppressed()","esp::stat#total_suppressed_error()","esp::statcustomsignature#total_suppressed_error()","esp::statregion#total_suppressed_error()","esp::statservice#total_suppressed_error()","esp::statsignature#total_suppressed_error()","esp::stat#total_suppressed_fail()","esp::statcustomsignature#total_suppressed_fail()","esp::statregion#total_suppressed_fail()","esp::statservice#total_suppressed_fail()","esp::statsignature#total_suppressed_fail()","esp::stat#total_suppressed_pass()","esp::statcustomsignature#total_suppressed_pass()","esp::statregion#total_suppressed_pass()","esp::statservice#total_suppressed_pass()","esp::statsignature#total_suppressed_pass()","esp::stat#total_suppressed_warn()","esp::statcustomsignature#total_suppressed_warn()","esp::statregion#total_suppressed_warn()","esp::statservice#total_suppressed_warn()","esp::statsignature#total_suppressed_warn()","esp::stat#total_warn()","esp::statcustomsignature#total_warn()","esp::statregion#total_warn()","esp::statservice#total_warn()","esp::statsignature#total_warn()","esp::contactrequest#update()","esp::report#update()","esp::suppression::region#update()","esp::suppression::signature#update()","esp::suppression::uniqueidentifier#update()","esp::organization#users()",""],"info":[["ActiveResource","","ActiveResource.html","",""],["ActiveResource::Formats","","ActiveResource/Formats.html","",""],["ActiveResource::PaginatedCollection","","ActiveResource/PaginatedCollection.html","","<p>Provides a mean to call the Evident.io API to easily retrieve paginated\ndata\n"],["ESP","","ESP.html","",""],["ESP::Alert","","ESP/Alert.html","",""],["ESP::CloudTrailEvent","","ESP/CloudTrailEvent.html","",""],["ESP::ContactRequest","","ESP/ContactRequest.html","","<p>Use contact requests to send a support or feature request to Evident.io.\n"],["ESP::CustomSignature","","ESP/CustomSignature.html","",""],["ESP::Dashboard","","ESP/Dashboard.html","",""],["ESP::ExternalAccount","","ESP/ExternalAccount.html","",""],["ESP::Organization","","ESP/Organization.html","",""],["ESP::Region","","ESP/Region.html","",""],["ESP::Report","","ESP/Report.html","",""],["ESP::Service","","ESP/Service.html","",""],["ESP::Signature","","ESP/Signature.html","",""],["ESP::Stat","","ESP/Stat.html","",""],["ESP::StatCustomSignature","","ESP/StatCustomSignature.html","",""],["ESP::StatRegion","","ESP/StatRegion.html","",""],["ESP::StatService","","ESP/StatService.html","",""],["ESP::StatSignature","","ESP/StatSignature.html","",""],["ESP::SubOrganization","","ESP/SubOrganization.html","",""],["ESP::Suppression","","ESP/Suppression.html","",""],["ESP::Suppression::Region","","ESP/Suppression/Region.html","",""],["ESP::Suppression::Signature","","ESP/Suppression/Signature.html","",""],["ESP::Suppression::UniqueIdentifier","","ESP/Suppression/UniqueIdentifier.html","",""],["ESP::Tag","","ESP/Tag.html","",""],["ESP::Team","","ESP/Team.html","",""],["ESP::User","","ESP/User.html","",""],["access_key_id","ESP","ESP.html#method-c-access_key_id","()","<p>Reads the `ESP_ACCESS_KEY_ID` environment variable if ::access_key_id was\nnot set manually.\n"],["access_key_id=","ESP","ESP.html#method-c-access_key_id-3D","(access_key_id)","<p>Manually set the access_key_id you created from\nesp.evident.io/settings/api_keys.\n<p>You can optionally set …\n"],["alerts","ESP::Report","ESP/Report.html#method-i-alerts","(arguments = {})","<p>Returns a paginated collection of alerts for the report\n<p>Parameters\n<p><code>arguments</code> | Not Required | An optional …\n"],["all","ESP::CustomSignature","ESP/CustomSignature.html#method-c-all","","<p>Return a paginated CustomSignature list\n"],["all","ESP::ExternalAccount","ESP/ExternalAccount.html#method-c-all","","<p>Return a paginated CustomSignature list\n"],["all","ESP::Organization","ESP/Organization.html#method-c-all","","<p>Return a paginated Organization list\n"],["all","ESP::Region","ESP/Region.html#method-c-all","","<p>Return a paginated Region list\n"],["all","ESP::Report","ESP/Report.html#method-c-all","","<p>Return a paginated Report list\n"],["all","ESP::Service","ESP/Service.html#method-c-all","","<p>Return a paginated Service list\n"],["all","ESP::Signature","ESP/Signature.html#method-c-all","","<p>Return a paginated Signature list\n"],["all","ESP::SubOrganization","ESP/SubOrganization.html#method-c-all","","<p>Return a paginated SubOrganization list\n"],["all","ESP::Suppression","ESP/Suppression.html#method-c-all","","<p>Return a paginated Suppression list\n"],["all","ESP::Team","ESP/Team.html#method-c-all","","<p>Return a paginated Team list\n"],["all","ESP::User","ESP/User.html#method-c-all","","<p>Return a paginated User list\n"],["cloud_trail_events","ESP::Alert","ESP/Alert.html#method-i-cloud_trail_events","","<p>Returns the cloud trail events associated with this alert. These may be\nadded up to 10 minutes after …\n"],["configure","ESP","ESP.html#method-c-configure","()","<p>For use in a Rails initializer to set the ::access_key_id,\n::secret_access_key and ::site.\n<p>Example\n\n<pre>ESP.configure ...</pre>\n"],["create","ESP::CustomSignature","ESP/CustomSignature.html#method-c-create","","<p>Create a CustomSignature\n<p>Parameter\n<p><code>attributes</code> | Required | A hash of custom signature attributes\n"],["create","ESP::ExternalAccount","ESP/ExternalAccount.html#method-c-create","","<p>Create an ExternalAccount.\n<p>Parameter\n<p><code>attributes</code> | Required | A hash of external account attributes\n"],["create","ESP::Organization","ESP/Organization.html#method-c-create","","<p>Not Implemented. You cannot create an Organization.\n"],["create","ESP::Report","ESP/Report.html#method-c-create","(arguments = {})","<p>Enqueue a report to be run for the given team. Returns a Report object with\na status of &#39;queued&#39; …\n"],["create","ESP::Stat","ESP/Stat.html#method-c-create","","<p>Not Implemented. You cannot create a Stat.\n"],["create","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-c-create","","<p>Not Implemented. You cannot create a Stat.\n"],["create","ESP::StatRegion","ESP/StatRegion.html#method-c-create","","<p>Not Implemented. You cannot create a Stat.\n"],["create","ESP::StatService","ESP/StatService.html#method-c-create","","<p>Not Implemented. You cannot create a Stat.\n"],["create","ESP::StatSignature","ESP/StatSignature.html#method-c-create","","<p>Not Implemented. You cannot create a Stat.\n"],["create","ESP::SubOrganization","ESP/SubOrganization.html#method-c-create","","<p>Create a SubOrganization.\n<p>Parameters\n<p><code>attributes</code> | Required | A hash of run arguments\n"],["create","ESP::Suppression::Region","ESP/Suppression/Region.html#method-c-create","","<p>Create a suppression for a region.\n<p>If you pass an <code>alert_id</code>, include the <code>reason</code> and\nall other params will …\n"],["create","ESP::Suppression::Signature","ESP/Suppression/Signature.html#method-c-create","","<p>Create a suppression for a signature or custom signature.\n<p>If you pass an <code>alert_id</code>, include the <code>reason</code> …\n"],["create","ESP::Suppression::UniqueIdentifier","ESP/Suppression/UniqueIdentifier.html#method-c-create","","<p>Create a suppression for a unique identifier.\n<p>Pass an <code>alert_id</code>, the suppression will be created based …\n"],["create","ESP::Team","ESP/Team.html#method-c-create","","<p>Create a Team.\n<p>Parameter\n<p><code>attributes</code> | Required | A hash of team attributes\n"],["create","ESP::User","ESP/User.html#method-c-create","","<p>Not Implemented. You cannot create a User.\n"],["create(attributes={})","ESP::ContactRequest","ESP/ContactRequest.html#method-i-create-28attributes-3D-7B-7D-29","","<p>Create a contact request.\n<p>Parameter\n<p><code>attributes</code> | Required | A hash of contact request attributes\n"],["create_report","ESP::Team","ESP/Team.html#method-i-create_report","()","<p>Enqueue a report to be run for this team. Returns a Report object with a\nstatus of &#39;queued&#39; and …\n"],["created_by","ESP::Suppression","ESP/Suppression.html#method-i-created_by","","<p>The user who created the suppression.\n"],["current_page_number","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-current_page_number","()","<p>The current page number of data.\n"],["custom_signature","ESP::Alert","ESP/Alert.html#method-i-custom_signature","","<p>Returns the custom signature associated with this alert. Either a\nsignature or custom signature but …\n"],["custom_signatures","ESP::Organization","ESP/Organization.html#method-i-custom_signatures","","<p>The collection of organizations that belong to the organization.\n"],["custom_signatures","ESP::Stat","ESP/Stat.html#method-i-custom_signatures","","<p>The stats for each custom signature associated with this stat object.\n"],["custom_signatures","ESP::Suppression","ESP/Suppression.html#method-i-custom_signatures","()","<p>The custom signatures being suppressed.\n"],["deactivate","ESP::Suppression","ESP/Suppression.html#method-i-deactivate","()","<p>Deactivate the current suppression instance. The current object will be\nupdated with the new status if …\n"],["deactivate!","ESP::Suppression","ESP/Suppression.html#method-i-deactivate-21","()","<p>Deactivate the current suppression instance. The current object will be\nupdated with the new status if …\n"],["destroy","ESP::Alert","ESP/Alert.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a an Alert.\n"],["destroy","ESP::CloudTrailEvent","ESP/CloudTrailEvent.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a CloudTrailEvent.\n"],["destroy","ESP::ContactRequest","ESP/ContactRequest.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a ContactRequest.\n"],["destroy","ESP::Dashboard","ESP/Dashboard.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a Dashboard.\n"],["destroy","ESP::ExternalAccount","ESP/ExternalAccount.html#method-i-destroy","","<p>Delete a CustomSignature\n"],["destroy","ESP::Organization","ESP/Organization.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy an Organization.\n"],["destroy","ESP::Region","ESP/Region.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a an CloudTrailEvent.\n"],["destroy","ESP::Report","ESP/Report.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a Report.\n"],["destroy","ESP::Service","ESP/Service.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a Service.\n"],["destroy","ESP::Signature","ESP/Signature.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a Signature.\n"],["destroy","ESP::Stat","ESP/Stat.html#method-i-destroy","","<p>Not Implemented. You cannot delete a Stat.\n"],["destroy","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-destroy","","<p>Not Implemented. You cannot delete a Stat.\n"],["destroy","ESP::StatRegion","ESP/StatRegion.html#method-i-destroy","","<p>Not Implemented. You cannot delete a Stat.\n"],["destroy","ESP::StatService","ESP/StatService.html#method-i-destroy","","<p>Not Implemented. You cannot delete a Stat.\n"],["destroy","ESP::StatSignature","ESP/StatSignature.html#method-i-destroy","","<p>Not Implemented. You cannot delete a Stat.\n"],["destroy","ESP::SubOrganization","ESP/SubOrganization.html#method-i-destroy","","<p>Delete a SubOrganization.\n"],["destroy","ESP::Suppression","ESP/Suppression.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a Suppression.\n"],["destroy","ESP::Suppression::Region","ESP/Suppression/Region.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a Suppression::Region.\n"],["destroy","ESP::Suppression::Signature","ESP/Suppression/Signature.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a Suppression::Signature.\n"],["destroy","ESP::Suppression::UniqueIdentifier","ESP/Suppression/UniqueIdentifier.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a Suppression::UniqueIdentifier.\n"],["destroy","ESP::Tag","ESP/Tag.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a Tag.\n"],["destroy","ESP::Team","ESP/Team.html#method-i-destroy","","<p>Delete a Team.\n"],["destroy","ESP::User","ESP/User.html#method-i-destroy","()","<p>Not Implemented. You cannot destroy a User.\n"],["env","ESP","ESP.html#method-c-env","()","<p>Default environment is production which will set ::site to\n“api.evident.io/api/v2”.\n"],["external_account","ESP::Alert","ESP/Alert.html#method-i-external_account","","<p>Returns the external account associated with this alert.\n"],["external_accounts","ESP::Organization","ESP/Organization.html#method-i-external_accounts","","<p>The collection of external_accounts that belong to the organization.\n"],["external_accounts","ESP::SubOrganization","ESP/SubOrganization.html#method-i-external_accounts","","<p>The collection of external_accounts that belong to the sub organization.\n"],["external_accounts","ESP::Suppression","ESP/Suppression.html#method-i-external_accounts","","<p>The external accounts affected by this suppression.\n"],["external_accounts","ESP::Team","ESP/Team.html#method-i-external_accounts","","<p>The collection of external_accounts that belong to the team.\n"],["find","ESP::Alert","ESP/Alert.html#method-c-find","(*arguments)","<p>Find an Alert by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the alert to retrieve\n"],["find","ESP::CloudTrailEvent","ESP/CloudTrailEvent.html#method-c-find","(*arguments)","<p>Find a CloudTrailEvent by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the cloud trail event to retrieve\n"],["find","ESP::ContactRequest","ESP/ContactRequest.html#method-c-find","(*)","<p>Not Implemented. You cannot search for ContactRequest.\n"],["find","ESP::CustomSignature","ESP/CustomSignature.html#method-c-find","","<p>Find a CustomSignature by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the custom signature to retrieve\n"],["find","ESP::Dashboard","ESP/Dashboard.html#method-c-find","(*)","<p>Not Implemented. You cannot search for Suppression::Region.\n<p>Regular ARELlike methods are disabled.\n"],["find","ESP::ExternalAccount","ESP/ExternalAccount.html#method-c-find","","<p>Find an ExternalAccount by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the external account to retrieve\n"],["find","ESP::Organization","ESP/Organization.html#method-c-find","","<p>Find a Organization by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the organization to retrieve\n"],["find","ESP::Region","ESP/Region.html#method-c-find","","<p>Find a Region by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the region to retrieve\n"],["find","ESP::Report","ESP/Report.html#method-c-find","","<p>Find a Report by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the report to retrieve\n"],["find","ESP::Service","ESP/Service.html#method-c-find","","<p>Find a Service by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the service to retrieve\n"],["find","ESP::Signature","ESP/Signature.html#method-c-find","","<p>Find a Signature by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the signature to retrieve\n"],["find","ESP::Stat","ESP/Stat.html#method-c-find","(*)","<p>Not Implemented. You cannot search for a Stat.\n"],["find","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-c-find","(*arguments)","<p>Find a StatRegion by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the custom_signature stat to\nretrieve\n"],["find","ESP::StatRegion","ESP/StatRegion.html#method-c-find","(*arguments)","<p>Find a StatRegion by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the region stat to retrieve\n"],["find","ESP::StatService","ESP/StatService.html#method-c-find","(*arguments)","<p>Find a StatService by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the service stat to retrieve\n"],["find","ESP::StatSignature","ESP/StatSignature.html#method-c-find","(*arguments)","<p>Find a StatRegion by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the signature stat to retrieve\n"],["find","ESP::SubOrganization","ESP/SubOrganization.html#method-c-find","","<p>Find a SubOrganization by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the sub organization to retrieve\n"],["find","ESP::Suppression","ESP/Suppression.html#method-c-find","","<p>Find a Suppression by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the suppression to retrieve\n"],["find","ESP::Suppression::Region","ESP/Suppression/Region.html#method-c-find","(*)","<p>Not Implemented. You cannot search for Suppression::Region.\n<p>Regular ARELlike methods are disabled. Use …\n"],["find","ESP::Suppression::Signature","ESP/Suppression/Signature.html#method-c-find","(*)","<p>Not Implemented. You cannot search for Suppression::Signature.\n<p>Regular ARELlike methods are disabled. …\n"],["find","ESP::Suppression::UniqueIdentifier","ESP/Suppression/UniqueIdentifier.html#method-c-find","(*)","<p>Not Implemented. You cannot search for Suppression::UniqueIdentifier.\n<p>Regular ARELlike methods are disabled. …\n"],["find","ESP::Tag","ESP/Tag.html#method-c-find","(*arguments)","<p>Find a Tag by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the tag to retrieve\n"],["find","ESP::Team","ESP/Team.html#method-c-find","","<p>Find a Team by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the team to retrieve\n"],["find","ESP::User","ESP/User.html#method-c-find","","<p>Find a User by id\n<p>Parameter\n<p><code>id</code> | Required | The ID of the user to retrieve\n"],["first_page","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-first_page","()","<p>Returns a new PaginatedCollection with the first page of results.\n<p>Returns self when on the first page …\n"],["first_page!","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-first_page-21","()","<p>Updates the existing PaginatedCollection object with the first page of data\nwhen not on the first page. …\n"],["for_alert","ESP::CloudTrailEvent","ESP/CloudTrailEvent.html#method-c-for_alert","(alert_id = nil)","<p>Returns a paginated collection of cloud trail events for the given alert_id\nConvenience method to use …\n"],["for_alert","ESP::Tag","ESP/Tag.html#method-c-for_alert","(alert_id = nil)","<p>Returns a paginated collection of tags for the given alert_id Convenience\nmethod to use instead of ::find …\n"],["for_report","ESP::Alert","ESP/Alert.html#method-c-for_report","(report_id = nil, arguments = {})","<p>Returns a paginated collection of alerts for the given report_id\nConvenience method to use instead of …\n"],["for_report","ESP::Stat","ESP/Stat.html#method-c-for_report","(report_id = nil)","<p>Returns all the stats of all the alerts for a report identified by the\nreport_id parameter. Said report …\n"],["for_stat","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-c-for_stat","(stat_id = nil)","<p>Returns a paginated collection of custom_signature stats for the given\nstat_id Convenience method to …\n"],["for_stat","ESP::StatRegion","ESP/StatRegion.html#method-c-for_stat","(stat_id = nil)","<p>Returns a paginated collection of region stats for the given stat_id\nConvenience method to use instead …\n"],["for_stat","ESP::StatService","ESP/StatService.html#method-c-for_stat","(stat_id = nil)","<p>Returns a paginated collection of service stats for the given stat_id\nConvenience method to use instead …\n"],["for_stat","ESP::StatSignature","ESP/StatSignature.html#method-c-for_stat","(stat_id = nil)","<p>Returns a paginated collection of signature stats for the given stat_id\nConvenience method to use instead …\n"],["generate_external_id","ESP::ExternalAccount","ESP/ExternalAccount.html#method-i-generate_external_id","()","<p>Helper to generate an external id. Called automatically when creating an\nExternalAccount if <code>external_id</code> …\n"],["host=","ESP","ESP.html#method-c-host-3D","(host)","<p>Users of the Evident.io marketplace appliance application will need to set\nthe host for their instance. …\n"],["last_page","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-last_page","()","<p>Returns a new PaginatedCollection with the last page of results.\n<p>Returns self when on the last page and …\n"],["last_page!","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-last_page-21","()","<p>Updates the existing PaginatedCollection object with the last page of data\nwhen not on the last page. …\n"],["last_page?","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-last_page-3F","()","<p>Returns whether or not the collection is on the last page.\n"],["last_page_number","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-last_page_number","()","<p>The last page number of data.\n"],["latest_for_teams","ESP::Stat","ESP/Stat.html#method-c-latest_for_teams","()","<p>Returns all the stats for the most recent report of each team accessible by\nthe given API key.\n"],["next_page","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-next_page","()","<p>Returns a new PaginatedCollection with the next page of results.\n<p>Returns self when on the last page and …\n"],["next_page!","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-next_page-21","()","<p>Updates the existing PaginatedCollection object with the last page of data\nwhen not on the last page. …\n"],["next_page?","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-next_page-3F","()","<p>Returns whether or not there is a next page of data in the collection.\n"],["next_page_number","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-next_page_number","()","<p>The next page number of data.\n"],["organization","ESP::CustomSignature","ESP/CustomSignature.html#method-i-organization","","<p>The organization this custom signature belongs to.\n"],["organization","ESP::ExternalAccount","ESP/ExternalAccount.html#method-i-organization","","<p>The organization the external account belongs to.\n"],["organization","ESP::Report","ESP/Report.html#method-i-organization","","<p>The organization the report belongs to.\n"],["organization","ESP::SubOrganization","ESP/SubOrganization.html#method-i-organization","","<p>The organization this sub organization belongs to.\n"],["organization","ESP::Suppression","ESP/Suppression.html#method-i-organization","","<p>The organization this sub organization belongs to.\n"],["organization","ESP::Team","ESP/Team.html#method-i-organization","","<p>The organization this team belongs to.\n"],["organization","ESP::User","ESP/User.html#method-i-organization","","<p>The organization this user belongs to.\n"],["page","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-page","(page_number = nil)","<p>Returns a new PaginatedCollection with the <code>page_number</code> page of\ndata.\n<p>Returns self when <code>page_number</code> == …\n"],["page!","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-page-21","(page_number)","<p>Returns a new PaginatedCollection with the <code>page_number</code> page of\ndata when not already on page <code>page_number</code> …\n"],["previous_page","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-previous_page","()","<p>Returns a new PaginatedCollection with the previous page of results.\n<p>Returns self when on the first page …\n"],["previous_page!","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-previous_page-21","()","<p>Updates the existing PaginatedCollection object with the previous page of\ndata when not on the first …\n"],["previous_page?","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-previous_page-3F","()","<p>Returns whether or not there is a previous page of data in the collection.\n"],["previous_page_number","ActiveResource::PaginatedCollection","ActiveResource/PaginatedCollection.html#method-i-previous_page_number","()","<p>The previous page number of data.\n"],["recent","ESP::Dashboard","ESP/Dashboard.html#method-c-recent","()","<p>Returns a Dashboard object with data from reports run in the last 2 hours\n<p>Note\n<p>The dashboard is used internally …\n"],["region","ESP::Alert","ESP/Alert.html#method-i-region","","<p>Returns the region associated with this alert.\n"],["regions","ESP::Stat","ESP/Stat.html#method-i-regions","","<p>The stats for each region associated with this stat object.\n"],["regions","ESP::Suppression","ESP/Suppression.html#method-i-regions","","<p>The regions affected by this suppression.\n"],["report","ESP::Stat","ESP/Stat.html#method-i-report","","<p>The report these stats are for.\n"],["reports","ESP::Organization","ESP/Organization.html#method-i-reports","","<p>The collection of reports that belong to the organization.\n"],["reports","ESP::SubOrganization","ESP/SubOrganization.html#method-i-reports","","<p>The collection of reports that belong to the sub organization.\n"],["reports","ESP::Team","ESP/Team.html#method-i-reports","","<p>The collection of reports that belong to the team.\n"],["run","ESP::CustomSignature","ESP/CustomSignature.html#method-i-run","(arguments = {})","<p>Run this custom signature instance. Returns a collection of alerts. If not\nsuccessful, returns a CustomSignature …\n"],["run","ESP::CustomSignature","ESP/CustomSignature.html#method-c-run","(arguments = {})","<p>Run a custom signature that has not been saved. Useful for debugging a\ncustom signature. Returns a collection …\n"],["run","ESP::Signature","ESP/Signature.html#method-i-run","(arguments = {})","<p>Run this signature. Returns a collection of alerts. If not successful,\nreturns a Signature object with …\n"],["run!","ESP::CustomSignature","ESP/CustomSignature.html#method-i-run-21","(arguments = {})","<p>Run this custom signature instance. Returns a collection of alerts. Throws\nan error if not successful. …\n"],["run!","ESP::CustomSignature","ESP/CustomSignature.html#method-c-run-21","(arguments = {})","<p>Run a custom signature that has not been saved. Useful for debugging a\ncustom signature. Returns a collection …\n"],["run!","ESP::Signature","ESP/Signature.html#method-i-run-21","(arguments = {})","<p>Run this signature. Returns a collection of alerts. Throws an error if not\nsuccessful.\n<p>Parameters\n<p><code>arguments</code> …\n"],["save","ESP::Alert","ESP/Alert.html#method-i-save","()","<p>Not Implemented. You cannot create or update an Alert.\n"],["save","ESP::CloudTrailEvent","ESP/CloudTrailEvent.html#method-i-save","()","<p>Not Implemented. You cannot create or update a CloudTrailEvent.\n"],["save","ESP::CustomSignature","ESP/CustomSignature.html#method-i-save","","<p>Create or update a CustomSignature\n<p>Valid Attributes\n<p><code>active</code> | Not Required | Flag that determines if this …\n"],["save","ESP::Dashboard","ESP/Dashboard.html#method-i-save","()","<p>Not Implemented. You cannot create or update a Dashboard.\n"],["save","ESP::ExternalAccount","ESP/ExternalAccount.html#method-i-save","","<p>Create or update an ExternalAccount.\n<p>Valid Attributes\n<p><code>arn</code> | Required | Amazon Resource Name for the IAM …\n"],["save","ESP::Organization","ESP/Organization.html#method-i-save","","<p>Update an Organization.\n<p>Valid Attributes\n<p><code>name</code> | Not Required | The new name of the organization\n"],["save","ESP::Region","ESP/Region.html#method-i-save","()","<p>Not Implemented. You cannot create or update a CloudTrailEvent.\n"],["save","ESP::Service","ESP/Service.html#method-i-save","()","<p>Not Implemented. You cannot create or update a Service.\n"],["save","ESP::Signature","ESP/Signature.html#method-i-save","()","<p>Not Implemented. You cannot create or update a Signature.\n"],["save","ESP::Stat","ESP/Stat.html#method-i-save","","<p>Not Implemented. You cannot create or update a Stat.\n"],["save","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-save","","<p>Not Implemented. You cannot create or update a Stat.\n"],["save","ESP::StatRegion","ESP/StatRegion.html#method-i-save","","<p>Not Implemented. You cannot create or update a Stat.\n"],["save","ESP::StatService","ESP/StatService.html#method-i-save","","<p>Not Implemented. You cannot create or update a Stat.\n"],["save","ESP::StatSignature","ESP/StatSignature.html#method-i-save","","<p>Not Implemented. You cannot create or update a Stat.\n"],["save","ESP::SubOrganization","ESP/SubOrganization.html#method-i-save","","<p>Create and update a SubOrganization.\n<p>Parameters\n<p><code>attributes</code> | Required | A hash of run arguments\n"],["save","ESP::Suppression","ESP/Suppression.html#method-i-save","()","<p>Not Implemented. You cannot create or update a Suppression.\n"],["save","ESP::Suppression::Region","ESP/Suppression/Region.html#method-i-save","","<p>Create a suppression for a region.\n<p>If you set an <code>alert_id</code>, set the <code>reason</code> and all\nother params will be …\n"],["save","ESP::Suppression::Signature","ESP/Suppression/Signature.html#method-i-save","","<p>Create a suppression for a signature or custom signature.\n<p>If you set an <code>alert_id</code>, set the <code>reason</code> and all …\n"],["save","ESP::Suppression::UniqueIdentifier","ESP/Suppression/UniqueIdentifier.html#method-i-save","","<p>Create a suppression for a unique identifier.\n<p>Set an <code>alert_id</code>, the suppression will be created based on …\n"],["save","ESP::Tag","ESP/Tag.html#method-i-save","()","<p>Not Implemented. You cannot create or update a Tag.\n"],["save","ESP::Team","ESP/Team.html#method-i-save","","<p>Create and update a Team.\n<p>Valid Attributes when updating\n<p><code>name</code> | Required | The new name of the team\n"],["save","ESP::User","ESP/User.html#method-i-save","()","<p>Not Implemented. You cannot create or update a User.\n"],["secret_access_key","ESP","ESP.html#method-c-secret_access_key","()","<p>Reads the `ESP_SECRET_ACCESS_KEY` environment variable if\n::secret_access_key was not set manually.\n"],["secret_access_key=","ESP","ESP.html#method-c-secret_access_key-3D","(secret_access_key)","<p>Manually set the secret_access_key you created from\nesp.evident.io/settings/api_keys.\n<p>You can optionally …\n"],["service","ESP::Signature","ESP/Signature.html#method-i-service","","<p>The service this signature belongs to.\n"],["services","ESP::Stat","ESP/Stat.html#method-i-services","","<p>The stats for each service associated with this stat object.\n"],["signature","ESP::Alert","ESP/Alert.html#method-i-signature","","<p>Returns the region associated with this alert. Either a signature or\ncustom signature but not both will …\n"],["signatures","ESP::Service","ESP/Service.html#method-i-signatures","","<p>The collection of signatures associated with this service.\n"],["signatures","ESP::Stat","ESP/Stat.html#method-i-signatures","","<p>The stats for each signature associated with this stat object.\n"],["signatures","ESP::Suppression","ESP/Suppression.html#method-i-signatures","()","<p>The signatures being suppressed.\n"],["site","ESP","ESP.html#method-c-site","()","<p>The site the SDK will hit.\n"],["stat","ESP::Report","ESP/Report.html#method-i-stat","()","<p>Returns the stats for this report\n"],["sub_organization","ESP::ExternalAccount","ESP/ExternalAccount.html#method-i-sub_organization","","<p>The sub_organization the external account belongs to.\n"],["sub_organization","ESP::Report","ESP/Report.html#method-i-sub_organization","","<p>The sub_organization the report belongs to.\n"],["sub_organization","ESP::Team","ESP/Team.html#method-i-sub_organization","","<p>The sub organization this team belongs to.\n"],["sub_organizations","ESP::Organization","ESP/Organization.html#method-i-sub_organizations","","<p>The collection of sub_organizations that belong to the organization.\n"],["sub_organizations","ESP::User","ESP/User.html#method-i-sub_organizations","()","<p>The collection of sub organizations that belong to the user.\n"],["suppress","ESP::CustomSignature","ESP/CustomSignature.html#method-i-suppress","(arguments = {})","<p>Create a suppression for this custom signature.\n<p>Parameter\n<p><code>arguments</code> | Required | A hash of signature suppression …\n"],["suppress","ESP::Region","ESP/Region.html#method-i-suppress","(arguments = {})","<p>Create a suppression for this region.\n<p>Parameter\n<p><code>arguments</code> | Required | A hash of region suppression attributes\n…\n"],["suppress","ESP::Signature","ESP/Signature.html#method-i-suppress","(arguments = {})","<p>Create a suppression for this signature.\n<p>Parameter\n<p><code>arguments</code> | Required | A hash of signature suppression …\n"],["suppress_region","ESP::Alert","ESP/Alert.html#method-i-suppress_region","(reason = nil)","<p>Suppress the region associated with this alert.\n<p>Parameter\n<p><code>reason</code> | Required | The reason for creating the …\n"],["suppress_signature","ESP::Alert","ESP/Alert.html#method-i-suppress_signature","(reason = nil)","<p>Suppress the signature associated with this alert.\n<p>Parameter\n<p><code>reason</code> | Required | The reason for creating …\n"],["suppress_unique_identifier","ESP::Alert","ESP/Alert.html#method-i-suppress_unique_identifier","(reason = nil)","<p>Suppress the unique identifier associated with this alert.\n<p>Parameter\n<p><code>reason</code> | Required | The reason for …\n"],["suppression","ESP::Alert","ESP/Alert.html#method-i-suppression","","<p>Returns the suppression associated with this alert. If present the alert\nwas suppressed.\n"],["tags","ESP::Alert","ESP/Alert.html#method-i-tags","","<p>Returns the tags associated with this alert.\n"],["team","ESP::ExternalAccount","ESP/ExternalAccount.html#method-i-team","","<p>The team the external account belongs to.\n"],["team","ESP::Report","ESP/Report.html#method-i-team","","<p>The team the report belongs to.\n"],["teams","ESP::Organization","ESP/Organization.html#method-i-teams","","<p>The collection of teams that belong to the organization.\n"],["teams","ESP::SubOrganization","ESP/SubOrganization.html#method-i-teams","","<p>The collection of teams that belong to the sub organization.\n"],["teams","ESP::User","ESP/User.html#method-i-teams","()","<p>The collection of teams that belong to the user.\n"],["total","ESP::Stat","ESP/Stat.html#method-i-total","",""],["total","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total","",""],["total","ESP::StatRegion","ESP/StatRegion.html#method-i-total","",""],["total","ESP::StatService","ESP/StatService.html#method-i-total","",""],["total","ESP::StatSignature","ESP/StatSignature.html#method-i-total","",""],["total_error","ESP::Stat","ESP/Stat.html#method-i-total_error","",""],["total_error","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_error","",""],["total_error","ESP::StatRegion","ESP/StatRegion.html#method-i-total_error","",""],["total_error","ESP::StatService","ESP/StatService.html#method-i-total_error","",""],["total_error","ESP::StatSignature","ESP/StatSignature.html#method-i-total_error","",""],["total_fail","ESP::Stat","ESP/Stat.html#method-i-total_fail","",""],["total_fail","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_fail","",""],["total_fail","ESP::StatRegion","ESP/StatRegion.html#method-i-total_fail","",""],["total_fail","ESP::StatService","ESP/StatService.html#method-i-total_fail","",""],["total_fail","ESP::StatSignature","ESP/StatSignature.html#method-i-total_fail","",""],["total_info","ESP::Stat","ESP/Stat.html#method-i-total_info","",""],["total_info","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_info","",""],["total_info","ESP::StatRegion","ESP/StatRegion.html#method-i-total_info","",""],["total_info","ESP::StatService","ESP/StatService.html#method-i-total_info","",""],["total_info","ESP::StatSignature","ESP/StatSignature.html#method-i-total_info","",""],["total_new_1d","ESP::Stat","ESP/Stat.html#method-i-total_new_1d","",""],["total_new_1d","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1d","",""],["total_new_1d","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1d","",""],["total_new_1d","ESP::StatService","ESP/StatService.html#method-i-total_new_1d","",""],["total_new_1d","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1d","",""],["total_new_1d_error","ESP::Stat","ESP/Stat.html#method-i-total_new_1d_error","",""],["total_new_1d_error","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1d_error","",""],["total_new_1d_error","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1d_error","",""],["total_new_1d_error","ESP::StatService","ESP/StatService.html#method-i-total_new_1d_error","",""],["total_new_1d_error","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1d_error","",""],["total_new_1d_fail","ESP::Stat","ESP/Stat.html#method-i-total_new_1d_fail","",""],["total_new_1d_fail","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1d_fail","",""],["total_new_1d_fail","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1d_fail","",""],["total_new_1d_fail","ESP::StatService","ESP/StatService.html#method-i-total_new_1d_fail","",""],["total_new_1d_fail","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1d_fail","",""],["total_new_1d_info","ESP::Stat","ESP/Stat.html#method-i-total_new_1d_info","",""],["total_new_1d_info","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1d_info","",""],["total_new_1d_info","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1d_info","",""],["total_new_1d_info","ESP::StatService","ESP/StatService.html#method-i-total_new_1d_info","",""],["total_new_1d_info","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1d_info","",""],["total_new_1d_pass","ESP::Stat","ESP/Stat.html#method-i-total_new_1d_pass","",""],["total_new_1d_pass","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1d_pass","",""],["total_new_1d_pass","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1d_pass","",""],["total_new_1d_pass","ESP::StatService","ESP/StatService.html#method-i-total_new_1d_pass","",""],["total_new_1d_pass","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1d_pass","",""],["total_new_1d_warn","ESP::Stat","ESP/Stat.html#method-i-total_new_1d_warn","",""],["total_new_1d_warn","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1d_warn","",""],["total_new_1d_warn","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1d_warn","",""],["total_new_1d_warn","ESP::StatService","ESP/StatService.html#method-i-total_new_1d_warn","",""],["total_new_1d_warn","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1d_warn","",""],["total_new_1h","ESP::Stat","ESP/Stat.html#method-i-total_new_1h","",""],["total_new_1h","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1h","",""],["total_new_1h","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1h","",""],["total_new_1h","ESP::StatService","ESP/StatService.html#method-i-total_new_1h","",""],["total_new_1h","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1h","",""],["total_new_1h_error","ESP::Stat","ESP/Stat.html#method-i-total_new_1h_error","",""],["total_new_1h_error","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1h_error","",""],["total_new_1h_error","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1h_error","",""],["total_new_1h_error","ESP::StatService","ESP/StatService.html#method-i-total_new_1h_error","",""],["total_new_1h_error","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1h_error","",""],["total_new_1h_fail","ESP::Stat","ESP/Stat.html#method-i-total_new_1h_fail","",""],["total_new_1h_fail","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1h_fail","",""],["total_new_1h_fail","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1h_fail","",""],["total_new_1h_fail","ESP::StatService","ESP/StatService.html#method-i-total_new_1h_fail","",""],["total_new_1h_fail","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1h_fail","",""],["total_new_1h_info","ESP::Stat","ESP/Stat.html#method-i-total_new_1h_info","",""],["total_new_1h_info","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1h_info","",""],["total_new_1h_info","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1h_info","",""],["total_new_1h_info","ESP::StatService","ESP/StatService.html#method-i-total_new_1h_info","",""],["total_new_1h_info","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1h_info","",""],["total_new_1h_pass","ESP::Stat","ESP/Stat.html#method-i-total_new_1h_pass","",""],["total_new_1h_pass","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1h_pass","",""],["total_new_1h_pass","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1h_pass","",""],["total_new_1h_pass","ESP::StatService","ESP/StatService.html#method-i-total_new_1h_pass","",""],["total_new_1h_pass","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1h_pass","",""],["total_new_1h_warn","ESP::Stat","ESP/Stat.html#method-i-total_new_1h_warn","",""],["total_new_1h_warn","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1h_warn","",""],["total_new_1h_warn","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1h_warn","",""],["total_new_1h_warn","ESP::StatService","ESP/StatService.html#method-i-total_new_1h_warn","",""],["total_new_1h_warn","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1h_warn","",""],["total_new_1w","ESP::Stat","ESP/Stat.html#method-i-total_new_1w","",""],["total_new_1w","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1w","",""],["total_new_1w","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1w","",""],["total_new_1w","ESP::StatService","ESP/StatService.html#method-i-total_new_1w","",""],["total_new_1w","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1w","",""],["total_new_1w_error","ESP::Stat","ESP/Stat.html#method-i-total_new_1w_error","",""],["total_new_1w_error","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1w_error","",""],["total_new_1w_error","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1w_error","",""],["total_new_1w_error","ESP::StatService","ESP/StatService.html#method-i-total_new_1w_error","",""],["total_new_1w_error","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1w_error","",""],["total_new_1w_fail","ESP::Stat","ESP/Stat.html#method-i-total_new_1w_fail","",""],["total_new_1w_fail","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1w_fail","",""],["total_new_1w_fail","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1w_fail","",""],["total_new_1w_fail","ESP::StatService","ESP/StatService.html#method-i-total_new_1w_fail","",""],["total_new_1w_fail","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1w_fail","",""],["total_new_1w_info","ESP::Stat","ESP/Stat.html#method-i-total_new_1w_info","",""],["total_new_1w_info","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1w_info","",""],["total_new_1w_info","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1w_info","",""],["total_new_1w_info","ESP::StatService","ESP/StatService.html#method-i-total_new_1w_info","",""],["total_new_1w_info","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1w_info","",""],["total_new_1w_pass","ESP::Stat","ESP/Stat.html#method-i-total_new_1w_pass","",""],["total_new_1w_pass","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1w_pass","",""],["total_new_1w_pass","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1w_pass","",""],["total_new_1w_pass","ESP::StatService","ESP/StatService.html#method-i-total_new_1w_pass","",""],["total_new_1w_pass","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1w_pass","",""],["total_new_1w_warn","ESP::Stat","ESP/Stat.html#method-i-total_new_1w_warn","",""],["total_new_1w_warn","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_new_1w_warn","",""],["total_new_1w_warn","ESP::StatRegion","ESP/StatRegion.html#method-i-total_new_1w_warn","",""],["total_new_1w_warn","ESP::StatService","ESP/StatService.html#method-i-total_new_1w_warn","",""],["total_new_1w_warn","ESP::StatSignature","ESP/StatSignature.html#method-i-total_new_1w_warn","",""],["total_old","ESP::Stat","ESP/Stat.html#method-i-total_old","",""],["total_old","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_old","",""],["total_old","ESP::StatRegion","ESP/StatRegion.html#method-i-total_old","",""],["total_old","ESP::StatService","ESP/StatService.html#method-i-total_old","",""],["total_old","ESP::StatSignature","ESP/StatSignature.html#method-i-total_old","",""],["total_old_error","ESP::Stat","ESP/Stat.html#method-i-total_old_error","",""],["total_old_error","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_old_error","",""],["total_old_error","ESP::StatRegion","ESP/StatRegion.html#method-i-total_old_error","",""],["total_old_error","ESP::StatService","ESP/StatService.html#method-i-total_old_error","",""],["total_old_error","ESP::StatSignature","ESP/StatSignature.html#method-i-total_old_error","",""],["total_old_fail","ESP::Stat","ESP/Stat.html#method-i-total_old_fail","",""],["total_old_fail","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_old_fail","",""],["total_old_fail","ESP::StatRegion","ESP/StatRegion.html#method-i-total_old_fail","",""],["total_old_fail","ESP::StatService","ESP/StatService.html#method-i-total_old_fail","",""],["total_old_fail","ESP::StatSignature","ESP/StatSignature.html#method-i-total_old_fail","",""],["total_old_info","ESP::Stat","ESP/Stat.html#method-i-total_old_info","",""],["total_old_info","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_old_info","",""],["total_old_info","ESP::StatRegion","ESP/StatRegion.html#method-i-total_old_info","",""],["total_old_info","ESP::StatService","ESP/StatService.html#method-i-total_old_info","",""],["total_old_info","ESP::StatSignature","ESP/StatSignature.html#method-i-total_old_info","",""],["total_old_pass","ESP::Stat","ESP/Stat.html#method-i-total_old_pass","",""],["total_old_pass","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_old_pass","",""],["total_old_pass","ESP::StatRegion","ESP/StatRegion.html#method-i-total_old_pass","",""],["total_old_pass","ESP::StatService","ESP/StatService.html#method-i-total_old_pass","",""],["total_old_pass","ESP::StatSignature","ESP/StatSignature.html#method-i-total_old_pass","",""],["total_old_warn","ESP::Stat","ESP/Stat.html#method-i-total_old_warn","",""],["total_old_warn","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_old_warn","",""],["total_old_warn","ESP::StatRegion","ESP/StatRegion.html#method-i-total_old_warn","",""],["total_old_warn","ESP::StatService","ESP/StatService.html#method-i-total_old_warn","",""],["total_old_warn","ESP::StatSignature","ESP/StatSignature.html#method-i-total_old_warn","",""],["total_pass","ESP::Stat","ESP/Stat.html#method-i-total_pass","",""],["total_pass","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_pass","",""],["total_pass","ESP::StatRegion","ESP/StatRegion.html#method-i-total_pass","",""],["total_pass","ESP::StatService","ESP/StatService.html#method-i-total_pass","",""],["total_pass","ESP::StatSignature","ESP/StatSignature.html#method-i-total_pass","",""],["total_suppressed","ESP::Stat","ESP/Stat.html#method-i-total_suppressed","",""],["total_suppressed","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_suppressed","",""],["total_suppressed","ESP::StatRegion","ESP/StatRegion.html#method-i-total_suppressed","",""],["total_suppressed","ESP::StatService","ESP/StatService.html#method-i-total_suppressed","",""],["total_suppressed","ESP::StatSignature","ESP/StatSignature.html#method-i-total_suppressed","",""],["total_suppressed_error","ESP::Stat","ESP/Stat.html#method-i-total_suppressed_error","",""],["total_suppressed_error","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_suppressed_error","",""],["total_suppressed_error","ESP::StatRegion","ESP/StatRegion.html#method-i-total_suppressed_error","",""],["total_suppressed_error","ESP::StatService","ESP/StatService.html#method-i-total_suppressed_error","",""],["total_suppressed_error","ESP::StatSignature","ESP/StatSignature.html#method-i-total_suppressed_error","",""],["total_suppressed_fail","ESP::Stat","ESP/Stat.html#method-i-total_suppressed_fail","",""],["total_suppressed_fail","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_suppressed_fail","",""],["total_suppressed_fail","ESP::StatRegion","ESP/StatRegion.html#method-i-total_suppressed_fail","",""],["total_suppressed_fail","ESP::StatService","ESP/StatService.html#method-i-total_suppressed_fail","",""],["total_suppressed_fail","ESP::StatSignature","ESP/StatSignature.html#method-i-total_suppressed_fail","",""],["total_suppressed_pass","ESP::Stat","ESP/Stat.html#method-i-total_suppressed_pass","",""],["total_suppressed_pass","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_suppressed_pass","",""],["total_suppressed_pass","ESP::StatRegion","ESP/StatRegion.html#method-i-total_suppressed_pass","",""],["total_suppressed_pass","ESP::StatService","ESP/StatService.html#method-i-total_suppressed_pass","",""],["total_suppressed_pass","ESP::StatSignature","ESP/StatSignature.html#method-i-total_suppressed_pass","",""],["total_suppressed_warn","ESP::Stat","ESP/Stat.html#method-i-total_suppressed_warn","",""],["total_suppressed_warn","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_suppressed_warn","",""],["total_suppressed_warn","ESP::StatRegion","ESP/StatRegion.html#method-i-total_suppressed_warn","",""],["total_suppressed_warn","ESP::StatService","ESP/StatService.html#method-i-total_suppressed_warn","",""],["total_suppressed_warn","ESP::StatSignature","ESP/StatSignature.html#method-i-total_suppressed_warn","",""],["total_warn","ESP::Stat","ESP/Stat.html#method-i-total_warn","",""],["total_warn","ESP::StatCustomSignature","ESP/StatCustomSignature.html#method-i-total_warn","",""],["total_warn","ESP::StatRegion","ESP/StatRegion.html#method-i-total_warn","",""],["total_warn","ESP::StatService","ESP/StatService.html#method-i-total_warn","",""],["total_warn","ESP::StatSignature","ESP/StatSignature.html#method-i-total_warn","",""],["update","ESP::ContactRequest","ESP/ContactRequest.html#method-i-update","()","<p>Not Implemented. You cannot update a ContactRequest.\n"],["update","ESP::Report","ESP/Report.html#method-i-update","()","<p>Not Implemented. You cannot create or update a Report.\n"],["update","ESP::Suppression::Region","ESP/Suppression/Region.html#method-i-update","()","<p>Not Implemented. You cannot update a Suppression::Region.\n"],["update","ESP::Suppression::Signature","ESP/Suppression/Signature.html#method-i-update","()","<p>Not Implemented. You cannot update a Suppression::Signature.\n"],["update","ESP::Suppression::UniqueIdentifier","ESP/Suppression/UniqueIdentifier.html#method-i-update","()","<p>Not Implemented. You cannot update a Suppression::UniqueIdentifier.\n"],["users","ESP::Organization","ESP/Organization.html#method-i-users","","<p>The collection of users that belong to the organization.\n"],["README","","README_md.html","","<p>{Build Status]\n{Code Climate]\n{Coverage Status]\n{Gem Version]\n<p>Evident Security Platform SDK\n<p>A Ruby interface …\n"]]}}