ory-client-client 0.0.1.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (248) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/README.md +231 -0
  4. data/Rakefile +10 -0
  5. data/docs/AuthenticateOKBody.md +20 -0
  6. data/docs/ContainerChangeResponseItem.md +20 -0
  7. data/docs/ContainerCreateCreatedBody.md +20 -0
  8. data/docs/ContainerTopOKBody.md +20 -0
  9. data/docs/ContainerUpdateOKBody.md +18 -0
  10. data/docs/ContainerWaitOKBody.md +20 -0
  11. data/docs/ContainerWaitOKBodyError.md +18 -0
  12. data/docs/CreateIdentity.md +20 -0
  13. data/docs/CreateRecoveryLink.md +20 -0
  14. data/docs/DefaultApi.md +2902 -0
  15. data/docs/ErrorContainer.md +20 -0
  16. data/docs/ErrorResponse.md +18 -0
  17. data/docs/GenericError.md +30 -0
  18. data/docs/GraphDriverData.md +20 -0
  19. data/docs/HealthNotReadyStatus.md +18 -0
  20. data/docs/HealthStatus.md +18 -0
  21. data/docs/IdResponse.md +18 -0
  22. data/docs/Identity.md +28 -0
  23. data/docs/IdentityCredentials.md +22 -0
  24. data/docs/ImageDeleteResponseItem.md +20 -0
  25. data/docs/ImageSummary.md +36 -0
  26. data/docs/InlineResponse200.md +18 -0
  27. data/docs/InlineResponse2001.md +18 -0
  28. data/docs/InlineResponse503.md +18 -0
  29. data/docs/JsonError.md +18 -0
  30. data/docs/LoginFlow.md +32 -0
  31. data/docs/LoginViaApiResponse.md +20 -0
  32. data/docs/Meta.md +18 -0
  33. data/docs/Plugin.md +28 -0
  34. data/docs/PluginConfig.md +48 -0
  35. data/docs/PluginConfigArgs.md +24 -0
  36. data/docs/PluginConfigInterface.md +20 -0
  37. data/docs/PluginConfigLinux.md +22 -0
  38. data/docs/PluginConfigNetwork.md +18 -0
  39. data/docs/PluginConfigRootfs.md +20 -0
  40. data/docs/PluginConfigUser.md +20 -0
  41. data/docs/PluginDevice.md +24 -0
  42. data/docs/PluginEnv.md +24 -0
  43. data/docs/PluginInterfaceType.md +22 -0
  44. data/docs/PluginMount.md +30 -0
  45. data/docs/PluginSettings.md +24 -0
  46. data/docs/Port.md +24 -0
  47. data/docs/RecoveryAddress.md +22 -0
  48. data/docs/RecoveryFlow.md +32 -0
  49. data/docs/RecoveryLink.md +20 -0
  50. data/docs/RegistrationFlow.md +30 -0
  51. data/docs/RegistrationViaApiResponse.md +22 -0
  52. data/docs/RevokeSession.md +18 -0
  53. data/docs/ServiceUpdateResponse.md +18 -0
  54. data/docs/Session.md +28 -0
  55. data/docs/SettingsFlow.md +34 -0
  56. data/docs/SettingsProfileFormConfig.md +24 -0
  57. data/docs/SettingsViaApiResponse.md +20 -0
  58. data/docs/SubmitSelfServiceBrowserSettingsOIDCFlowPayload.md +22 -0
  59. data/docs/SubmitSelfServiceLoginFlow.md +47 -0
  60. data/docs/SubmitSelfServiceLoginFlowWithPasswordMethod.md +24 -0
  61. data/docs/SubmitSelfServiceRecoveryFlowWithLinkMethod.md +20 -0
  62. data/docs/SubmitSelfServiceRegistrationFlow.md +47 -0
  63. data/docs/SubmitSelfServiceRegistrationFlowWithPasswordMethod.md +24 -0
  64. data/docs/SubmitSelfServiceSettingsFlow.md +49 -0
  65. data/docs/SubmitSelfServiceSettingsFlowWithPasswordMethod.md +22 -0
  66. data/docs/SubmitSelfServiceSettingsFlowWithProfileMethod.md +22 -0
  67. data/docs/SubmitSelfServiceVerificationFlowWithLinkMethod.md +20 -0
  68. data/docs/UiContainer.md +24 -0
  69. data/docs/UiNode.md +26 -0
  70. data/docs/UiNodeAnchorAttributes.md +20 -0
  71. data/docs/UiNodeAttributes.md +53 -0
  72. data/docs/UiNodeImageAttributes.md +18 -0
  73. data/docs/UiNodeInputAttributes.md +30 -0
  74. data/docs/UiNodeInputAttributesValue.md +51 -0
  75. data/docs/UiNodeTextAttributes.md +18 -0
  76. data/docs/UiText.md +24 -0
  77. data/docs/UpdateIdentity.md +20 -0
  78. data/docs/VerifiableIdentityAddress.md +32 -0
  79. data/docs/VerificationFlow.md +32 -0
  80. data/docs/Version.md +18 -0
  81. data/docs/Volume.md +34 -0
  82. data/docs/VolumeUsageData.md +20 -0
  83. data/lib/ory-client-client.rb +117 -0
  84. data/lib/ory-client-client/api/default_api.rb +2690 -0
  85. data/lib/ory-client-client/api_client.rb +390 -0
  86. data/lib/ory-client-client/api_error.rb +57 -0
  87. data/lib/ory-client-client/configuration.rb +297 -0
  88. data/lib/ory-client-client/models/authenticate_ok_body.rb +240 -0
  89. data/lib/ory-client-client/models/container_change_response_item.rb +240 -0
  90. data/lib/ory-client-client/models/container_create_created_body.rb +242 -0
  91. data/lib/ory-client-client/models/container_top_ok_body.rb +244 -0
  92. data/lib/ory-client-client/models/container_update_ok_body.rb +227 -0
  93. data/lib/ory-client-client/models/container_wait_ok_body.rb +239 -0
  94. data/lib/ory-client-client/models/container_wait_ok_body_error.rb +220 -0
  95. data/lib/ory-client-client/models/create_identity.rb +239 -0
  96. data/lib/ory-client-client/models/create_recovery_link.rb +250 -0
  97. data/lib/ory-client-client/models/error_container.rb +240 -0
  98. data/lib/ory-client-client/models/error_response.rb +224 -0
  99. data/lib/ory-client-client/models/generic_error.rb +286 -0
  100. data/lib/ory-client-client/models/graph_driver_data.rb +241 -0
  101. data/lib/ory-client-client/models/health_not_ready_status.rb +221 -0
  102. data/lib/ory-client-client/models/health_status.rb +219 -0
  103. data/lib/ory-client-client/models/id_response.rb +225 -0
  104. data/lib/ory-client-client/models/identity.rb +289 -0
  105. data/lib/ory-client-client/models/identity_credentials.rb +241 -0
  106. data/lib/ory-client-client/models/image_delete_response_item.rb +230 -0
  107. data/lib/ory-client-client/models/image_summary.rb +366 -0
  108. data/lib/ory-client-client/models/inline_response200.rb +224 -0
  109. data/lib/ory-client-client/models/inline_response2001.rb +224 -0
  110. data/lib/ory-client-client/models/inline_response503.rb +226 -0
  111. data/lib/ory-client-client/models/json_error.rb +224 -0
  112. data/lib/ory-client-client/models/login_flow.rb +318 -0
  113. data/lib/ory-client-client/models/login_via_api_response.rb +239 -0
  114. data/lib/ory-client-client/models/meta.rb +219 -0
  115. data/lib/ory-client-client/models/plugin.rb +288 -0
  116. data/lib/ory-client-client/models/plugin_config.rb +434 -0
  117. data/lib/ory-client-client/models/plugin_config_args.rb +274 -0
  118. data/lib/ory-client-client/models/plugin_config_interface.rb +242 -0
  119. data/lib/ory-client-client/models/plugin_config_linux.rb +259 -0
  120. data/lib/ory-client-client/models/plugin_config_network.rb +225 -0
  121. data/lib/ory-client-client/models/plugin_config_rootfs.rb +232 -0
  122. data/lib/ory-client-client/models/plugin_config_user.rb +230 -0
  123. data/lib/ory-client-client/models/plugin_device.rb +272 -0
  124. data/lib/ory-client-client/models/plugin_env.rb +272 -0
  125. data/lib/ory-client-client/models/plugin_interface_type.rb +255 -0
  126. data/lib/ory-client-client/models/plugin_mount.rb +319 -0
  127. data/lib/ory-client-client/models/plugin_settings.rb +277 -0
  128. data/lib/ory-client-client/models/port.rb +260 -0
  129. data/lib/ory-client-client/models/recovery_address.rb +251 -0
  130. data/lib/ory-client-client/models/recovery_flow.rb +317 -0
  131. data/lib/ory-client-client/models/recovery_link.rb +234 -0
  132. data/lib/ory-client-client/models/registration_flow.rb +302 -0
  133. data/lib/ory-client-client/models/registration_via_api_response.rb +248 -0
  134. data/lib/ory-client-client/models/revoke_session.rb +224 -0
  135. data/lib/ory-client-client/models/service_update_response.rb +222 -0
  136. data/lib/ory-client-client/models/session.rb +288 -0
  137. data/lib/ory-client-client/models/settings_flow.rb +331 -0
  138. data/lib/ory-client-client/models/settings_profile_form_config.rb +266 -0
  139. data/lib/ory-client-client/models/settings_via_api_response.rb +238 -0
  140. data/lib/ory-client-client/models/submit_self_service_browser_settings_oidc_flow_payload.rb +239 -0
  141. data/lib/ory-client-client/models/submit_self_service_login_flow.rb +104 -0
  142. data/lib/ory-client-client/models/submit_self_service_login_flow_with_password_method.rb +249 -0
  143. data/lib/ory-client-client/models/submit_self_service_recovery_flow_with_link_method.rb +229 -0
  144. data/lib/ory-client-client/models/submit_self_service_registration_flow.rb +104 -0
  145. data/lib/ory-client-client/models/submit_self_service_registration_flow_with_password_method.rb +276 -0
  146. data/lib/ory-client-client/models/submit_self_service_settings_flow.rb +105 -0
  147. data/lib/ory-client-client/models/submit_self_service_settings_flow_with_password_method.rb +244 -0
  148. data/lib/ory-client-client/models/submit_self_service_settings_flow_with_profile_method.rb +245 -0
  149. data/lib/ory-client-client/models/submit_self_service_verification_flow_with_link_method.rb +230 -0
  150. data/lib/ory-client-client/models/ui_container.rb +267 -0
  151. data/lib/ory-client-client/models/ui_node.rb +282 -0
  152. data/lib/ory-client-client/models/ui_node_anchor_attributes.rb +238 -0
  153. data/lib/ory-client-client/models/ui_node_attributes.rb +107 -0
  154. data/lib/ory-client-client/models/ui_node_image_attributes.rb +224 -0
  155. data/lib/ory-client-client/models/ui_node_input_attributes.rb +292 -0
  156. data/lib/ory-client-client/models/ui_node_input_attributes_value.rb +106 -0
  157. data/lib/ory-client-client/models/ui_node_text_attributes.rb +223 -0
  158. data/lib/ory-client-client/models/ui_text.rb +262 -0
  159. data/lib/ory-client-client/models/update_identity.rb +234 -0
  160. data/lib/ory-client-client/models/verifiable_identity_address.rb +313 -0
  161. data/lib/ory-client-client/models/verification_flow.rb +307 -0
  162. data/lib/ory-client-client/models/version.rb +219 -0
  163. data/lib/ory-client-client/models/volume.rb +335 -0
  164. data/lib/ory-client-client/models/volume_usage_data.rb +240 -0
  165. data/lib/ory-client-client/version.rb +15 -0
  166. data/ory-client-client.gemspec +38 -0
  167. data/spec/api/default_api_spec.rb +544 -0
  168. data/spec/api_client_spec.rb +226 -0
  169. data/spec/configuration_spec.rb +42 -0
  170. data/spec/models/authenticate_ok_body_spec.rb +40 -0
  171. data/spec/models/container_change_response_item_spec.rb +40 -0
  172. data/spec/models/container_create_created_body_spec.rb +40 -0
  173. data/spec/models/container_top_ok_body_spec.rb +40 -0
  174. data/spec/models/container_update_ok_body_spec.rb +34 -0
  175. data/spec/models/container_wait_ok_body_error_spec.rb +34 -0
  176. data/spec/models/container_wait_ok_body_spec.rb +40 -0
  177. data/spec/models/create_identity_spec.rb +40 -0
  178. data/spec/models/create_recovery_link_spec.rb +40 -0
  179. data/spec/models/error_container_spec.rb +40 -0
  180. data/spec/models/error_response_spec.rb +34 -0
  181. data/spec/models/generic_error_spec.rb +70 -0
  182. data/spec/models/graph_driver_data_spec.rb +40 -0
  183. data/spec/models/health_not_ready_status_spec.rb +34 -0
  184. data/spec/models/health_status_spec.rb +34 -0
  185. data/spec/models/id_response_spec.rb +34 -0
  186. data/spec/models/identity_credentials_spec.rb +46 -0
  187. data/spec/models/identity_spec.rb +64 -0
  188. data/spec/models/image_delete_response_item_spec.rb +40 -0
  189. data/spec/models/image_summary_spec.rb +88 -0
  190. data/spec/models/inline_response2001_spec.rb +34 -0
  191. data/spec/models/inline_response200_spec.rb +34 -0
  192. data/spec/models/inline_response503_spec.rb +34 -0
  193. data/spec/models/json_error_spec.rb +34 -0
  194. data/spec/models/login_flow_spec.rb +76 -0
  195. data/spec/models/login_via_api_response_spec.rb +40 -0
  196. data/spec/models/meta_spec.rb +34 -0
  197. data/spec/models/plugin_config_args_spec.rb +52 -0
  198. data/spec/models/plugin_config_interface_spec.rb +40 -0
  199. data/spec/models/plugin_config_linux_spec.rb +46 -0
  200. data/spec/models/plugin_config_network_spec.rb +34 -0
  201. data/spec/models/plugin_config_rootfs_spec.rb +40 -0
  202. data/spec/models/plugin_config_spec.rb +124 -0
  203. data/spec/models/plugin_config_user_spec.rb +40 -0
  204. data/spec/models/plugin_device_spec.rb +52 -0
  205. data/spec/models/plugin_env_spec.rb +52 -0
  206. data/spec/models/plugin_interface_type_spec.rb +46 -0
  207. data/spec/models/plugin_mount_spec.rb +70 -0
  208. data/spec/models/plugin_settings_spec.rb +52 -0
  209. data/spec/models/plugin_spec.rb +64 -0
  210. data/spec/models/port_spec.rb +52 -0
  211. data/spec/models/recovery_address_spec.rb +46 -0
  212. data/spec/models/recovery_flow_spec.rb +76 -0
  213. data/spec/models/recovery_link_spec.rb +40 -0
  214. data/spec/models/registration_flow_spec.rb +70 -0
  215. data/spec/models/registration_via_api_response_spec.rb +46 -0
  216. data/spec/models/revoke_session_spec.rb +34 -0
  217. data/spec/models/service_update_response_spec.rb +34 -0
  218. data/spec/models/session_spec.rb +64 -0
  219. data/spec/models/settings_flow_spec.rb +82 -0
  220. data/spec/models/settings_profile_form_config_spec.rb +52 -0
  221. data/spec/models/settings_via_api_response_spec.rb +40 -0
  222. data/spec/models/submit_self_service_browser_settings_oidc_flow_payload_spec.rb +46 -0
  223. data/spec/models/submit_self_service_login_flow_spec.rb +31 -0
  224. data/spec/models/submit_self_service_login_flow_with_password_method_spec.rb +52 -0
  225. data/spec/models/submit_self_service_recovery_flow_with_link_method_spec.rb +40 -0
  226. data/spec/models/submit_self_service_registration_flow_spec.rb +31 -0
  227. data/spec/models/submit_self_service_registration_flow_with_password_method_spec.rb +52 -0
  228. data/spec/models/submit_self_service_settings_flow_spec.rb +31 -0
  229. data/spec/models/submit_self_service_settings_flow_with_password_method_spec.rb +46 -0
  230. data/spec/models/submit_self_service_settings_flow_with_profile_method_spec.rb +46 -0
  231. data/spec/models/submit_self_service_verification_flow_with_link_method_spec.rb +40 -0
  232. data/spec/models/ui_container_spec.rb +52 -0
  233. data/spec/models/ui_node_anchor_attributes_spec.rb +40 -0
  234. data/spec/models/ui_node_attributes_spec.rb +31 -0
  235. data/spec/models/ui_node_image_attributes_spec.rb +34 -0
  236. data/spec/models/ui_node_input_attributes_spec.rb +70 -0
  237. data/spec/models/ui_node_input_attributes_value_spec.rb +31 -0
  238. data/spec/models/ui_node_spec.rb +58 -0
  239. data/spec/models/ui_node_text_attributes_spec.rb +34 -0
  240. data/spec/models/ui_text_spec.rb +52 -0
  241. data/spec/models/update_identity_spec.rb +40 -0
  242. data/spec/models/verifiable_identity_address_spec.rb +76 -0
  243. data/spec/models/verification_flow_spec.rb +76 -0
  244. data/spec/models/version_spec.rb +34 -0
  245. data/spec/models/volume_spec.rb +82 -0
  246. data/spec/models/volume_usage_data_spec.rb +40 -0
  247. data/spec/spec_helper.rb +111 -0
  248. metadata +413 -0
