auth0-ruby 0.9.1 → 0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +1 -0
  3. data/Gemfile.lock +2 -4
  4. data/auth0.gemspec +0 -1
  5. data/doc/Auth0.html +3 -3
  6. data/doc/Auth0/AccessDenied.html +142 -0
  7. data/doc/Auth0/Api.html +3 -3
  8. data/doc/Auth0/Api/AuthenticationEndpoints.html +3 -7
  9. data/doc/Auth0/Api/V1.html +4 -8
  10. data/doc/Auth0/Api/V1/Clients.html +1 -1
  11. data/doc/Auth0/Api/V1/Connections.html +1 -1
  12. data/doc/Auth0/Api/V1/Logs.html +1 -1
  13. data/doc/Auth0/Api/V1/Rules.html +1 -1
  14. data/doc/Auth0/Api/V1/Users.html +1 -1
  15. data/doc/Auth0/Api/V2.html +193 -0
  16. data/doc/Auth0/Api/V2/Blacklists.html +268 -0
  17. data/doc/Auth0/Api/V2/Clients.html +477 -0
  18. data/doc/Auth0/Api/V2/Jobs.html +277 -0
  19. data/doc/Auth0/Api/V2/Router.html +109 -0
  20. data/doc/Auth0/Api/V2/Stats.html +268 -0
  21. data/doc/Auth0/Api/V2/Users.html +652 -0
  22. data/doc/Auth0/BadRequest.html +1 -1
  23. data/doc/Auth0/Client.html +1 -73
  24. data/doc/Auth0/Exception.html +2 -2
  25. data/doc/Auth0/InvalidParameter.html +142 -0
  26. data/doc/Auth0/Mixins.html +4 -76
  27. data/doc/Auth0/Mixins/HTTPartyProxy.html +1 -1
  28. data/doc/Auth0/Mixins/Initializer.html +20 -14
  29. data/doc/Auth0/NotFound.html +1 -1
  30. data/doc/Auth0/ServerError.html +1 -1
  31. data/doc/Auth0/Unauthorized.html +1 -1
  32. data/doc/Auth0/Unsupported.html +1 -1
  33. data/doc/Auth0/UserIdIsBlank.html +1 -1
  34. data/doc/Auth0Client.html +1 -73
  35. data/doc/_index.html +59 -3
  36. data/doc/class_list.html +1 -1
  37. data/doc/file.README.html +1 -1
  38. data/doc/index.html +1 -1
  39. data/doc/method_list.html +132 -30
  40. data/doc/top-level-namespace.html +1 -1
  41. data/lib/auth0/api/v2.rb +19 -0
  42. data/lib/auth0/api/v2/blacklists.rb +22 -0
  43. data/lib/auth0/api/v2/clients.rb +39 -0
  44. data/lib/auth0/api/v2/jobs.rb +20 -0
  45. data/lib/auth0/api/v2/router.rb +28 -0
  46. data/lib/auth0/api/v2/stats.rb +22 -0
  47. data/lib/auth0/api/v2/users.rb +64 -0
  48. data/lib/auth0/exception.rb +5 -1
  49. data/lib/auth0/mixins.rb +2 -3
  50. data/lib/auth0/mixins/httparty_proxy.rb +7 -1
  51. data/lib/auth0/mixins/initializer.rb +13 -8
  52. data/lib/auth0/version.rb +1 -1
  53. data/spec/lib/auth0/api/v2/blacklists_spec.rb +25 -0
  54. data/spec/lib/auth0/api/v2/clients_spec.rb +55 -0
  55. data/spec/lib/auth0/api/v2/jobs_spec.rb +22 -0
  56. data/spec/lib/auth0/api/v2/stats_spec.rb +23 -0
  57. data/spec/lib/auth0/api/v2/users_spec.rb +73 -0
  58. data/spec/lib/auth0/client_spec.rb +31 -8
  59. data/spec/lib/auth0/mixins/httparty_proxy_spec.rb +60 -1
  60. data/spec/lib/auth0_client_spec.rb +1 -1
  61. data/spec/spec_helper.rb +1 -1
  62. metadata +25 -37
  63. data/doc/Auth0/Mixins/JwtOperations.html +0 -202
  64. data/lib/auth0/mixins/jwt_operations.rb +0 -14
  65. data/spec/lib/auth0/mixins/jwt_operations_spec.rb +0 -31
  66. data/spec/support/stub_class_with_client_secret.rb +0 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9160ec480e40581c73ec2d8b97baed34485bc399