@@ -0,0 +1,76 @@
1
+ =begin
2
+ #Ory APIs
3
+
4
+ #Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
5
+
6
+ The version of the OpenAPI document: v0.0.1-alpha.1
7
+ Contact: support@ory.sh
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::VerificationFlow
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe OryHydraClient::VerificationFlow do
21
+ let(:instance) { OryHydraClient::VerificationFlow.new }
22
+
23
+ describe 'test an instance of VerificationFlow' do
24
+ it 'should create an instance of VerificationFlow' do
25
+ expect(instance).to be_instance_of(OryHydraClient::VerificationFlow)
26
+ end
27
+ end
28
+ describe 'test attribute "active"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "expires_at"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "id"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "issued_at"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "request_url"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "state"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "type"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "ui"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ end
@@ -0,0 +1,34 @@
1
+ =begin
2
+ #Ory APIs
3
+
4
+ #Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
5
+
6
+ The version of the OpenAPI document: v0.0.1-alpha.1
7
+ Contact: support@ory.sh
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::Version
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe OryHydraClient::Version do
21
+ let(:instance) { OryHydraClient::Version.new }
22
+
23
+ describe 'test an instance of Version' do
24
+ it 'should create an instance of Version' do
25
+ expect(instance).to be_instance_of(OryHydraClient::Version)
26
+ end
27
+ end
28
+ describe 'test attribute "version"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ end
@@ -0,0 +1,82 @@
1
+ =begin
2
+ #Ory APIs
3
+
4
+ #Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
5
+
6
+ The version of the OpenAPI document: v0.0.1-alpha.1
7
+ Contact: support@ory.sh
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::Volume
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe OryHydraClient::Volume do
21
+ let(:instance) { OryHydraClient::Volume.new }
22
+
23
+ describe 'test an instance of Volume' do
24
+ it 'should create an instance of Volume' do
25
+ expect(instance).to be_instance_of(OryHydraClient::Volume)
26
+ end
27
+ end
28
+ describe 'test attribute "created_at"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "driver"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "labels"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "mountpoint"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "name"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "options"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "scope"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "status"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "usage_data"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
82
+ end
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Ory APIs
3
+
4
+ #Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
5
+
6
+ The version of the OpenAPI document: v0.0.1-alpha.1
7
+ Contact: support@ory.sh
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::VolumeUsageData
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe OryHydraClient::VolumeUsageData do
21
+ let(:instance) { OryHydraClient::VolumeUsageData.new }
22
+
23
+ describe 'test an instance of VolumeUsageData' do
24
+ it 'should create an instance of VolumeUsageData' do
25
+ expect(instance).to be_instance_of(OryHydraClient::VolumeUsageData)
26
+ end
27
+ end
28
+ describe 'test attribute "ref_count"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "size"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ end
@@ -0,0 +1,111 @@
1
+ =begin
2
+ #Ory APIs
3
+
4
+ #Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
5
+
6
+ The version of the OpenAPI document: v0.0.1-alpha.1
7
+ Contact: support@ory.sh
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.1
10
+
11
+ =end
12
+
13
+ # load the gem
14
+ require 'ory-client-client'
15
+
16
+ # The following was generated by the `rspec --init` command. Conventionally, all
17
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
18
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
19
+ # this file to always be loaded, without a need to explicitly require it in any
20
+ # files.
21
+ #
22
+ # Given that it is always loaded, you are encouraged to keep this file as
23
+ # light-weight as possible. Requiring heavyweight dependencies from this file
24
+ # will add to the boot time of your test suite on EVERY test run, even for an
25
+ # individual file that may not need all of that loaded. Instead, consider making
26
+ # a separate helper file that requires the additional dependencies and performs
27
+ # the additional setup, and require it from the spec files that actually need
28
+ # it.
29
+ #
30
+ # The `.rspec` file also contains a few flags that are not defaults but that
31
+ # users commonly want.
32
+ #
33
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
34
+ RSpec.configure do |config|
35
+ # rspec-expectations config goes here. You can use an alternate
36
+ # assertion/expectation library such as wrong or the stdlib/minitest
37
+ # assertions if you prefer.
38
+ config.expect_with :rspec do |expectations|
39
+ # This option will default to `true` in RSpec 4. It makes the `description`
40
+ # and `failure_message` of custom matchers include text for helper methods
41
+ # defined using `chain`, e.g.:
42
+ # be_bigger_than(2).and_smaller_than(4).description
43
+ # # => "be bigger than 2 and smaller than 4"
44
+ # ...rather than:
45
+ # # => "be bigger than 2"
46
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
47
+ end
48
+
49
+ # rspec-mocks config goes here. You can use an alternate test double
50
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
51
+ config.mock_with :rspec do |mocks|
52
+ # Prevents you from mocking or stubbing a method that does not exist on
53
+ # a real object. This is generally recommended, and will default to
54
+ # `true` in RSpec 4.
55
+ mocks.verify_partial_doubles = true
56
+ end
57
+
58
+ # The settings below are suggested to provide a good initial experience
59
+ # with RSpec, but feel free to customize to your heart's content.
60
+ =begin
61
+ # These two settings work together to allow you to limit a spec run
62
+ # to individual examples or groups you care about by tagging them with
63
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
64
+ # get run.
65
+ config.filter_run :focus
66
+ config.run_all_when_everything_filtered = true
67
+
68
+ # Allows RSpec to persist some state between runs in order to support
69
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
70
+ # you configure your source control system to ignore this file.
71
+ config.example_status_persistence_file_path = "spec/examples.txt"
72
+
73
+ # Limits the available syntax to the non-monkey patched syntax that is
74
+ # recommended. For more details, see:
75
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
76
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
77
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
78
+ config.disable_monkey_patching!
79
+
80
+ # This setting enables warnings. It's recommended, but in some cases may
81
+ # be too noisy due to issues in dependencies.
82
+ config.warnings = true
83
+
84
+ # Many RSpec users commonly either run the entire suite or an individual
85
+ # file, and it's useful to allow more verbose output when running an
86
+ # individual spec file.
87
+ if config.files_to_run.one?
88
+ # Use the documentation formatter for detailed output,
89
+ # unless a formatter has already been configured
90
+ # (e.g. via a command-line flag).
91
+ config.default_formatter = 'doc'
92
+ end
93
+
94
+ # Print the 10 slowest examples and example groups at the
95
+ # end of the spec run, to help surface which specs are running
96
+ # particularly slow.
97
+ config.profile_examples = 10
98
+
99
+ # Run specs in random order to surface order dependencies. If you find an
100
+ # order dependency and want to debug it, you can fix the order by providing
101
+ # the seed, which is printed after each run.
102
+ # --seed 1234
103
+ config.order = :random
104
+
105
+ # Seed global randomization in this process using the `--seed` CLI option.
106
+ # Setting this allows you to use `--seed` to deterministically reproduce
107
+ # test failures related to randomization by passing the same `--seed` value
108
+ # as the one that triggered the failure.
109
+ Kernel.srand config.seed
110
+ =end
111
+ end
metadata ADDED
@@ -0,0 +1,413 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ory-client-client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.alpha1
5
+ platform: ruby
6
+ authors:
7
+ - ORY GmbH
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-05-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: typhoeus
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.1
33
+ - !ruby/object:Gem::Dependency
34
+ name: rspec
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '3.6'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 3.6.0
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '3.6'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 3.6.0
53
+ description: 'Documentation for all public and administrative Ory APIs. Administrative
54
+ APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly
55
+ used in browsers. '
56
+ email:
57
+ - opensource@ory.sh
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - Gemfile
63
+ - README.md
64
+ - Rakefile
65
+ - docs/AuthenticateOKBody.md
66
+ - docs/ContainerChangeResponseItem.md
67
+ - docs/ContainerCreateCreatedBody.md
68
+ - docs/ContainerTopOKBody.md
69
+ - docs/ContainerUpdateOKBody.md
70
+ - docs/ContainerWaitOKBody.md
71
+ - docs/ContainerWaitOKBodyError.md
72
+ - docs/CreateIdentity.md
73
+ - docs/CreateRecoveryLink.md
74
+ - docs/DefaultApi.md
75
+ - docs/ErrorContainer.md
76
+ - docs/ErrorResponse.md
77
+ - docs/GenericError.md
78
+ - docs/GraphDriverData.md
79
+ - docs/HealthNotReadyStatus.md
80
+ - docs/HealthStatus.md
81
+ - docs/IdResponse.md
82
+ - docs/Identity.md
83
+ - docs/IdentityCredentials.md
84
+ - docs/ImageDeleteResponseItem.md
85
+ - docs/ImageSummary.md
86
+ - docs/InlineResponse200.md
87
+ - docs/InlineResponse2001.md
88
+ - docs/InlineResponse503.md
89
+ - docs/JsonError.md
90
+ - docs/LoginFlow.md
91
+ - docs/LoginViaApiResponse.md
92
+ - docs/Meta.md
93
+ - docs/Plugin.md
94
+ - docs/PluginConfig.md
95
+ - docs/PluginConfigArgs.md
96
+ - docs/PluginConfigInterface.md
97
+ - docs/PluginConfigLinux.md
98
+ - docs/PluginConfigNetwork.md
99
+ - docs/PluginConfigRootfs.md
100
+ - docs/PluginConfigUser.md
101
+ - docs/PluginDevice.md
102
+ - docs/PluginEnv.md
103
+ - docs/PluginInterfaceType.md
104
+ - docs/PluginMount.md
105
+ - docs/PluginSettings.md
106
+ - docs/Port.md
107
+ - docs/RecoveryAddress.md
108
+ - docs/RecoveryFlow.md
109
+ - docs/RecoveryLink.md
110
+ - docs/RegistrationFlow.md
111
+ - docs/RegistrationViaApiResponse.md
112
+ - docs/RevokeSession.md
113
+ - docs/ServiceUpdateResponse.md
114
+ - docs/Session.md
115
+ - docs/SettingsFlow.md
116
+ - docs/SettingsProfileFormConfig.md
117
+ - docs/SettingsViaApiResponse.md
118
+ - docs/SubmitSelfServiceBrowserSettingsOIDCFlowPayload.md
119
+ - docs/SubmitSelfServiceLoginFlow.md
120
+ - docs/SubmitSelfServiceLoginFlowWithPasswordMethod.md
121
+ - docs/SubmitSelfServiceRecoveryFlowWithLinkMethod.md
122
+ - docs/SubmitSelfServiceRegistrationFlow.md
123
+ - docs/SubmitSelfServiceRegistrationFlowWithPasswordMethod.md
124
+ - docs/SubmitSelfServiceSettingsFlow.md
125
+ - docs/SubmitSelfServiceSettingsFlowWithPasswordMethod.md
126
+ - docs/SubmitSelfServiceSettingsFlowWithProfileMethod.md
127
+ - docs/SubmitSelfServiceVerificationFlowWithLinkMethod.md
128
+ - docs/UiContainer.md
129
+ - docs/UiNode.md
130
+ - docs/UiNodeAnchorAttributes.md
131
+ - docs/UiNodeAttributes.md
132
+ - docs/UiNodeImageAttributes.md
133
+ - docs/UiNodeInputAttributes.md
134
+ - docs/UiNodeInputAttributesValue.md
135
+ - docs/UiNodeTextAttributes.md
136
+ - docs/UiText.md
137
+ - docs/UpdateIdentity.md
138
+ - docs/VerifiableIdentityAddress.md
139
+ - docs/VerificationFlow.md
140
+ - docs/Version.md
141
+ - docs/Volume.md
142
+ - docs/VolumeUsageData.md
143
+ - lib/ory-client-client.rb
144
+ - lib/ory-client-client/api/default_api.rb
145
+ - lib/ory-client-client/api_client.rb
146
+ - lib/ory-client-client/api_error.rb
147
+ - lib/ory-client-client/configuration.rb
148
+ - lib/ory-client-client/models/authenticate_ok_body.rb
149
+ - lib/ory-client-client/models/container_change_response_item.rb
150
+ - lib/ory-client-client/models/container_create_created_body.rb
151
+ - lib/ory-client-client/models/container_top_ok_body.rb
152
+ - lib/ory-client-client/models/container_update_ok_body.rb
153
+ - lib/ory-client-client/models/container_wait_ok_body.rb
154
+ - lib/ory-client-client/models/container_wait_ok_body_error.rb
155
+ - lib/ory-client-client/models/create_identity.rb
156
+ - lib/ory-client-client/models/create_recovery_link.rb
157
+ - lib/ory-client-client/models/error_container.rb
158
+ - lib/ory-client-client/models/error_response.rb
159
+ - lib/ory-client-client/models/generic_error.rb
160
+ - lib/ory-client-client/models/graph_driver_data.rb
161
+ - lib/ory-client-client/models/health_not_ready_status.rb
162
+ - lib/ory-client-client/models/health_status.rb
163
+ - lib/ory-client-client/models/id_response.rb
164
+ - lib/ory-client-client/models/identity.rb
165
+ - lib/ory-client-client/models/identity_credentials.rb
166
+ - lib/ory-client-client/models/image_delete_response_item.rb
167
+ - lib/ory-client-client/models/image_summary.rb
168
+ - lib/ory-client-client/models/inline_response200.rb
169
+ - lib/ory-client-client/models/inline_response2001.rb
170
+ - lib/ory-client-client/models/inline_response503.rb
171
+ - lib/ory-client-client/models/json_error.rb
172
+ - lib/ory-client-client/models/login_flow.rb
173
+ - lib/ory-client-client/models/login_via_api_response.rb
174
+ - lib/ory-client-client/models/meta.rb
175
+ - lib/ory-client-client/models/plugin.rb
176
+ - lib/ory-client-client/models/plugin_config.rb
177
+ - lib/ory-client-client/models/plugin_config_args.rb
178
+ - lib/ory-client-client/models/plugin_config_interface.rb
179
+ - lib/ory-client-client/models/plugin_config_linux.rb
180
+ - lib/ory-client-client/models/plugin_config_network.rb
181
+ - lib/ory-client-client/models/plugin_config_rootfs.rb
182
+ - lib/ory-client-client/models/plugin_config_user.rb
183
+ - lib/ory-client-client/models/plugin_device.rb
184
+ - lib/ory-client-client/models/plugin_env.rb
185
+ - lib/ory-client-client/models/plugin_interface_type.rb
186
+ - lib/ory-client-client/models/plugin_mount.rb
187
+ - lib/ory-client-client/models/plugin_settings.rb
188
+ - lib/ory-client-client/models/port.rb
189
+ - lib/ory-client-client/models/recovery_address.rb
190
+ - lib/ory-client-client/models/recovery_flow.rb
191
+ - lib/ory-client-client/models/recovery_link.rb
192
+ - lib/ory-client-client/models/registration_flow.rb
193
+ - lib/ory-client-client/models/registration_via_api_response.rb
194
+ - lib/ory-client-client/models/revoke_session.rb
195
+ - lib/ory-client-client/models/service_update_response.rb
196
+ - lib/ory-client-client/models/session.rb
197
+ - lib/ory-client-client/models/settings_flow.rb
198
+ - lib/ory-client-client/models/settings_profile_form_config.rb
199
+ - lib/ory-client-client/models/settings_via_api_response.rb
200
+ - lib/ory-client-client/models/submit_self_service_browser_settings_oidc_flow_payload.rb
201
+ - lib/ory-client-client/models/submit_self_service_login_flow.rb
202
+ - lib/ory-client-client/models/submit_self_service_login_flow_with_password_method.rb
203
+ - lib/ory-client-client/models/submit_self_service_recovery_flow_with_link_method.rb
204
+ - lib/ory-client-client/models/submit_self_service_registration_flow.rb
205
+ - lib/ory-client-client/models/submit_self_service_registration_flow_with_password_method.rb
206
+ - lib/ory-client-client/models/submit_self_service_settings_flow.rb
207
+ - lib/ory-client-client/models/submit_self_service_settings_flow_with_password_method.rb
208
+ - lib/ory-client-client/models/submit_self_service_settings_flow_with_profile_method.rb
209
+ - lib/ory-client-client/models/submit_self_service_verification_flow_with_link_method.rb
210
+ - lib/ory-client-client/models/ui_container.rb
211
+ - lib/ory-client-client/models/ui_node.rb
212
+ - lib/ory-client-client/models/ui_node_anchor_attributes.rb
213
+ - lib/ory-client-client/models/ui_node_attributes.rb
214
+ - lib/ory-client-client/models/ui_node_image_attributes.rb
215
+ - lib/ory-client-client/models/ui_node_input_attributes.rb
216
+ - lib/ory-client-client/models/ui_node_input_attributes_value.rb
217
+ - lib/ory-client-client/models/ui_node_text_attributes.rb
218
+ - lib/ory-client-client/models/ui_text.rb
219
+ - lib/ory-client-client/models/update_identity.rb
220
+ - lib/ory-client-client/models/verifiable_identity_address.rb
221
+ - lib/ory-client-client/models/verification_flow.rb
222
+ - lib/ory-client-client/models/version.rb
223
+ - lib/ory-client-client/models/volume.rb
224
+ - lib/ory-client-client/models/volume_usage_data.rb
225
+ - lib/ory-client-client/version.rb
226
+ - ory-client-client.gemspec
227
+ - spec/api/default_api_spec.rb
228
+ - spec/api_client_spec.rb
229
+ - spec/configuration_spec.rb
230
+ - spec/models/authenticate_ok_body_spec.rb
231
+ - spec/models/container_change_response_item_spec.rb
232
+ - spec/models/container_create_created_body_spec.rb
233
+ - spec/models/container_top_ok_body_spec.rb
234
+ - spec/models/container_update_ok_body_spec.rb
235
+ - spec/models/container_wait_ok_body_error_spec.rb
236
+ - spec/models/container_wait_ok_body_spec.rb
237
+ - spec/models/create_identity_spec.rb
238
+ - spec/models/create_recovery_link_spec.rb
239
+ - spec/models/error_container_spec.rb
240
+ - spec/models/error_response_spec.rb
241
+ - spec/models/generic_error_spec.rb
242
+ - spec/models/graph_driver_data_spec.rb
243
+ - spec/models/health_not_ready_status_spec.rb
244
+ - spec/models/health_status_spec.rb
245
+ - spec/models/id_response_spec.rb
246
+ - spec/models/identity_credentials_spec.rb
247
+ - spec/models/identity_spec.rb
248
+ - spec/models/image_delete_response_item_spec.rb
249
+ - spec/models/image_summary_spec.rb
250
+ - spec/models/inline_response2001_spec.rb
251
+ - spec/models/inline_response200_spec.rb
252
+ - spec/models/inline_response503_spec.rb
253
+ - spec/models/json_error_spec.rb
254
+ - spec/models/login_flow_spec.rb
255
+ - spec/models/login_via_api_response_spec.rb
256
+ - spec/models/meta_spec.rb
257
+ - spec/models/plugin_config_args_spec.rb
258
+ - spec/models/plugin_config_interface_spec.rb
259
+ - spec/models/plugin_config_linux_spec.rb
260
+ - spec/models/plugin_config_network_spec.rb
261
+ - spec/models/plugin_config_rootfs_spec.rb
262
+ - spec/models/plugin_config_spec.rb
263
+ - spec/models/plugin_config_user_spec.rb
264
+ - spec/models/plugin_device_spec.rb
265
+ - spec/models/plugin_env_spec.rb
266
+ - spec/models/plugin_interface_type_spec.rb
267
+ - spec/models/plugin_mount_spec.rb
268
+ - spec/models/plugin_settings_spec.rb
269
+ - spec/models/plugin_spec.rb
270
+ - spec/models/port_spec.rb
271
+ - spec/models/recovery_address_spec.rb
272
+ - spec/models/recovery_flow_spec.rb
273
+ - spec/models/recovery_link_spec.rb
274
+ - spec/models/registration_flow_spec.rb
275
+ - spec/models/registration_via_api_response_spec.rb
276
+ - spec/models/revoke_session_spec.rb
277
+ - spec/models/service_update_response_spec.rb
278
+ - spec/models/session_spec.rb
279
+ - spec/models/settings_flow_spec.rb
280
+ - spec/models/settings_profile_form_config_spec.rb
281
+ - spec/models/settings_via_api_response_spec.rb
282
+ - spec/models/submit_self_service_browser_settings_oidc_flow_payload_spec.rb
283
+ - spec/models/submit_self_service_login_flow_spec.rb
284
+ - spec/models/submit_self_service_login_flow_with_password_method_spec.rb
285
+ - spec/models/submit_self_service_recovery_flow_with_link_method_spec.rb
286
+ - spec/models/submit_self_service_registration_flow_spec.rb
287
+ - spec/models/submit_self_service_registration_flow_with_password_method_spec.rb
288
+ - spec/models/submit_self_service_settings_flow_spec.rb
289
+ - spec/models/submit_self_service_settings_flow_with_password_method_spec.rb
290
+ - spec/models/submit_self_service_settings_flow_with_profile_method_spec.rb
291
+ - spec/models/submit_self_service_verification_flow_with_link_method_spec.rb
292
+ - spec/models/ui_container_spec.rb
293
+ - spec/models/ui_node_anchor_attributes_spec.rb
294
+ - spec/models/ui_node_attributes_spec.rb
295
+ - spec/models/ui_node_image_attributes_spec.rb
296
+ - spec/models/ui_node_input_attributes_spec.rb
297
+ - spec/models/ui_node_input_attributes_value_spec.rb
298
+ - spec/models/ui_node_spec.rb
299
+ - spec/models/ui_node_text_attributes_spec.rb
300
+ - spec/models/ui_text_spec.rb
301
+ - spec/models/update_identity_spec.rb
302
+ - spec/models/verifiable_identity_address_spec.rb
303
+ - spec/models/verification_flow_spec.rb
304
+ - spec/models/version_spec.rb
305
+ - spec/models/volume_spec.rb
306
+ - spec/models/volume_usage_data_spec.rb
307
+ - spec/spec_helper.rb
308
+ homepage: https://www.ory.sh
309
+ licenses:
310
+ - Apache-2.0
311
+ metadata: {}
312
+ post_install_message:
313
+ rdoc_options: []
314
+ require_paths:
315
+ - lib
316
+ required_ruby_version: !ruby/object:Gem::Requirement
317
+ requirements:
318
+ - - ">="
319
+ - !ruby/object:Gem::Version
320
+ version: '2.4'
321
+ required_rubygems_version: !ruby/object:Gem::Requirement
322
+ requirements:
323
+ - - ">"
324
+ - !ruby/object:Gem::Version
325
+ version: 1.3.1
326
+ requirements: []
327
+ rubyforge_project:
328
+ rubygems_version: 2.7.6.2
329
+ signing_key:
330
+ specification_version: 4
331
+ summary: Ory APIs Ruby Gem
332
+ test_files:
333
+ - spec/api/default_api_spec.rb
334
+ - spec/api_client_spec.rb
335
+ - spec/configuration_spec.rb
336
+ - spec/models/authenticate_ok_body_spec.rb
337
+ - spec/models/container_change_response_item_spec.rb
338
+ - spec/models/container_create_created_body_spec.rb
339
+ - spec/models/container_top_ok_body_spec.rb
340
+ - spec/models/container_update_ok_body_spec.rb
341
+ - spec/models/container_wait_ok_body_spec.rb
342
+ - spec/models/container_wait_ok_body_error_spec.rb
343
+ - spec/models/create_identity_spec.rb
344
+ - spec/models/create_recovery_link_spec.rb
345
+ - spec/models/error_container_spec.rb
346
+ - spec/models/error_response_spec.rb
347
+ - spec/models/generic_error_spec.rb
348
+ - spec/models/graph_driver_data_spec.rb
349
+ - spec/models/health_not_ready_status_spec.rb
350
+ - spec/models/health_status_spec.rb
351
+ - spec/models/id_response_spec.rb
352
+ - spec/models/identity_spec.rb
353
+ - spec/models/identity_credentials_spec.rb
354
+ - spec/models/image_delete_response_item_spec.rb
355
+ - spec/models/image_summary_spec.rb
356
+ - spec/models/inline_response200_spec.rb
357
+ - spec/models/inline_response2001_spec.rb
358
+ - spec/models/inline_response503_spec.rb
359
+ - spec/models/json_error_spec.rb
360
+ - spec/models/login_flow_spec.rb
361
+ - spec/models/login_via_api_response_spec.rb
362
+ - spec/models/meta_spec.rb
363
+ - spec/models/plugin_spec.rb
364
+ - spec/models/plugin_config_spec.rb
365
+ - spec/models/plugin_config_args_spec.rb
366
+ - spec/models/plugin_config_interface_spec.rb
367
+ - spec/models/plugin_config_linux_spec.rb
368
+ - spec/models/plugin_config_network_spec.rb
369
+ - spec/models/plugin_config_rootfs_spec.rb
370
+ - spec/models/plugin_config_user_spec.rb
371
+ - spec/models/plugin_device_spec.rb
372
+ - spec/models/plugin_env_spec.rb
373
+ - spec/models/plugin_interface_type_spec.rb
374
+ - spec/models/plugin_mount_spec.rb
375
+ - spec/models/plugin_settings_spec.rb
376
+ - spec/models/port_spec.rb
377
+ - spec/models/recovery_address_spec.rb
378
+ - spec/models/recovery_flow_spec.rb
379
+ - spec/models/recovery_link_spec.rb
380
+ - spec/models/registration_flow_spec.rb
381
+ - spec/models/registration_via_api_response_spec.rb
382
+ - spec/models/revoke_session_spec.rb
383
+ - spec/models/service_update_response_spec.rb
384
+ - spec/models/session_spec.rb
385
+ - spec/models/settings_flow_spec.rb
386
+ - spec/models/settings_profile_form_config_spec.rb
387
+ - spec/models/settings_via_api_response_spec.rb
388
+ - spec/models/submit_self_service_browser_settings_oidc_flow_payload_spec.rb
389
+ - spec/models/submit_self_service_login_flow_spec.rb
390
+ - spec/models/submit_self_service_login_flow_with_password_method_spec.rb
391
+ - spec/models/submit_self_service_recovery_flow_with_link_method_spec.rb
392
+ - spec/models/submit_self_service_registration_flow_spec.rb
393
+ - spec/models/submit_self_service_registration_flow_with_password_method_spec.rb
394
+ - spec/models/submit_self_service_settings_flow_spec.rb
395
+ - spec/models/submit_self_service_settings_flow_with_password_method_spec.rb
396
+ - spec/models/submit_self_service_settings_flow_with_profile_method_spec.rb
397
+ - spec/models/submit_self_service_verification_flow_with_link_method_spec.rb
398
+ - spec/models/ui_container_spec.rb
399
+ - spec/models/ui_node_spec.rb
400
+ - spec/models/ui_node_anchor_attributes_spec.rb
401
+ - spec/models/ui_node_attributes_spec.rb
402
+ - spec/models/ui_node_image_attributes_spec.rb
403
+ - spec/models/ui_node_input_attributes_spec.rb
404
+ - spec/models/ui_node_input_attributes_value_spec.rb
405
+ - spec/models/ui_node_text_attributes_spec.rb
406
+ - spec/models/ui_text_spec.rb
407
+ - spec/models/update_identity_spec.rb
408
+ - spec/models/verifiable_identity_address_spec.rb
409
+ - spec/models/verification_flow_spec.rb
410
+ - spec/models/version_spec.rb
411
+ - spec/models/volume_spec.rb
412
+ - spec/models/volume_usage_data_spec.rb
413
+ - spec/spec_helper.rb