4
- data.tar.gz: 1e63e8aa0dde6ccf9028755da24c7d952d39c824
3
+ metadata.gz: 6bba2d2116dcb5f1bcaeea077bccc41a5fb9e752
4
+ data.tar.gz: 971d53e53641d2b7ced8e3292031069b7f4111e5
5
5
  SHA512:
6
- metadata.gz: 113c8830ef996c3a13a05a9d803dd16db6560c33d63a7e7d44eb0bcc7c31cee65862d1acda7fabd3d17c0f66540ce9bf9242e31e83fd10d8d63446bc4214a68c
7
- data.tar.gz: fb830ed74923711ba86bb1bbee3b8f8a98e7402af52ecc73f26a839d3cd41633da8bd66bbc25fc1b6f9bf52b3506e691c0ff33bdd1350858c9edc05d0a68841f
6
+ metadata.gz: 486bb60e1d6544574cbf20050a78a15318d6f50302639e6260075d44f484063ba3402dcf4051beb48c0b0ccbd5aa3255625cf3a922148a7dead6e69a6f573516
7
+ data.tar.gz: 308d790b214e6d54fee9f426bca6083fa53ae61c7a1a65d280341b0ee8399ed92e69f63c096940f90fc35d0c26429c6824c2c71b783600bc80ef99d2cc4696ba
data/.rspec CHANGED
@@ -1,2 +1,3 @@
1
1
  --color
2
2
  --format documentation
3
+ --fail-fast
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- auth0-ruby (0.9.1)
4
+ auth0-ruby (0.10)
5
5
  httparty (~> 0.13)
6
6
 
7
7
  GEM
@@ -24,8 +24,7 @@ GEM
24
24
  json (~> 1.8)
25
25
  multi_xml (>= 0.5.2)
26
26
  i18n (0.7.0)
27
- json (1.8.1)
28
- jwt (1.0.0)
27
+ json (1.8.2)
29
28
  multi_json (1.10.1)
30
29
  multi_xml (0.5.5)
31
30
  rack (1.5.2)
@@ -62,7 +61,6 @@ DEPENDENCIES
62
61
  auth0-ruby!
63
62
  byebug
64
63
  faker
65
- jwt
66
64
  rack-test
67
65
  rspec (~> 3.1.0, >= 3.1.0)
68
66
  simplecov
@@ -25,6 +25,5 @@ Gem::Specification.new do |s|
25
25
  s.add_development_dependency 'byebug'
26
26
  s.add_development_dependency 'faker'
27
27
  s.add_development_dependency 'yard'
28
- s.add_development_dependency 'jwt'
29
28
  s.license = 'MIT'
30
29
  end
@@ -80,7 +80,7 @@
80
80
 
81
81
  <dt class="r1 last">Defined in:</dt>
82
82
  <dd class="r1 last">lib/auth0.rb<span class="defines">,<br />
83
- lib/auth0/api/v1.rb,<br /> lib/auth0/version.rb,<br /> lib/auth0/exception.rb,<br /> lib/auth0/api/v1/logs.rb,<br /> lib/auth0/api/v1/users.rb,<br /> lib/auth0/api/v1/rules.rb,<br /> lib/auth0/api/v1/clients.rb,<br /> lib/auth0/mixins/initializer.rb,<br /> lib/auth0/api/v1/connections.rb,<br /> lib/auth0/mixins/httparty_proxy.rb,<br /> lib/auth0/mixins/jwt_operations.rb,<br /> lib/auth0/api/authentication_endpoints.rb</span>
83
+ lib/auth0/api/v1.rb,<br /> lib/auth0/api/v2.rb,<br /> lib/auth0/version.rb,<br /> lib/auth0/exception.rb,<br /> lib/auth0/api/v1/logs.rb,<br /> lib/auth0/api/v2/jobs.rb,<br /> lib/auth0/api/v2/stats.rb,<br /> lib/auth0/api/v1/rules.rb,<br /> lib/auth0/api/v1/users.rb,<br /> lib/auth0/api/v2/users.rb,<br /> lib/auth0/api/v2/router.rb,<br /> lib/auth0/api/v1/clients.rb,<br /> lib/auth0/api/v2/clients.rb,<br /> lib/auth0/api/v2/blacklists.rb,<br /> lib/auth0/mixins/initializer.rb,<br /> lib/auth0/api/v1/connections.rb,<br /> lib/auth0/mixins/httparty_proxy.rb,<br /> lib/auth0/api/authentication_endpoints.rb</span>
84
84
  </dd>
85
85
 
86
86
  </dl>
@@ -105,7 +105,7 @@
105
105
 
106
106
 
107
107
 
108
- <strong class="classes">Classes:</strong> <span class='object_link'><a href="Auth0/BadRequest.html" title="Auth0::BadRequest (class)">BadRequest</a></span>, <span class='object_link'><a href="Auth0/Client.html" title="Auth0::Client (class)">Client</a></span>, <span class='object_link'><a href="Auth0/Exception.html" title="Auth0::Exception (class)">Exception</a></span>, <span class='object_link'><a href="Auth0/NotFound.html" title="Auth0::NotFound (class)">NotFound</a></span>, <span class='object_link'><a href="Auth0/ServerError.html" title="Auth0::ServerError (class)">ServerError</a></span>, <span class='object_link'><a href="Auth0/Unauthorized.html" title="Auth0::Unauthorized (class)">Unauthorized</a></span>, <span class='object_link'><a href="Auth0/Unsupported.html" title="Auth0::Unsupported (class)">Unsupported</a></span>, <span class='object_link'><a href="Auth0/UserIdIsBlank.html" title="Auth0::UserIdIsBlank (class)">UserIdIsBlank</a></span>
108
+ <strong class="classes">Classes:</strong> <span class='object_link'><a href="Auth0/AccessDenied.html" title="Auth0::AccessDenied (class)">AccessDenied</a></span>, <span class='object_link'><a href="Auth0/BadRequest.html" title="Auth0::BadRequest (class)">BadRequest</a></span>, <span class='object_link'><a href="Auth0/Client.html" title="Auth0::Client (class)">Client</a></span>, <span class='object_link'><a href="Auth0/Exception.html" title="Auth0::Exception (class)">Exception</a></span>, <span class='object_link'><a href="Auth0/InvalidParameter.html" title="Auth0::InvalidParameter (class)">InvalidParameter</a></span>, <span class='object_link'><a href="Auth0/NotFound.html" title="Auth0::NotFound (class)">NotFound</a></span>, <span class='object_link'><a href="Auth0/ServerError.html" title="Auth0::ServerError (class)">ServerError</a></span>, <span class='object_link'><a href="Auth0/Unauthorized.html" title="Auth0::Unauthorized (class)">Unauthorized</a></span>, <span class='object_link'><a href="Auth0/Unsupported.html" title="Auth0::Unsupported (class)">Unsupported</a></span>, <span class='object_link'><a href="Auth0/UserIdIsBlank.html" title="Auth0::UserIdIsBlank (class)">UserIdIsBlank</a></span>
109
109
 
110
110
 
111
111
  </p>
@@ -144,7 +144,7 @@
144
144
  </div>
145
145
 
146
146
  <div id="footer">
147
- Generated on Wed Feb 4 17:42:51 2015 by
147
+ Generated on Mon Feb 23 01:12:53 2015 by
148
148
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
149
149
  0.8.7.6 (ruby-2.0.0).
150
150
  </div>
@@ -0,0 +1,142 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+ <title>
7
+ Exception: Auth0::AccessDenied
8
+
9
+ &mdash; Documentation by YARD 0.8.7.6
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
14
+
15
+ <link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
16
+
17
+ <script type="text/javascript" charset="utf-8">
18
+ hasFrames = window.top.frames.main ? true : false;
19
+ relpath = '../';
20
+ framesUrl = "../frames.html#!Auth0/AccessDenied.html";
21
+ </script>
22
+
23
+
24
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
25
+
26
+ <script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
27
+
28
+
29
+ </head>
30
+ <body>
31
+ <div id="header">
32
+ <div id="menu">
33
+
34
+ <a href="../_index.html">Index (A)</a> &raquo;
35
+ <span class='title'><span class='object_link'><a href="../Auth0.html" title="Auth0 (module)">Auth0</a></span></span>
36
+ &raquo;
37
+ <span class="title">AccessDenied</span>
38
+
39
+
40
+ <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
41
+ </div>
42
+
43
+ <div id="search">
44
+
45
+ <a class="full_list_link" id="class_list_link"
46
+ href="../class_list.html">
47
+ Class List
48
+ </a>
49
+
50
+ <a class="full_list_link" id="method_list_link"
51
+ href="../method_list.html">
52
+ Method List
53
+ </a>
54
+
55
+ <a class="full_list_link" id="file_list_link"
56
+ href="../file_list.html">
57
+ File List
58
+ </a>
59
+
60
+ </div>
61
+ <div class="clear"></div>
62
+ </div>
63
+
64
+ <iframe id="search_frame"></iframe>
65
+
66
+ <div id="content"><h1>Exception: Auth0::AccessDenied
67
+
68
+
69
+
70
+ </h1>
71
+
72
+ <dl class="box">
73
+
74
+ <dt class="r1">Inherits:</dt>
75
+ <dd class="r1">
76
+ <span class="inheritName"><span class='object_link'><a href="Exception.html" title="Auth0::Exception (class)">Exception</a></span></span>
77
+
78
+ <ul class="fullTree">
79
+ <li>Object</li>
80
+
81
+ <li class="next">StandardError</li>
82
+
83
+ <li class="next"><span class='object_link'><a href="Exception.html" title="Auth0::Exception (class)">Exception</a></span></li>
84
+
85
+ <li class="next">Auth0::AccessDenied</li>
86
+
87
+ </ul>
88
+ <a href="#" class="inheritanceTree">show all</a>
89
+
90
+ </dd>
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+ <dt class="r2 last">Defined in:</dt>
101
+ <dd class="r2 last">lib/auth0/exception.rb</dd>
102
+
103
+ </dl>
104
+ <div class="clear"></div>
105
+
106
+ <h2>Overview</h2><div class="docstring">
107
+ <div class="discussion">
108
+
109
+ <p>Api v2 access denied</p>
110
+
111
+
112
+ </div>
113
+ </div>
114
+ <div class="tags">
115
+
116
+
117
+ </div>
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+ </div>
134
+
135
+ <div id="footer">
136
+ Generated on Mon Feb 23 01:12:53 2015 by
137
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
138
+ 0.8.7.6 (ruby-2.0.0).
139
+ </div>
140
+
141
+ </body>
142
+ </html>
@@ -80,7 +80,7 @@
80
80
 
81
81
  <dt class="r1 last">Defined in:</dt>
82
82
  <dd class="r1 last">lib/auth0/api/v1.rb<span class="defines">,<br />
83
- lib/auth0/api/v1/logs.rb,<br /> lib/auth0/api/v1/users.rb,<br /> lib/auth0/api/v1/rules.rb,<br /> lib/auth0/api/v1/clients.rb,<br /> lib/auth0/api/v1/connections.rb,<br /> lib/auth0/api/authentication_endpoints.rb</span>
83
+ lib/auth0/api/v2.rb,<br /> lib/auth0/api/v1/logs.rb,<br /> lib/auth0/api/v2/jobs.rb,<br /> lib/auth0/api/v2/stats.rb,<br /> lib/auth0/api/v1/rules.rb,<br /> lib/auth0/api/v1/users.rb,<br /> lib/auth0/api/v2/users.rb,<br /> lib/auth0/api/v2/router.rb,<br /> lib/auth0/api/v1/clients.rb,<br /> lib/auth0/api/v2/clients.rb,<br /> lib/auth0/api/v2/blacklists.rb,<br /> lib/auth0/api/v1/connections.rb,<br /> lib/auth0/api/authentication_endpoints.rb</span>
84
84
  </dd>
85
85
 
86
86
  </dl>
@@ -101,7 +101,7 @@
101
101
  <p class="children">
102
102
 
103
103
 
104
- <strong class="modules">Modules:</strong> <span class='object_link'><a href="Api/AuthenticationEndpoints.html" title="Auth0::Api::AuthenticationEndpoints (module)">AuthenticationEndpoints</a></span>, <span class='object_link'><a href="Api/V1.html" title="Auth0::Api::V1 (module)">V1</a></span>
104
+ <strong class="modules">Modules:</strong> <span class='object_link'><a href="Api/AuthenticationEndpoints.html" title="Auth0::Api::AuthenticationEndpoints (module)">AuthenticationEndpoints</a></span>, <span class='object_link'><a href="Api/V1.html" title="Auth0::Api::V1 (module)">V1</a></span>, <span class='object_link'><a href="Api/V2.html" title="Auth0::Api::V2 (module)">V2</a></span>
105
105
 
106
106
 
107
107
 
@@ -119,7 +119,7 @@
119
119
  </div>
120
120
 
121
121
  <div id="footer">
122
- Generated on Wed Feb 4 17:42:51 2015 by
122
+ Generated on Mon Feb 23 01:12:53 2015 by
123
123
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
124
124
  0.8.7.6 (ruby-2.0.0).
125
125
  </div>
@@ -77,13 +77,9 @@
77
77
 
78
78
 
79
79
 
80
- <dt class="r1">Included in:</dt>
81
- <dd class="r1"><span class='object_link'><a href="../Mixins.html" title="Auth0::Mixins (module)">Mixins</a></span></dd>
82
-
83
-
84
80
 
85
- <dt class="r2 last">Defined in:</dt>
86
- <dd class="r2 last">lib/auth0/api/authentication_endpoints.rb</dd>
81
+ <dt class="r1 last">Defined in:</dt>
82
+ <dd class="r1 last">lib/auth0/api/authentication_endpoints.rb</dd>
87
83
 
88
84
  </dl>
89
85
  <div class="clear"></div>
@@ -587,7 +583,7 @@ authentication endpoints</p>
587
583
  </div>
588
584
 
589
585
  <div id="footer">
590
- Generated on Wed Feb 4 17:42:51 2015 by
586
+ Generated on Mon Feb 23 01:12:53 2015 by
591
587
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
592
588
  0.8.7.6 (ruby-2.0.0).
593
589
  </div>
@@ -81,14 +81,10 @@
81
81
 
82
82
 
83
83
 
84
- <dt class="r2">Included in:</dt>
85
- <dd class="r2"><span class='object_link'><a href="../Mixins.html" title="Auth0::Mixins (module)">Mixins</a></span></dd>
86
-
87
-
88
84
 
89
- <dt class="r1 last">Defined in:</dt>
90
- <dd class="r1 last">lib/auth0/api/v1.rb<span class="defines">,<br />
91
- lib/auth0/api/v1/logs.rb,<br /> lib/auth0/api/v1/users.rb,<br /> lib/auth0/api/v1/rules.rb,<br /> lib/auth0/api/v1/clients.rb,<br /> lib/auth0/api/v1/connections.rb</span>
85
+ <dt class="r2 last">Defined in:</dt>
86
+ <dd class="r2 last">lib/auth0/api/v1.rb<span class="defines">,<br />
87
+ lib/auth0/api/v1/logs.rb,<br /> lib/auth0/api/v1/rules.rb,<br /> lib/auth0/api/v1/users.rb,<br /> lib/auth0/api/v1/clients.rb,<br /> lib/auth0/api/v1/connections.rb</span>
92
88
  </dd>
93
89
 
94
90
  </dl>
@@ -183,7 +179,7 @@ V1</p>
183
179
  </div>
184
180
 
185
181
  <div id="footer">
186
- Generated on Wed Feb 4 17:42:51 2015 by
182
+ Generated on Mon Feb 23 01:12:53 2015 by
187
183
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
188
184
  0.8.7.6 (ruby-2.0.0).
189
185
  </div>
@@ -431,7 +431,7 @@
431
431
  </div>
432
432
 
433
433
  <div id="footer">
434
- Generated on Wed Feb 4 17:42:51 2015 by
434
+ Generated on Mon Feb 23 01:12:53 2015 by
435
435
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
436
436
  0.8.7.6 (ruby-2.0.0).
437
437
  </div>
@@ -497,7 +497,7 @@
497
497
  </div>
498
498
 
499
499
  <div id="footer">
500
- Generated on Wed Feb 4 17:42:51 2015 by
500
+ Generated on Mon Feb 23 01:12:53 2015 by
501
501
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
502
502
  0.8.7.6 (ruby-2.0.0).
503
503
  </div>
@@ -357,7 +357,7 @@
357
357
  </div>
358
358
 
359
359
  <div id="footer">
360
- Generated on Wed Feb 4 17:42:51 2015 by
360
+ Generated on Mon Feb 23 01:12:53 2015 by
361
361
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
362
362
  0.8.7.6 (ruby-2.0.0).
363
363
  </div>
@@ -430,7 +430,7 @@ href="https://auth0.com/docs/api#!#put--api-rules--rule-name">auth0.com/docs/api
430
430
  </div>
431
431
 
432
432
  <div id="footer">
433
- Generated on Wed Feb 4 17:42:51 2015 by
433
+ Generated on Mon Feb 23 01:12:53 2015 by
434
434
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
435
435
  0.8.7.6 (ruby-2.0.0).
436
436
  </div>
@@ -1608,7 +1608,7 @@ instead</p>
1608
1608
  </div>
1609
1609
 
1610
1610
  <div id="footer">
1611
- Generated on Wed Feb 4 17:42:51 2015 by
1611
+ Generated on Mon Feb 23 01:12:53 2015 by
1612
1612
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1613
1613
  0.8.7.6 (ruby-2.0.0).
1614
1614
  </div>
@@ -0,0 +1,193 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+ <title>
7
+ Module: Auth0::Api::V2
8
+
9
+ &mdash; Documentation by YARD 0.8.7.6
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="../../css/style.css" type="text/css" charset="utf-8" />
14
+
15
+ <link rel="stylesheet" href="../../css/common.css" type="text/css" charset="utf-8" />
16
+
17
+ <script type="text/javascript" charset="utf-8">
18
+ hasFrames = window.top.frames.main ? true : false;
19
+ relpath = '../../';
20
+ framesUrl = "../../frames.html#!Auth0/Api/V2.html";
21
+ </script>
22
+
23
+
24
+ <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
25
+
26
+ <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
27
+
28
+
29
+ </head>
30
+ <body>
31
+ <div id="header">
32
+ <div id="menu">
33
+
34
+ <a href="../../_index.html">Index (V)</a> &raquo;
35
+ <span class='title'><span class='object_link'><a href="../../Auth0.html" title="Auth0 (module)">Auth0</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Api.html" title="Auth0::Api (module)">Api</a></span></span>
36
+ &raquo;
37
+ <span class="title">V2</span>
38
+
39
+
40
+ <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
41
+ </div>
42
+
43
+ <div id="search">
44
+
45
+ <a class="full_list_link" id="class_list_link"
46
+ href="../../class_list.html">
47
+ Class List
48
+ </a>
49
+
50
+ <a class="full_list_link" id="method_list_link"
51
+ href="../../method_list.html">
52
+ Method List
53
+ </a>
54
+
55
+ <a class="full_list_link" id="file_list_link"
56
+ href="../../file_list.html">
57
+ File List
58
+ </a>
59
+
60
+ </div>
61
+ <div class="clear"></div>
62
+ </div>
63
+
64
+ <iframe id="search_frame"></iframe>
65
+
66
+ <div id="content"><h1>Module: Auth0::Api::V2
67
+
68
+
69
+
70
+ </h1>
71
+
72
+ <dl class="box">
73
+
74
+
75
+
76
+
77
+
78
+ <dt class="r1">Includes:</dt>
79
+ <dd class="r1"><span class='object_link'><a href="V2/Blacklists.html" title="Auth0::Api::V2::Blacklists (module)">Blacklists</a></span>, <span class='object_link'><a href="V2/Clients.html" title="Auth0::Api::V2::Clients (module)">Clients</a></span>, <span class='object_link'><a href="V2/Jobs.html" title="Auth0::Api::V2::Jobs (module)">Jobs</a></span>, <span class='object_link'><a href="V2/Router.html" title="Auth0::Api::V2::Router (module)">Router</a></span>, <span class='object_link'><a href="V2/Stats.html" title="Auth0::Api::V2::Stats (module)">Stats</a></span>, <span class='object_link'><a href="V2/Users.html" title="Auth0::Api::V2::Users (module)">Users</a></span></dd>
80
+
81
+
82
+
83
+
84
+
85
+ <dt class="r2 last">Defined in:</dt>
86
+ <dd class="r2 last">lib/auth0/api/v2.rb<span class="defines">,<br />
87
+ lib/auth0/api/v2/jobs.rb,<br /> lib/auth0/api/v2/stats.rb,<br /> lib/auth0/api/v2/users.rb,<br /> lib/auth0/api/v2/router.rb,<br /> lib/auth0/api/v2/clients.rb,<br /> lib/auth0/api/v2/blacklists.rb</span>
88
+ </dd>
89
+
90
+ </dl>
91
+ <div class="clear"></div>
92
+
93
+ <h2>Overview</h2><div class="docstring">
94
+ <div class="discussion">
95
+
96
+ <p><a href="https://auth0.com/docs/apiv2">auth0.com/docs/apiv2</a></p>
97
+
98
+
99
+ </div>
100
+ </div>
101
+ <div class="tags">
102
+
103
+
104
+ </div><h2>Defined Under Namespace</h2>
105
+ <p class="children">
106
+
107
+
108
+ <strong class="modules">Modules:</strong> <span class='object_link'><a href="V2/Blacklists.html" title="Auth0::Api::V2::Blacklists (module)">Blacklists</a></span>, <span class='object_link'><a href="V2/Clients.html" title="Auth0::Api::V2::Clients (module)">Clients</a></span>, <span class='object_link'><a href="V2/Jobs.html" title="Auth0::Api::V2::Jobs (module)">Jobs</a></span>, <span class='object_link'><a href="V2/Router.html" title="Auth0::Api::V2::Router (module)">Router</a></span>, <span class='object_link'><a href="V2/Stats.html" title="Auth0::Api::V2::Stats (module)">Stats</a></span>, <span class='object_link'><a href="V2/Users.html" title="Auth0::Api::V2::Users (module)">Users</a></span>
109
+
110
+
111
+
112
+
113
+ </p>
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+ <h2>Method Summary</h2>
129
+
130
+ <h3 class="inherited">Methods included from <span class='object_link'><a href="V2/Stats.html" title="Auth0::Api::V2::Stats (module)">Stats</a></span></h3>
131
+ <p class="inherited"><span class='object_link'><a href="V2/Stats.html#active_users-instance_method" title="Auth0::Api::V2::Stats#active_users (method)">#active_users</a></span>, <span class='object_link'><a href="V2/Stats.html#daily_stats-instance_method" title="Auth0::Api::V2::Stats#daily_stats (method)">#daily_stats</a></span></p>
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+ <h3 class="inherited">Methods included from <span class='object_link'><a href="V2/Jobs.html" title="Auth0::Api::V2::Jobs (module)">Jobs</a></span></h3>
142
+ <p class="inherited"><span class='object_link'><a href="V2/Jobs.html#create_job-instance_method" title="Auth0::Api::V2::Jobs#create_job (method)">#create_job</a></span>, <span class='object_link'><a href="V2/Jobs.html#get_job-instance_method" title="Auth0::Api::V2::Jobs#get_job (method)">#get_job</a></span></p>
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+ <h3 class="inherited">Methods included from <span class='object_link'><a href="V2/Blacklists.html" title="Auth0::Api::V2::Blacklists (module)">Blacklists</a></span></h3>
153
+ <p class="inherited"><span class='object_link'><a href="V2/Blacklists.html#add_token_to_blacklist-instance_method" title="Auth0::Api::V2::Blacklists#add_token_to_blacklist (method)">#add_token_to_blacklist</a></span>, <span class='object_link'><a href="V2/Blacklists.html#blacklisted_tokens-instance_method" title="Auth0::Api::V2::Blacklists#blacklisted_tokens (method)">#blacklisted_tokens</a></span></p>
154
+
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+ <h3 class="inherited">Methods included from <span class='object_link'><a href="V2/Users.html" title="Auth0::Api::V2::Users (module)">Users</a></span></h3>
164
+ <p class="inherited"><span class='object_link'><a href="V2/Users.html#create_user-instance_method" title="Auth0::Api::V2::Users#create_user (method)">#create_user</a></span>, <span class='object_link'><a href="V2/Users.html#delete_user-instance_method" title="Auth0::Api::V2::Users#delete_user (method)">#delete_user</a></span>, <span class='object_link'><a href="V2/Users.html#delete_user_provider-instance_method" title="Auth0::Api::V2::Users#delete_user_provider (method)">#delete_user_provider</a></span>, <span class='object_link'><a href="V2/Users.html#delete_users-instance_method" title="Auth0::Api::V2::Users#delete_users (method)">#delete_users</a></span>, <span class='object_link'><a href="V2/Users.html#patch_user-instance_method" title="Auth0::Api::V2::Users#patch_user (method)">#patch_user</a></span>, <span class='object_link'><a href="V2/Users.html#user-instance_method" title="Auth0::Api::V2::Users#user (method)">#user</a></span>, <span class='object_link'><a href="V2/Users.html#users-instance_method" title="Auth0::Api::V2::Users#users (method)">#users</a></span></p>
165
+
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+ <h3 class="inherited">Methods included from <span class='object_link'><a href="V2/Clients.html" title="Auth0::Api::V2::Clients (module)">Clients</a></span></h3>
175
+ <p class="inherited"><span class='object_link'><a href="V2/Clients.html#client-instance_method" title="Auth0::Api::V2::Clients#client (method)">#client</a></span>, <span class='object_link'><a href="V2/Clients.html#clients-instance_method" title="Auth0::Api::V2::Clients#clients (method)">#clients</a></span>, <span class='object_link'><a href="V2/Clients.html#create_client-instance_method" title="Auth0::Api::V2::Clients#create_client (method)">#create_client</a></span>, <span class='object_link'><a href="V2/Clients.html#delete_client-instance_method" title="Auth0::Api::V2::Clients#delete_client (method)">#delete_client</a></span>, <span class='object_link'><a href="V2/Clients.html#patch_client-instance_method" title="Auth0::Api::V2::Clients#patch_client (method)">#patch_client</a></span></p>
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+ </div>
185
+
186
+ <div id="footer">
187
+ Generated on Mon Feb 23 01:12:53 2015 by
188
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
189
+ 0.8.7.6 (ruby-2.0.0).
190
+ </div>
191
+
192
+ </body>
193
+ </html>