datarobot-ai_api 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +3 -0
  3. data/Gemfile +3 -0
  4. data/README.md +12 -0
  5. data/Rakefile +54 -0
  6. data/datarobot-ai_api.gemspec +19 -0
  7. data/lib/datarobot.rb +1 -0
  8. data/lib/datarobot/ai_api.rb +190 -0
  9. data/lib/datarobot/ai_api/ai.rb +191 -0
  10. data/lib/datarobot/ai_api/dataset.rb +99 -0
  11. data/lib/datarobot/ai_api/deployment.rb +20 -0
  12. data/lib/datarobot/ai_api/evaluation.rb +21 -0
  13. data/lib/datarobot/ai_api/learning_session.rb +112 -0
  14. data/lib/datarobot/ai_api/output.rb +58 -0
  15. data/lib/datarobot/ai_api/page.rb +50 -0
  16. data/lib/datarobot/ai_api/prediction.rb +20 -0
  17. data/lib/datarobot/ai_api/refreshable.rb +20 -0
  18. data/lib/datarobot/ai_api/task.rb +86 -0
  19. data/test/cassettes/Datarobot_AiApi/_ping/returns_unauthorized_when_not_authorized.yml +41 -0
  20. data/test/cassettes/Datarobot_AiApi/_ping/works_when_authorized.yml +58 -0
  21. data/test/cassettes/Datarobot_AiApi/_ping_me/returns_unauthorized_when_not_authorized.yml +41 -0
  22. data/test/cassettes/Datarobot_AiApi/_ping_me/works_when_authorized.yml +58 -0
  23. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/404s_if_there_is_no_matching_output.yml +190 -0
  24. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_find/should_accept_a_block.yml +66 -0
  25. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_next_page/can_go_to_the_next_page.yml +132 -0
  26. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml +123 -0
  27. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_previous_page/can_go_to_the_previous_page.yml +262 -0
  28. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml +67 -0
  29. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_refresh/can_refresh_to_a_new_object.yml +129 -0
  30. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_refresh_/can_refresh_its_values.yml +129 -0
  31. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_add_datasets_to_AIs.yml +120 -0
  32. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_add_learning_sessions_to_AIs.yml +120 -0
  33. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_be_trained.yml +4554 -0
  34. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_create_AIs.yml +120 -0
  35. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_delete_AIs.yml +58 -0
  36. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_find_AIs.yml +63 -0
  37. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_get_AI_datasets.yml +131 -0
  38. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_get_AI_outputs.yml +124 -0
  39. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_list_AIs.yml +123 -0
  40. data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_predict_things.yml +190 -0
  41. data/test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_create_AIs.yml +43 -0
  42. data/test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_find_AIs.yml +43 -0
  43. data/test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_list_AIs.yml +45 -0
  44. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_find/should_accept_a_block.yml +64 -0
  45. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_next_page/can_go_to_the_next_page.yml +126 -0
  46. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml +113 -0
  47. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_previous_page/can_go_to_the_previous_page.yml +250 -0
  48. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml +64 -0
  49. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_refresh/can_refresh_to_a_new_object.yml +125 -0
  50. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_refresh_/can_refresh_its_values.yml +125 -0
  51. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_delete_datasets.yml +58 -0
  52. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_find_datasets.yml +61 -0
  53. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_import_a_dataset_from_a_file.yml +1077 -0
  54. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_import_a_dataset_from_a_url.yml +55 -0
  55. data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_list_datasets.yml +113 -0
  56. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_find/should_accept_a_block.yml +67 -0
  57. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_next_page/can_go_to_the_next_page.yml +67 -0
  58. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml +100 -0
  59. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_previous_page/can_go_to_the_previous_page.yml +67 -0
  60. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml +100 -0
  61. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_refresh/can_refresh_to_a_new_object.yml +131 -0
  62. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_refresh_/can_refresh_its_values.yml +130 -0
  63. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_create_learning_sessions.yml +2815 -0
  64. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_delete_learning_sessions.yml +58 -0
  65. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_find_learning_sessions.yml +63 -0
  66. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_deployment_data.yml +123 -0
  67. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_evaluation_data.yml +67 -0
  68. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_features.yml +127 -0
  69. data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_list_learning_sessions.yml +100 -0
  70. data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_create_outputs.yml +60 -0
  71. data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_find_named_outputs.yml +123 -0
  72. data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_get_features_of_an_output.yml +184 -0
  73. data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_get_the_evaluation_of_an_output.yml +131 -0
  74. data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_list_outputs.yml +124 -0
  75. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/_find/should_accept_a_block.yml +63 -0
  76. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/_refresh/can_refresh_to_a_new_object.yml +124 -0
  77. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/_refresh_/can_refresh_its_values.yml +125 -0
  78. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/can_stop_a_task.yml +58 -0
  79. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/can_wait_until_completed.yml +1138 -0
  80. data/test/cassettes/Datarobot_AiApi_Task/when_authorized/check_the_status_of_a_task.yml +64 -0
  81. data/test/data/delete-me.csv +8037 -0
  82. data/test/data/test.csv +8037 -0
  83. data/test/datarobot/ai_api/test_ai.rb +133 -0
  84. data/test/datarobot/ai_api/test_dataset.rb +64 -0
  85. data/test/datarobot/ai_api/test_learning_session.rb +77 -0
  86. data/test/datarobot/ai_api/test_output.rb +54 -0
  87. data/test/datarobot/ai_api/test_page.rb +50 -0
  88. data/test/datarobot/ai_api/test_prediction.rb +0 -0
  89. data/test/datarobot/ai_api/test_refreshable.rb +39 -0
  90. data/test/datarobot/ai_api/test_task.rb +53 -0
  91. data/test/datarobot/test_ai_api.rb +52 -0
  92. data/test/test_helper.rb +40 -0
  93. metadata +217 -0
@@ -0,0 +1,100 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://developers.datarobot.com/aiapi/learningSessions/?limit=1&offset=0
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - datarobot-ai/ruby
16
+ Host:
17
+ - developers.datarobot.com
18
+ Content-Type:
19
+ - application/json
20
+ Authorization:
21
+ - Bearer testingKey
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Date:
28
+ - Thu, 29 Aug 2019 03:53:36 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Content-Length:
32
+ - '803'
33
+ Connection:
34
+ - keep-alive
35
+ Server:
36
+ - openresty
37
+ Set-Cookie:
38
+ - SERVERID=blue; path=/
39
+ Strict-Transport-Security:
40
+ - max-age=16070400; includeSubDomains
41
+ Vary:
42
+ - Origin
43
+ X-Content-Type-Options:
44
+ - nosniff
45
+ X-Datarobot-Request-Id:
46
+ - c252195e5ee4510fddee45a2948d7300
47
+ X-Frame-Options:
48
+ - SAMEORIGIN
49
+ X-Ratelimit-Limit:
50
+ - "-1"
51
+ X-Ratelimit-Remaining:
52
+ - '0'
53
+ X-Ratelimit-Reset:
54
+ - '1562953893'
55
+ X-Xss-Protection:
56
+ - 1; mode=block
57
+ body:
58
+ encoding: ASCII-8BIT
59
+ string: '{"total": 19, "data": [{"name": "Learning score1", "created": "2019-07-31T18:22:47.865168Z",
60
+ "modelCount": 17, "id": "5d41dc72d8c81f0578732a6e", "datasetId": "5d41dc61d8c81f0578732a65",
61
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T18:26:25.823048Z",
62
+ "modelCount": 17, "id": "5d41dd4cd8c81f0566732a67", "datasetId": "5d41dd38d8c81f04ee732a84",
63
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T18:30:08.191384Z",
64
+ "modelCount": 17, "id": "5d41de29d8c81f0587732a4f", "datasetId": "5d41de17d8c81f04ee732a8d",
65
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T18:32:44.135088Z",
66
+ "modelCount": 17, "id": "5d41dec6d8c81f0587732a66", "datasetId": "5d41deb4d8c81f0587732a5d",
67
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T18:39:23.701426Z",
68
+ "modelCount": 17, "id": "5d41e055d8c81f0587732a93", "datasetId": "5d41e041d8c81f0578732a94",
69
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T19:51:02.870724Z",
70
+ "modelCount": 17, "id": "5d41f121d8c81f05c9732a20", "datasetId": "5d41f10dd8c81f05bc732a21",
71
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T19:53:57.812728Z",
72
+ "modelCount": 17, "id": "5d41f1d0d8c81f05c9732a36", "datasetId": "5d41f1bbd8c81f05c9732a25",
73
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T21:24:43.153858Z",
74
+ "modelCount": 17, "id": "5d420715d8c81f05bc732a57", "datasetId": "5d420701d8c81f05fe732a51",
75
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T21:27:33.660402Z",
76
+ "modelCount": 17, "id": "5d4207bfd8c81f05e0732a2e", "datasetId": "5d42079ad8c81f0045732a6b",
77
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T21:29:04.907600Z",
78
+ "modelCount": 17, "id": "5d42081ad8c81f05ed732a74", "datasetId": "5d420807d8c81f05ed732a6b",
79
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T21:41:42.017453Z",
80
+ "modelCount": 17, "id": "5d420b10d8c81f05fe732a84", "datasetId": "5d420afad8c81f05ed732a8f",
81
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T21:43:23.866714Z",
82
+ "modelCount": 17, "id": "5d420b75d8c81f05e0732a3d", "datasetId": "5d420b60d8c81f05fe732a89",
83
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-07-31T22:00:47.171821Z",
84
+ "modelCount": 17, "id": "5d420f88d8c81f06247329e3", "datasetId": "5d420f76d8c81f0477732a5b",
85
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-08-26T22:41:50.940008Z",
86
+ "modelCount": 17, "id": "5d64602342eabf1da466f338", "datasetId": "5d645f4a42eabf1d9266f2d2",
87
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-08-26T23:18:03.691314Z",
88
+ "modelCount": 17, "id": "5d6468a042eabf1cc066f2db", "datasetId": "5d64671542eabf1dd266f2bc",
89
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-08-27T00:25:17.521208Z",
90
+ "modelCount": 17, "id": "5d64786242eabf1d9266f302", "datasetId": "5d64784b42eabf1dd266f302",
91
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-08-27T00:27:59.123442Z",
92
+ "modelCount": 17, "id": "5d64790442eabf1da466f38b", "datasetId": "5d6478ed42eabf1e0266f2ad",
93
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-08-27T00:32:26.780948Z",
94
+ "modelCount": 17, "id": "5d647a1042eabf1dd266f30a", "datasetId": "5d6479f842eabf1d9266f307",
95
+ "target": "score1"}, {"name": "Learning score1", "created": "2019-08-27T18:38:06.531655Z",
96
+ "modelCount": 17, "id": "5d65788342eabf202c66f2e7", "datasetId": "5d656bb042eabf201366f2d7",
97
+ "target": "score1"}], "links": {"previous": null, "next": null}}'
98
+ http_version:
99
+ recorded_at: Thu, 29 Aug 2019 03:53:36 GMT
100
+ recorded_with: VCR 5.0.0
@@ -0,0 +1,131 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://developers.datarobot.com/aiapi/learningSessions/5d41e055d8c81f0587732a93
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - datarobot-ai/ruby
16
+ Host:
17
+ - developers.datarobot.com
18
+ Content-Type:
19
+ - application/json
20
+ Authorization:
21
+ - Bearer testingKey
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Date:
28
+ - Tue, 01 Oct 2019 17:01:32 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Content-Length:
32
+ - '489'
33
+ Connection:
34
+ - keep-alive
35
+ Server:
36
+ - openresty
37
+ Set-Cookie:
38
+ - SERVERID=green; path=/
39
+ Strict-Transport-Security:
40
+ - max-age=16070400; includeSubDomains
41
+ Vary:
42
+ - Origin
43
+ X-Content-Type-Options:
44
+ - nosniff
45
+ X-Datarobot-Request-Id:
46
+ - 0d3785b5ff49f0fe69b50893ff239c79
47
+ X-Frame-Options:
48
+ - SAMEORIGIN
49
+ X-Ratelimit-Limit:
50
+ - "-1"
51
+ X-Ratelimit-Remaining:
52
+ - '0'
53
+ X-Ratelimit-Reset:
54
+ - '1565047666'
55
+ X-Xss-Protection:
56
+ - 1; mode=block
57
+ body:
58
+ encoding: UTF-8
59
+ string: '{"name": "Learning score1", "links": {"self": "https://developers.datarobot.com/aiapi/learningSessions/5d41e055d8c81f0587732a93/"},
60
+ "created": "2019-07-31T18:39:23.701426Z", "modelCount": 17, "evaluation":
61
+ {"score": 5.66, "summary": "Because 5.66% of the variability in the values
62
+ of score1 are explained, fit accuracy for the current top performing model
63
+ is ranked as weak.", "label": "weak"}, "id": "5d41e055d8c81f0587732a93", "datasetId":
64
+ "5d41e041d8c81f0578732a94", "target": "score1"}'
65
+ http_version:
66
+ recorded_at: Tue, 01 Oct 2019 17:01:32 GMT
67
+ - request:
68
+ method: get
69
+ uri: https://developers.datarobot.com/aiapi/learningSessions/5d41e055d8c81f0587732a93
70
+ body:
71
+ encoding: US-ASCII
72
+ string: ''
73
+ headers:
74
+ Accept-Encoding:
75
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
76
+ Accept:
77
+ - "*/*"
78
+ User-Agent:
79
+ - datarobot-ai/ruby
80
+ Host:
81
+ - developers.datarobot.com
82
+ Content-Type:
83
+ - application/json
84
+ Authorization:
85
+ - Bearer testingKey
86
+ response:
87
+ status:
88
+ code: 200
89
+ message: OK
90
+ headers:
91
+ Date:
92
+ - Tue, 01 Oct 2019 17:01:32 GMT
93
+ Content-Type:
94
+ - application/json
95
+ Content-Length:
96
+ - '489'
97
+ Connection:
98
+ - keep-alive
99
+ Server:
100
+ - openresty
101
+ Set-Cookie:
102
+ - SERVERID=green; path=/
103
+ Strict-Transport-Security:
104
+ - max-age=16070400; includeSubDomains
105
+ Vary:
106
+ - Origin
107
+ X-Content-Type-Options:
108
+ - nosniff
109
+ X-Datarobot-Request-Id:
110
+ - cba3465d7242a1120e1c410c41fd6ef4
111
+ X-Frame-Options:
112
+ - SAMEORIGIN
113
+ X-Ratelimit-Limit:
114
+ - "-1"
115
+ X-Ratelimit-Remaining:
116
+ - '0'
117
+ X-Ratelimit-Reset:
118
+ - '1565047666'
119
+ X-Xss-Protection:
120
+ - 1; mode=block
121
+ body:
122
+ encoding: UTF-8
123
+ string: '{"name": "Learning score1", "links": {"self": "https://developers.datarobot.com/aiapi/learningSessions/5d41e055d8c81f0587732a93/"},
124
+ "created": "2019-07-31T18:39:23.701426Z", "modelCount": 17, "evaluation":
125
+ {"score": 5.66, "summary": "Because 5.66% of the variability in the values
126
+ of score1 are explained, fit accuracy for the current top performing model
127
+ is ranked as weak.", "label": "weak"}, "id": "5d41e055d8c81f0587732a93", "datasetId":
128
+ "5d41e041d8c81f0578732a94", "target": "score1"}'
129
+ http_version:
130
+ recorded_at: Tue, 01 Oct 2019 17:01:32 GMT
131
+ recorded_with: VCR 5.0.0
@@ -0,0 +1,130 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://developers.datarobot.com/aiapi/learningSessions/5d41e055d8c81f0587732a93
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - datarobot-ai/ruby
16
+ Host:
17
+ - developers.datarobot.com
18
+ Content-Type:
19
+ - application/json
20
+ Authorization:
21
+ - Bearer testingKey
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Date:
28
+ - Tue, 01 Oct 2019 17:02:17 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Content-Length:
32
+ - '489'
33
+ Connection:
34
+ - keep-alive
35
+ Server:
36
+ - openresty
37
+ Set-Cookie:
38
+ - SERVERID=green; path=/
39
+ Strict-Transport-Security:
40
+ - max-age=16070400; includeSubDomains
41
+ Vary:
42
+ - Origin
43
+ X-Content-Type-Options:
44
+ - nosniff
45
+ X-Datarobot-Request-Id:
46
+ - f7d7de923390e6aa96f8a68f4dc9dfe5
47
+ X-Frame-Options:
48
+ - SAMEORIGIN
49
+ X-Ratelimit-Limit:
50
+ - "-1"
51
+ X-Ratelimit-Remaining:
52
+ - '0'
53
+ X-Ratelimit-Reset:
54
+ - '1565047666'
55
+ X-Xss-Protection:
56
+ - 1; mode=block
57
+ body:
58
+ encoding: UTF-8
59
+ string: '{"name": "Learning score1", "links": {"self": "https://developers.datarobot.com/aiapi/learningSessions/5d41e055d8c81f0587732a93/"},
60
+ "created": "2019-07-31T18:39:23.701426Z", "modelCount": 17, "evaluation":
61
+ {"score": 5.66, "summary": "Because 5.66% of the variability in the values
62
+ of score1 are explained, fit accuracy for the current top performing model
63
+ is ranked as weak.", "label": "weak"}, "id": "5d41e055d8c81f0587732a93", "datasetId":
64
+ "5d41e041d8c81f0578732a94", "target": "score1"}'
65
+ http_version:
66
+ recorded_at: Tue, 01 Oct 2019 17:02:17 GMT
67
+ - request:
68
+ method: get
69
+ uri: https://developers.datarobot.com/aiapi/learningSessions/5d41e055d8c81f0587732a93
70
+ body:
71
+ encoding: US-ASCII
72
+ string: ''
73
+ headers:
74
+ Accept-Encoding:
75
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
76
+ Accept:
77
+ - "*/*"
78
+ User-Agent:
79
+ - datarobot-ai/ruby
80
+ Host:
81
+ - developers.datarobot.com
82
+ Content-Type:
83
+ - application/json
84
+ Authorization:
85
+ - Bearer testingKey
86
+ response:
87
+ status:
88
+ code: 200
89
+ message: OK
90
+ headers:
91
+ Date:
92
+ - Tue, 01 Oct 2019 17:02:17 GMT
93
+ Content-Type:
94
+ - application/json
95
+ Content-Length:
96
+ - '489'
97
+ Connection:
98
+ - keep-alive
99
+ Server:
100
+ - openresty
101
+ Set-Cookie:
102
+ - SERVERID=green; path=/
103
+ Strict-Transport-Security:
104
+ - max-age=16070400; includeSubDomains
105
+ Vary:
106
+ - Origin
107
+ X-Content-Type-Options:
108
+ - nosniff
109
+ X-Datarobot-Request-Id:
110
+ - 61e4ff6c7d9e85728f60149c8c8e8a8d
111
+ X-Frame-Options:
112
+ - SAMEORIGIN
113
+ X-Ratelimit-Limit:
114
+ - "-1"
115
+ X-Ratelimit-Remaining:
116
+ - '0'
117
+ X-Ratelimit-Reset:
118
+ - '1565047666'
119
+ X-Xss-Protection:
120
+ - 1; mode=block
121
+ body:
122
+ encoding: UTF-8
123
+ string: '{"name": "Learning score1", "links": {"self": "https://developers.datarobot.com/aiapi/learningSessions/5d41e055d8c81f0587732a93/"},
124
+ "created": "2019-07-31T18:39:23.701426Z", "modelCount": 17, "evaluation":
125
+ {"score": 5.66, "summary": "In order to do testing, this value was changed manually",
126
+ "label": "weak"}, "id": "5d41e055d8c81f0587732a93", "datasetId":
127
+ "5d41e041d8c81f0578732a94", "target": "score1"}'
128
+ http_version:
129
+ recorded_at: Tue, 01 Oct 2019 17:02:17 GMT
130
+ recorded_with: VCR 5.0.0
@@ -0,0 +1,2815 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://developers.datarobot.com/aiapi/learningSessions/
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"datasetId":"5d656bb042eabf201366f2d7","target":"score1"}'
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - datarobot-ai/ruby
16
+ Content-Type:
17
+ - application/json
18
+ Authorization:
19
+ - Bearer testingKey
20
+ response:
21
+ status:
22
+ code: 202
23
+ message: Accepted
24
+ headers:
25
+ Date:
26
+ - Tue, 27 Aug 2019 18:37:55 GMT
27
+ Content-Type:
28
+ - application/json
29
+ Content-Length:
30
+ - '108'
31
+ Connection:
32
+ - keep-alive
33
+ Server:
34
+ - openresty
35
+ Set-Cookie:
36
+ - SERVERID=blue; path=/
37
+ Vary:
38
+ - Origin
39
+ X-Datarobot-Request-Id:
40
+ - aba75dda81f27c16872ab093913d8b6f
41
+ X-Frame-Options:
42
+ - SAMEORIGIN
43
+ X-Ratelimit-Limit:
44
+ - "-1"
45
+ X-Ratelimit-Remaining:
46
+ - '0'
47
+ X-Ratelimit-Reset:
48
+ - '1562953893'
49
+ body:
50
+ encoding: UTF-8
51
+ string: '{"links": {"result": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"}}'
52
+ http_version:
53
+ recorded_at: Tue, 27 Aug 2019 18:37:55 GMT
54
+ - request:
55
+ method: get
56
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/
57
+ body:
58
+ encoding: US-ASCII
59
+ string: ''
60
+ headers:
61
+ Accept-Encoding:
62
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
63
+ Accept:
64
+ - "*/*"
65
+ User-Agent:
66
+ - datarobot-ai/ruby
67
+ Content-Type:
68
+ - application/json
69
+ Authorization:
70
+ - Bearer testingKey
71
+ response:
72
+ status:
73
+ code: 200
74
+ message: OK
75
+ headers:
76
+ Date:
77
+ - Tue, 27 Aug 2019 18:37:56 GMT
78
+ Content-Type:
79
+ - application/json
80
+ Content-Length:
81
+ - '313'
82
+ Connection:
83
+ - keep-alive
84
+ Server:
85
+ - openresty
86
+ Set-Cookie:
87
+ - SERVERID=blue; path=/
88
+ Strict-Transport-Security:
89
+ - max-age=16070400; includeSubDomains
90
+ Vary:
91
+ - Origin
92
+ X-Content-Type-Options:
93
+ - nosniff
94
+ X-Datarobot-Request-Id:
95
+ - 22e34de95a82bcb790714f1eadce3bd8
96
+ X-Frame-Options:
97
+ - SAMEORIGIN
98
+ X-Ratelimit-Limit:
99
+ - "-1"
100
+ X-Ratelimit-Remaining:
101
+ - '0'
102
+ X-Ratelimit-Reset:
103
+ - '1562953893'
104
+ X-Xss-Protection:
105
+ - 1; mode=block
106
+ body:
107
+ encoding: UTF-8
108
+ string: '{"status": "INITIALIZED", "code": 0, "description": "Initial Training",
109
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
110
+ "created": "2019-08-27T18:37:55.557791Z", "message": "", "statusType": "Automodel",
111
+ "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
112
+ http_version:
113
+ recorded_at: Tue, 27 Aug 2019 18:37:56 GMT
114
+ - request:
115
+ method: get
116
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
117
+ body:
118
+ encoding: US-ASCII
119
+ string: ''
120
+ headers:
121
+ Accept-Encoding:
122
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
123
+ Accept:
124
+ - "*/*"
125
+ User-Agent:
126
+ - datarobot-ai/ruby
127
+ Content-Type:
128
+ - application/json
129
+ Authorization:
130
+ - Bearer testingKey
131
+ response:
132
+ status:
133
+ code: 200
134
+ message: OK
135
+ headers:
136
+ Date:
137
+ - Tue, 27 Aug 2019 18:37:57 GMT
138
+ Content-Type:
139
+ - application/json
140
+ Content-Length:
141
+ - '313'
142
+ Connection:
143
+ - keep-alive
144
+ Server:
145
+ - openresty
146
+ Set-Cookie:
147
+ - SERVERID=blue; path=/
148
+ Strict-Transport-Security:
149
+ - max-age=16070400; includeSubDomains
150
+ Vary:
151
+ - Origin
152
+ X-Content-Type-Options:
153
+ - nosniff
154
+ X-Datarobot-Request-Id:
155
+ - 959888945420e916e475d4dff1ee3889
156
+ X-Frame-Options:
157
+ - SAMEORIGIN
158
+ X-Ratelimit-Limit:
159
+ - "-1"
160
+ X-Ratelimit-Remaining:
161
+ - '0'
162
+ X-Ratelimit-Reset:
163
+ - '1562953893'
164
+ X-Xss-Protection:
165
+ - 1; mode=block
166
+ body:
167
+ encoding: UTF-8
168
+ string: '{"status": "INITIALIZED", "code": 0, "description": "Initial Training",
169
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
170
+ "created": "2019-08-27T18:37:55.557791Z", "message": "", "statusType": "Automodel",
171
+ "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
172
+ http_version:
173
+ recorded_at: Tue, 27 Aug 2019 18:37:57 GMT
174
+ - request:
175
+ method: get
176
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
177
+ body:
178
+ encoding: US-ASCII
179
+ string: ''
180
+ headers:
181
+ Accept-Encoding:
182
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
183
+ Accept:
184
+ - "*/*"
185
+ User-Agent:
186
+ - datarobot-ai/ruby
187
+ Content-Type:
188
+ - application/json
189
+ Authorization:
190
+ - Bearer testingKey
191
+ response:
192
+ status:
193
+ code: 200
194
+ message: OK
195
+ headers:
196
+ Date:
197
+ - Tue, 27 Aug 2019 18:37:58 GMT
198
+ Content-Type:
199
+ - application/json
200
+ Content-Length:
201
+ - '313'
202
+ Connection:
203
+ - keep-alive
204
+ Server:
205
+ - openresty
206
+ Set-Cookie:
207
+ - SERVERID=blue; path=/
208
+ Strict-Transport-Security:
209
+ - max-age=16070400; includeSubDomains
210
+ Vary:
211
+ - Origin
212
+ X-Content-Type-Options:
213
+ - nosniff
214
+ X-Datarobot-Request-Id:
215
+ - e742aeb162a80aae059c3566c9137d12
216
+ X-Frame-Options:
217
+ - SAMEORIGIN
218
+ X-Ratelimit-Limit:
219
+ - "-1"
220
+ X-Ratelimit-Remaining:
221
+ - '0'
222
+ X-Ratelimit-Reset:
223
+ - '1562953893'
224
+ X-Xss-Protection:
225
+ - 1; mode=block
226
+ body:
227
+ encoding: UTF-8
228
+ string: '{"status": "INITIALIZED", "code": 0, "description": "Initial Training",
229
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
230
+ "created": "2019-08-27T18:37:55.557791Z", "message": "", "statusType": "Automodel",
231
+ "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
232
+ http_version:
233
+ recorded_at: Tue, 27 Aug 2019 18:37:58 GMT
234
+ - request:
235
+ method: get
236
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
237
+ body:
238
+ encoding: US-ASCII
239
+ string: ''
240
+ headers:
241
+ Accept-Encoding:
242
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
243
+ Accept:
244
+ - "*/*"
245
+ User-Agent:
246
+ - datarobot-ai/ruby
247
+ Content-Type:
248
+ - application/json
249
+ Authorization:
250
+ - Bearer testingKey
251
+ response:
252
+ status:
253
+ code: 200
254
+ message: OK
255
+ headers:
256
+ Date:
257
+ - Tue, 27 Aug 2019 18:38:00 GMT
258
+ Content-Type:
259
+ - application/json
260
+ Content-Length:
261
+ - '313'
262
+ Connection:
263
+ - keep-alive
264
+ Server:
265
+ - openresty
266
+ Set-Cookie:
267
+ - SERVERID=blue; path=/
268
+ Strict-Transport-Security:
269
+ - max-age=16070400; includeSubDomains
270
+ Vary:
271
+ - Origin
272
+ X-Content-Type-Options:
273
+ - nosniff
274
+ X-Datarobot-Request-Id:
275
+ - 7ce75ea3e6a227cbb474547066418261
276
+ X-Frame-Options:
277
+ - SAMEORIGIN
278
+ X-Ratelimit-Limit:
279
+ - "-1"
280
+ X-Ratelimit-Remaining:
281
+ - '0'
282
+ X-Ratelimit-Reset:
283
+ - '1562953893'
284
+ X-Xss-Protection:
285
+ - 1; mode=block
286
+ body:
287
+ encoding: UTF-8
288
+ string: '{"status": "INITIALIZED", "code": 0, "description": "Initial Training",
289
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
290
+ "created": "2019-08-27T18:37:55.557791Z", "message": "", "statusType": "Automodel",
291
+ "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
292
+ http_version:
293
+ recorded_at: Tue, 27 Aug 2019 18:38:00 GMT
294
+ - request:
295
+ method: get
296
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
297
+ body:
298
+ encoding: US-ASCII
299
+ string: ''
300
+ headers:
301
+ Accept-Encoding:
302
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
303
+ Accept:
304
+ - "*/*"
305
+ User-Agent:
306
+ - datarobot-ai/ruby
307
+ Content-Type:
308
+ - application/json
309
+ Authorization:
310
+ - Bearer testingKey
311
+ response:
312
+ status:
313
+ code: 200
314
+ message: OK
315
+ headers:
316
+ Date:
317
+ - Tue, 27 Aug 2019 18:38:01 GMT
318
+ Content-Type:
319
+ - application/json
320
+ Content-Length:
321
+ - '313'
322
+ Connection:
323
+ - keep-alive
324
+ Server:
325
+ - openresty
326
+ Set-Cookie:
327
+ - SERVERID=blue; path=/
328
+ Strict-Transport-Security:
329
+ - max-age=16070400; includeSubDomains
330
+ Vary:
331
+ - Origin
332
+ X-Content-Type-Options:
333
+ - nosniff
334
+ X-Datarobot-Request-Id:
335
+ - d0cf0a337f7e50be9d5706ec09799fdb
336
+ X-Frame-Options:
337
+ - SAMEORIGIN
338
+ X-Ratelimit-Limit:
339
+ - "-1"
340
+ X-Ratelimit-Remaining:
341
+ - '0'
342
+ X-Ratelimit-Reset:
343
+ - '1562953893'
344
+ X-Xss-Protection:
345
+ - 1; mode=block
346
+ body:
347
+ encoding: UTF-8
348
+ string: '{"status": "INITIALIZED", "code": 0, "description": "Initial Training",
349
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
350
+ "created": "2019-08-27T18:37:55.557791Z", "message": "", "statusType": "Automodel",
351
+ "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
352
+ http_version:
353
+ recorded_at: Tue, 27 Aug 2019 18:38:01 GMT
354
+ - request:
355
+ method: get
356
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
357
+ body:
358
+ encoding: US-ASCII
359
+ string: ''
360
+ headers:
361
+ Accept-Encoding:
362
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
363
+ Accept:
364
+ - "*/*"
365
+ User-Agent:
366
+ - datarobot-ai/ruby
367
+ Content-Type:
368
+ - application/json
369
+ Authorization:
370
+ - Bearer testingKey
371
+ response:
372
+ status:
373
+ code: 200
374
+ message: OK
375
+ headers:
376
+ Date:
377
+ - Tue, 27 Aug 2019 18:38:02 GMT
378
+ Content-Type:
379
+ - application/json
380
+ Content-Length:
381
+ - '313'
382
+ Connection:
383
+ - keep-alive
384
+ Server:
385
+ - openresty
386
+ Set-Cookie:
387
+ - SERVERID=blue; path=/
388
+ Strict-Transport-Security:
389
+ - max-age=16070400; includeSubDomains
390
+ Vary:
391
+ - Origin
392
+ X-Content-Type-Options:
393
+ - nosniff
394
+ X-Datarobot-Request-Id:
395
+ - 2c6b5b81a6e3500eff76e328f1b35fbb
396
+ X-Frame-Options:
397
+ - SAMEORIGIN
398
+ X-Ratelimit-Limit:
399
+ - "-1"
400
+ X-Ratelimit-Remaining:
401
+ - '0'
402
+ X-Ratelimit-Reset:
403
+ - '1562953893'
404
+ X-Xss-Protection:
405
+ - 1; mode=block
406
+ body:
407
+ encoding: UTF-8
408
+ string: '{"status": "INITIALIZED", "code": 0, "description": "Initial Training",
409
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
410
+ "created": "2019-08-27T18:37:55.557791Z", "message": "", "statusType": "Automodel",
411
+ "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
412
+ http_version:
413
+ recorded_at: Tue, 27 Aug 2019 18:38:02 GMT
414
+ - request:
415
+ method: get
416
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
417
+ body:
418
+ encoding: US-ASCII
419
+ string: ''
420
+ headers:
421
+ Accept-Encoding:
422
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
423
+ Accept:
424
+ - "*/*"
425
+ User-Agent:
426
+ - datarobot-ai/ruby
427
+ Content-Type:
428
+ - application/json
429
+ Authorization:
430
+ - Bearer testingKey
431
+ response:
432
+ status:
433
+ code: 200
434
+ message: OK
435
+ headers:
436
+ Date:
437
+ - Tue, 27 Aug 2019 18:38:04 GMT
438
+ Content-Type:
439
+ - application/json
440
+ Content-Length:
441
+ - '313'
442
+ Connection:
443
+ - keep-alive
444
+ Server:
445
+ - openresty
446
+ Set-Cookie:
447
+ - SERVERID=blue; path=/
448
+ Strict-Transport-Security:
449
+ - max-age=16070400; includeSubDomains
450
+ Vary:
451
+ - Origin
452
+ X-Content-Type-Options:
453
+ - nosniff
454
+ X-Datarobot-Request-Id:
455
+ - c8341bb6081d5bc81821ebc4cf5c083e
456
+ X-Frame-Options:
457
+ - SAMEORIGIN
458
+ X-Ratelimit-Limit:
459
+ - "-1"
460
+ X-Ratelimit-Remaining:
461
+ - '0'
462
+ X-Ratelimit-Reset:
463
+ - '1562953893'
464
+ X-Xss-Protection:
465
+ - 1; mode=block
466
+ body:
467
+ encoding: UTF-8
468
+ string: '{"status": "INITIALIZED", "code": 0, "description": "Initial Training",
469
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
470
+ "created": "2019-08-27T18:37:55.557791Z", "message": "", "statusType": "Automodel",
471
+ "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
472
+ http_version:
473
+ recorded_at: Tue, 27 Aug 2019 18:38:04 GMT
474
+ - request:
475
+ method: get
476
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
477
+ body:
478
+ encoding: US-ASCII
479
+ string: ''
480
+ headers:
481
+ Accept-Encoding:
482
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
483
+ Accept:
484
+ - "*/*"
485
+ User-Agent:
486
+ - datarobot-ai/ruby
487
+ Content-Type:
488
+ - application/json
489
+ Authorization:
490
+ - Bearer testingKey
491
+ response:
492
+ status:
493
+ code: 200
494
+ message: OK
495
+ headers:
496
+ Date:
497
+ - Tue, 27 Aug 2019 18:38:05 GMT
498
+ Content-Type:
499
+ - application/json
500
+ Content-Length:
501
+ - '313'
502
+ Connection:
503
+ - keep-alive
504
+ Server:
505
+ - openresty
506
+ Set-Cookie:
507
+ - SERVERID=blue; path=/
508
+ Strict-Transport-Security:
509
+ - max-age=16070400; includeSubDomains
510
+ Vary:
511
+ - Origin
512
+ X-Content-Type-Options:
513
+ - nosniff
514
+ X-Datarobot-Request-Id:
515
+ - df82ab4ee1b244b32c085944b9a83dd2
516
+ X-Frame-Options:
517
+ - SAMEORIGIN
518
+ X-Ratelimit-Limit:
519
+ - "-1"
520
+ X-Ratelimit-Remaining:
521
+ - '0'
522
+ X-Ratelimit-Reset:
523
+ - '1562953893'
524
+ X-Xss-Protection:
525
+ - 1; mode=block
526
+ body:
527
+ encoding: UTF-8
528
+ string: '{"status": "INITIALIZED", "code": 0, "description": "Initial Training",
529
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
530
+ "created": "2019-08-27T18:37:55.557791Z", "message": "", "statusType": "Automodel",
531
+ "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
532
+ http_version:
533
+ recorded_at: Tue, 27 Aug 2019 18:38:05 GMT
534
+ - request:
535
+ method: get
536
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
537
+ body:
538
+ encoding: US-ASCII
539
+ string: ''
540
+ headers:
541
+ Accept-Encoding:
542
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
543
+ Accept:
544
+ - "*/*"
545
+ User-Agent:
546
+ - datarobot-ai/ruby
547
+ Content-Type:
548
+ - application/json
549
+ Authorization:
550
+ - Bearer testingKey
551
+ response:
552
+ status:
553
+ code: 200
554
+ message: OK
555
+ headers:
556
+ Date:
557
+ - Tue, 27 Aug 2019 18:38:06 GMT
558
+ Content-Type:
559
+ - application/json
560
+ Content-Length:
561
+ - '349'
562
+ Connection:
563
+ - keep-alive
564
+ Server:
565
+ - openresty
566
+ Set-Cookie:
567
+ - SERVERID=blue; path=/
568
+ Strict-Transport-Security:
569
+ - max-age=16070400; includeSubDomains
570
+ Vary:
571
+ - Origin
572
+ X-Content-Type-Options:
573
+ - nosniff
574
+ X-Datarobot-Request-Id:
575
+ - 2f4ca5517a9af7ad88257c305fc2f89f
576
+ X-Frame-Options:
577
+ - SAMEORIGIN
578
+ X-Ratelimit-Limit:
579
+ - "-1"
580
+ X-Ratelimit-Remaining:
581
+ - '0'
582
+ X-Ratelimit-Reset:
583
+ - '1562953893'
584
+ X-Xss-Protection:
585
+ - 1; mode=block
586
+ body:
587
+ encoding: UTF-8
588
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
589
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
590
+ "created": "2019-08-27T18:37:55.557791Z", "message": "The thorough column
591
+ inspection has begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
592
+ http_version:
593
+ recorded_at: Tue, 27 Aug 2019 18:38:06 GMT
594
+ - request:
595
+ method: get
596
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
597
+ body:
598
+ encoding: US-ASCII
599
+ string: ''
600
+ headers:
601
+ Accept-Encoding:
602
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
603
+ Accept:
604
+ - "*/*"
605
+ User-Agent:
606
+ - datarobot-ai/ruby
607
+ Content-Type:
608
+ - application/json
609
+ Authorization:
610
+ - Bearer testingKey
611
+ response:
612
+ status:
613
+ code: 200
614
+ message: OK
615
+ headers:
616
+ Date:
617
+ - Tue, 27 Aug 2019 18:38:08 GMT
618
+ Content-Type:
619
+ - application/json
620
+ Content-Length:
621
+ - '349'
622
+ Connection:
623
+ - keep-alive
624
+ Server:
625
+ - openresty
626
+ Set-Cookie:
627
+ - SERVERID=blue; path=/
628
+ Strict-Transport-Security:
629
+ - max-age=16070400; includeSubDomains
630
+ Vary:
631
+ - Origin
632
+ X-Content-Type-Options:
633
+ - nosniff
634
+ X-Datarobot-Request-Id:
635
+ - 669d792d6c9cf9e607c93ea93b0a81cb
636
+ X-Frame-Options:
637
+ - SAMEORIGIN
638
+ X-Ratelimit-Limit:
639
+ - "-1"
640
+ X-Ratelimit-Remaining:
641
+ - '0'
642
+ X-Ratelimit-Reset:
643
+ - '1562953893'
644
+ X-Xss-Protection:
645
+ - 1; mode=block
646
+ body:
647
+ encoding: UTF-8
648
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
649
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
650
+ "created": "2019-08-27T18:37:55.557791Z", "message": "The thorough column
651
+ inspection has begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
652
+ http_version:
653
+ recorded_at: Tue, 27 Aug 2019 18:38:08 GMT
654
+ - request:
655
+ method: get
656
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
657
+ body:
658
+ encoding: US-ASCII
659
+ string: ''
660
+ headers:
661
+ Accept-Encoding:
662
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
663
+ Accept:
664
+ - "*/*"
665
+ User-Agent:
666
+ - datarobot-ai/ruby
667
+ Content-Type:
668
+ - application/json
669
+ Authorization:
670
+ - Bearer testingKey
671
+ response:
672
+ status:
673
+ code: 200
674
+ message: OK
675
+ headers:
676
+ Date:
677
+ - Tue, 27 Aug 2019 18:38:09 GMT
678
+ Content-Type:
679
+ - application/json
680
+ Content-Length:
681
+ - '338'
682
+ Connection:
683
+ - keep-alive
684
+ Server:
685
+ - openresty
686
+ Set-Cookie:
687
+ - SERVERID=blue; path=/
688
+ Strict-Transport-Security:
689
+ - max-age=16070400; includeSubDomains
690
+ Vary:
691
+ - Origin
692
+ X-Content-Type-Options:
693
+ - nosniff
694
+ X-Datarobot-Request-Id:
695
+ - 7a0a3d7ed2c083c0b233ad7e80d05d7d
696
+ X-Frame-Options:
697
+ - SAMEORIGIN
698
+ X-Ratelimit-Limit:
699
+ - "-1"
700
+ X-Ratelimit-Remaining:
701
+ - '0'
702
+ X-Ratelimit-Reset:
703
+ - '1562953893'
704
+ X-Xss-Protection:
705
+ - 1; mode=block
706
+ body:
707
+ encoding: UTF-8
708
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
709
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
710
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
711
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
712
+ http_version:
713
+ recorded_at: Tue, 27 Aug 2019 18:38:09 GMT
714
+ - request:
715
+ method: get
716
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
717
+ body:
718
+ encoding: US-ASCII
719
+ string: ''
720
+ headers:
721
+ Accept-Encoding:
722
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
723
+ Accept:
724
+ - "*/*"
725
+ User-Agent:
726
+ - datarobot-ai/ruby
727
+ Content-Type:
728
+ - application/json
729
+ Authorization:
730
+ - Bearer testingKey
731
+ response:
732
+ status:
733
+ code: 200
734
+ message: OK
735
+ headers:
736
+ Date:
737
+ - Tue, 27 Aug 2019 18:38:10 GMT
738
+ Content-Type:
739
+ - application/json
740
+ Content-Length:
741
+ - '338'
742
+ Connection:
743
+ - keep-alive
744
+ Server:
745
+ - openresty
746
+ Set-Cookie:
747
+ - SERVERID=blue; path=/
748
+ Strict-Transport-Security:
749
+ - max-age=16070400; includeSubDomains
750
+ Vary:
751
+ - Origin
752
+ X-Content-Type-Options:
753
+ - nosniff
754
+ X-Datarobot-Request-Id:
755
+ - a82af56834c73833758971ad1f3b57f4
756
+ X-Frame-Options:
757
+ - SAMEORIGIN
758
+ X-Ratelimit-Limit:
759
+ - "-1"
760
+ X-Ratelimit-Remaining:
761
+ - '0'
762
+ X-Ratelimit-Reset:
763
+ - '1562953893'
764
+ X-Xss-Protection:
765
+ - 1; mode=block
766
+ body:
767
+ encoding: UTF-8
768
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
769
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
770
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
771
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
772
+ http_version:
773
+ recorded_at: Tue, 27 Aug 2019 18:38:10 GMT
774
+ - request:
775
+ method: get
776
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
777
+ body:
778
+ encoding: US-ASCII
779
+ string: ''
780
+ headers:
781
+ Accept-Encoding:
782
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
783
+ Accept:
784
+ - "*/*"
785
+ User-Agent:
786
+ - datarobot-ai/ruby
787
+ Content-Type:
788
+ - application/json
789
+ Authorization:
790
+ - Bearer testingKey
791
+ response:
792
+ status:
793
+ code: 200
794
+ message: OK
795
+ headers:
796
+ Date:
797
+ - Tue, 27 Aug 2019 18:38:12 GMT
798
+ Content-Type:
799
+ - application/json
800
+ Content-Length:
801
+ - '338'
802
+ Connection:
803
+ - keep-alive
804
+ Server:
805
+ - openresty
806
+ Set-Cookie:
807
+ - SERVERID=blue; path=/
808
+ Strict-Transport-Security:
809
+ - max-age=16070400; includeSubDomains
810
+ Vary:
811
+ - Origin
812
+ X-Content-Type-Options:
813
+ - nosniff
814
+ X-Datarobot-Request-Id:
815
+ - f6fa32c6c0fb3cd06cd85ae2eddb2d43
816
+ X-Frame-Options:
817
+ - SAMEORIGIN
818
+ X-Ratelimit-Limit:
819
+ - "-1"
820
+ X-Ratelimit-Remaining:
821
+ - '0'
822
+ X-Ratelimit-Reset:
823
+ - '1562953893'
824
+ X-Xss-Protection:
825
+ - 1; mode=block
826
+ body:
827
+ encoding: UTF-8
828
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
829
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
830
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
831
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
832
+ http_version:
833
+ recorded_at: Tue, 27 Aug 2019 18:38:12 GMT
834
+ - request:
835
+ method: get
836
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
837
+ body:
838
+ encoding: US-ASCII
839
+ string: ''
840
+ headers:
841
+ Accept-Encoding:
842
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
843
+ Accept:
844
+ - "*/*"
845
+ User-Agent:
846
+ - datarobot-ai/ruby
847
+ Content-Type:
848
+ - application/json
849
+ Authorization:
850
+ - Bearer testingKey
851
+ response:
852
+ status:
853
+ code: 200
854
+ message: OK
855
+ headers:
856
+ Date:
857
+ - Tue, 27 Aug 2019 18:38:13 GMT
858
+ Content-Type:
859
+ - application/json
860
+ Content-Length:
861
+ - '338'
862
+ Connection:
863
+ - keep-alive
864
+ Server:
865
+ - openresty
866
+ Set-Cookie:
867
+ - SERVERID=blue; path=/
868
+ Strict-Transport-Security:
869
+ - max-age=16070400; includeSubDomains
870
+ Vary:
871
+ - Origin
872
+ X-Content-Type-Options:
873
+ - nosniff
874
+ X-Datarobot-Request-Id:
875
+ - 9114a0f58a502aa9a14fb04ad652933a
876
+ X-Frame-Options:
877
+ - SAMEORIGIN
878
+ X-Ratelimit-Limit:
879
+ - "-1"
880
+ X-Ratelimit-Remaining:
881
+ - '0'
882
+ X-Ratelimit-Reset:
883
+ - '1562953893'
884
+ X-Xss-Protection:
885
+ - 1; mode=block
886
+ body:
887
+ encoding: UTF-8
888
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
889
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
890
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
891
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
892
+ http_version:
893
+ recorded_at: Tue, 27 Aug 2019 18:38:13 GMT
894
+ - request:
895
+ method: get
896
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
897
+ body:
898
+ encoding: US-ASCII
899
+ string: ''
900
+ headers:
901
+ Accept-Encoding:
902
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
903
+ Accept:
904
+ - "*/*"
905
+ User-Agent:
906
+ - datarobot-ai/ruby
907
+ Content-Type:
908
+ - application/json
909
+ Authorization:
910
+ - Bearer testingKey
911
+ response:
912
+ status:
913
+ code: 200
914
+ message: OK
915
+ headers:
916
+ Date:
917
+ - Tue, 27 Aug 2019 18:38:14 GMT
918
+ Content-Type:
919
+ - application/json
920
+ Content-Length:
921
+ - '338'
922
+ Connection:
923
+ - keep-alive
924
+ Server:
925
+ - openresty
926
+ Set-Cookie:
927
+ - SERVERID=blue; path=/
928
+ Strict-Transport-Security:
929
+ - max-age=16070400; includeSubDomains
930
+ Vary:
931
+ - Origin
932
+ X-Content-Type-Options:
933
+ - nosniff
934
+ X-Datarobot-Request-Id:
935
+ - 1c3d02bd2b89426c0fe6700d1b73a586
936
+ X-Frame-Options:
937
+ - SAMEORIGIN
938
+ X-Ratelimit-Limit:
939
+ - "-1"
940
+ X-Ratelimit-Remaining:
941
+ - '0'
942
+ X-Ratelimit-Reset:
943
+ - '1562953893'
944
+ X-Xss-Protection:
945
+ - 1; mode=block
946
+ body:
947
+ encoding: UTF-8
948
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
949
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
950
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
951
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
952
+ http_version:
953
+ recorded_at: Tue, 27 Aug 2019 18:38:14 GMT
954
+ - request:
955
+ method: get
956
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
957
+ body:
958
+ encoding: US-ASCII
959
+ string: ''
960
+ headers:
961
+ Accept-Encoding:
962
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
963
+ Accept:
964
+ - "*/*"
965
+ User-Agent:
966
+ - datarobot-ai/ruby
967
+ Content-Type:
968
+ - application/json
969
+ Authorization:
970
+ - Bearer testingKey
971
+ response:
972
+ status:
973
+ code: 200
974
+ message: OK
975
+ headers:
976
+ Date:
977
+ - Tue, 27 Aug 2019 18:38:16 GMT
978
+ Content-Type:
979
+ - application/json
980
+ Content-Length:
981
+ - '338'
982
+ Connection:
983
+ - keep-alive
984
+ Server:
985
+ - openresty
986
+ Set-Cookie:
987
+ - SERVERID=blue; path=/
988
+ Strict-Transport-Security:
989
+ - max-age=16070400; includeSubDomains
990
+ Vary:
991
+ - Origin
992
+ X-Content-Type-Options:
993
+ - nosniff
994
+ X-Datarobot-Request-Id:
995
+ - 28b041d3156b1adc7bb1abd141cf60c9
996
+ X-Frame-Options:
997
+ - SAMEORIGIN
998
+ X-Ratelimit-Limit:
999
+ - "-1"
1000
+ X-Ratelimit-Remaining:
1001
+ - '0'
1002
+ X-Ratelimit-Reset:
1003
+ - '1562953893'
1004
+ X-Xss-Protection:
1005
+ - 1; mode=block
1006
+ body:
1007
+ encoding: UTF-8
1008
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1009
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1010
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
1011
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1012
+ http_version:
1013
+ recorded_at: Tue, 27 Aug 2019 18:38:16 GMT
1014
+ - request:
1015
+ method: get
1016
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1017
+ body:
1018
+ encoding: US-ASCII
1019
+ string: ''
1020
+ headers:
1021
+ Accept-Encoding:
1022
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1023
+ Accept:
1024
+ - "*/*"
1025
+ User-Agent:
1026
+ - datarobot-ai/ruby
1027
+ Content-Type:
1028
+ - application/json
1029
+ Authorization:
1030
+ - Bearer testingKey
1031
+ response:
1032
+ status:
1033
+ code: 200
1034
+ message: OK
1035
+ headers:
1036
+ Date:
1037
+ - Tue, 27 Aug 2019 18:38:17 GMT
1038
+ Content-Type:
1039
+ - application/json
1040
+ Content-Length:
1041
+ - '338'
1042
+ Connection:
1043
+ - keep-alive
1044
+ Server:
1045
+ - openresty
1046
+ Set-Cookie:
1047
+ - SERVERID=blue; path=/
1048
+ Strict-Transport-Security:
1049
+ - max-age=16070400; includeSubDomains
1050
+ Vary:
1051
+ - Origin
1052
+ X-Content-Type-Options:
1053
+ - nosniff
1054
+ X-Datarobot-Request-Id:
1055
+ - a15610d7d7b3502d0c6d643f79f0dd65
1056
+ X-Frame-Options:
1057
+ - SAMEORIGIN
1058
+ X-Ratelimit-Limit:
1059
+ - "-1"
1060
+ X-Ratelimit-Remaining:
1061
+ - '0'
1062
+ X-Ratelimit-Reset:
1063
+ - '1562953893'
1064
+ X-Xss-Protection:
1065
+ - 1; mode=block
1066
+ body:
1067
+ encoding: UTF-8
1068
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1069
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1070
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
1071
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1072
+ http_version:
1073
+ recorded_at: Tue, 27 Aug 2019 18:38:17 GMT
1074
+ - request:
1075
+ method: get
1076
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1077
+ body:
1078
+ encoding: US-ASCII
1079
+ string: ''
1080
+ headers:
1081
+ Accept-Encoding:
1082
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1083
+ Accept:
1084
+ - "*/*"
1085
+ User-Agent:
1086
+ - datarobot-ai/ruby
1087
+ Content-Type:
1088
+ - application/json
1089
+ Authorization:
1090
+ - Bearer testingKey
1091
+ response:
1092
+ status:
1093
+ code: 200
1094
+ message: OK
1095
+ headers:
1096
+ Date:
1097
+ - Tue, 27 Aug 2019 18:38:18 GMT
1098
+ Content-Type:
1099
+ - application/json
1100
+ Content-Length:
1101
+ - '338'
1102
+ Connection:
1103
+ - keep-alive
1104
+ Server:
1105
+ - openresty
1106
+ Set-Cookie:
1107
+ - SERVERID=blue; path=/
1108
+ Strict-Transport-Security:
1109
+ - max-age=16070400; includeSubDomains
1110
+ Vary:
1111
+ - Origin
1112
+ X-Content-Type-Options:
1113
+ - nosniff
1114
+ X-Datarobot-Request-Id:
1115
+ - fef41d62b9e9fde287e7a0496a60cf98
1116
+ X-Frame-Options:
1117
+ - SAMEORIGIN
1118
+ X-Ratelimit-Limit:
1119
+ - "-1"
1120
+ X-Ratelimit-Remaining:
1121
+ - '0'
1122
+ X-Ratelimit-Reset:
1123
+ - '1562953893'
1124
+ X-Xss-Protection:
1125
+ - 1; mode=block
1126
+ body:
1127
+ encoding: UTF-8
1128
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1129
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1130
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
1131
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1132
+ http_version:
1133
+ recorded_at: Tue, 27 Aug 2019 18:38:18 GMT
1134
+ - request:
1135
+ method: get
1136
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1137
+ body:
1138
+ encoding: US-ASCII
1139
+ string: ''
1140
+ headers:
1141
+ Accept-Encoding:
1142
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1143
+ Accept:
1144
+ - "*/*"
1145
+ User-Agent:
1146
+ - datarobot-ai/ruby
1147
+ Content-Type:
1148
+ - application/json
1149
+ Authorization:
1150
+ - Bearer testingKey
1151
+ response:
1152
+ status:
1153
+ code: 200
1154
+ message: OK
1155
+ headers:
1156
+ Date:
1157
+ - Tue, 27 Aug 2019 18:38:20 GMT
1158
+ Content-Type:
1159
+ - application/json
1160
+ Content-Length:
1161
+ - '338'
1162
+ Connection:
1163
+ - keep-alive
1164
+ Server:
1165
+ - openresty
1166
+ Set-Cookie:
1167
+ - SERVERID=blue; path=/
1168
+ Strict-Transport-Security:
1169
+ - max-age=16070400; includeSubDomains
1170
+ Vary:
1171
+ - Origin
1172
+ X-Content-Type-Options:
1173
+ - nosniff
1174
+ X-Datarobot-Request-Id:
1175
+ - 7a63af659df9e8a5c71c3d7f462cac1a
1176
+ X-Frame-Options:
1177
+ - SAMEORIGIN
1178
+ X-Ratelimit-Limit:
1179
+ - "-1"
1180
+ X-Ratelimit-Remaining:
1181
+ - '0'
1182
+ X-Ratelimit-Reset:
1183
+ - '1562953893'
1184
+ X-Xss-Protection:
1185
+ - 1; mode=block
1186
+ body:
1187
+ encoding: UTF-8
1188
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1189
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1190
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
1191
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1192
+ http_version:
1193
+ recorded_at: Tue, 27 Aug 2019 18:38:20 GMT
1194
+ - request:
1195
+ method: get
1196
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1197
+ body:
1198
+ encoding: US-ASCII
1199
+ string: ''
1200
+ headers:
1201
+ Accept-Encoding:
1202
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1203
+ Accept:
1204
+ - "*/*"
1205
+ User-Agent:
1206
+ - datarobot-ai/ruby
1207
+ Content-Type:
1208
+ - application/json
1209
+ Authorization:
1210
+ - Bearer testingKey
1211
+ response:
1212
+ status:
1213
+ code: 200
1214
+ message: OK
1215
+ headers:
1216
+ Date:
1217
+ - Tue, 27 Aug 2019 18:38:21 GMT
1218
+ Content-Type:
1219
+ - application/json
1220
+ Content-Length:
1221
+ - '338'
1222
+ Connection:
1223
+ - keep-alive
1224
+ Server:
1225
+ - openresty
1226
+ Set-Cookie:
1227
+ - SERVERID=blue; path=/
1228
+ Strict-Transport-Security:
1229
+ - max-age=16070400; includeSubDomains
1230
+ Vary:
1231
+ - Origin
1232
+ X-Content-Type-Options:
1233
+ - nosniff
1234
+ X-Datarobot-Request-Id:
1235
+ - fcc913af26a7693b1876603d9532f7f8
1236
+ X-Frame-Options:
1237
+ - SAMEORIGIN
1238
+ X-Ratelimit-Limit:
1239
+ - "-1"
1240
+ X-Ratelimit-Remaining:
1241
+ - '0'
1242
+ X-Ratelimit-Reset:
1243
+ - '1562953893'
1244
+ X-Xss-Protection:
1245
+ - 1; mode=block
1246
+ body:
1247
+ encoding: UTF-8
1248
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1249
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1250
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
1251
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1252
+ http_version:
1253
+ recorded_at: Tue, 27 Aug 2019 18:38:21 GMT
1254
+ - request:
1255
+ method: get
1256
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1257
+ body:
1258
+ encoding: US-ASCII
1259
+ string: ''
1260
+ headers:
1261
+ Accept-Encoding:
1262
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1263
+ Accept:
1264
+ - "*/*"
1265
+ User-Agent:
1266
+ - datarobot-ai/ruby
1267
+ Content-Type:
1268
+ - application/json
1269
+ Authorization:
1270
+ - Bearer testingKey
1271
+ response:
1272
+ status:
1273
+ code: 200
1274
+ message: OK
1275
+ headers:
1276
+ Date:
1277
+ - Tue, 27 Aug 2019 18:38:22 GMT
1278
+ Content-Type:
1279
+ - application/json
1280
+ Content-Length:
1281
+ - '338'
1282
+ Connection:
1283
+ - keep-alive
1284
+ Server:
1285
+ - openresty
1286
+ Set-Cookie:
1287
+ - SERVERID=blue; path=/
1288
+ Strict-Transport-Security:
1289
+ - max-age=16070400; includeSubDomains
1290
+ Vary:
1291
+ - Origin
1292
+ X-Content-Type-Options:
1293
+ - nosniff
1294
+ X-Datarobot-Request-Id:
1295
+ - b9f3551cfb0160b2506f6fd818e4db97
1296
+ X-Frame-Options:
1297
+ - SAMEORIGIN
1298
+ X-Ratelimit-Limit:
1299
+ - "-1"
1300
+ X-Ratelimit-Remaining:
1301
+ - '0'
1302
+ X-Ratelimit-Reset:
1303
+ - '1562953893'
1304
+ X-Xss-Protection:
1305
+ - 1; mode=block
1306
+ body:
1307
+ encoding: UTF-8
1308
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1309
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1310
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
1311
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1312
+ http_version:
1313
+ recorded_at: Tue, 27 Aug 2019 18:38:22 GMT
1314
+ - request:
1315
+ method: get
1316
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1317
+ body:
1318
+ encoding: US-ASCII
1319
+ string: ''
1320
+ headers:
1321
+ Accept-Encoding:
1322
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1323
+ Accept:
1324
+ - "*/*"
1325
+ User-Agent:
1326
+ - datarobot-ai/ruby
1327
+ Content-Type:
1328
+ - application/json
1329
+ Authorization:
1330
+ - Bearer testingKey
1331
+ response:
1332
+ status:
1333
+ code: 200
1334
+ message: OK
1335
+ headers:
1336
+ Date:
1337
+ - Tue, 27 Aug 2019 18:38:24 GMT
1338
+ Content-Type:
1339
+ - application/json
1340
+ Content-Length:
1341
+ - '338'
1342
+ Connection:
1343
+ - keep-alive
1344
+ Server:
1345
+ - openresty
1346
+ Set-Cookie:
1347
+ - SERVERID=blue; path=/
1348
+ Strict-Transport-Security:
1349
+ - max-age=16070400; includeSubDomains
1350
+ Vary:
1351
+ - Origin
1352
+ X-Content-Type-Options:
1353
+ - nosniff
1354
+ X-Datarobot-Request-Id:
1355
+ - ce3a189cd0eb93afb26b851a057f7a8c
1356
+ X-Frame-Options:
1357
+ - SAMEORIGIN
1358
+ X-Ratelimit-Limit:
1359
+ - "-1"
1360
+ X-Ratelimit-Remaining:
1361
+ - '0'
1362
+ X-Ratelimit-Reset:
1363
+ - '1562953893'
1364
+ X-Xss-Protection:
1365
+ - 1; mode=block
1366
+ body:
1367
+ encoding: UTF-8
1368
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1369
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1370
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
1371
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1372
+ http_version:
1373
+ recorded_at: Tue, 27 Aug 2019 18:38:24 GMT
1374
+ - request:
1375
+ method: get
1376
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1377
+ body:
1378
+ encoding: US-ASCII
1379
+ string: ''
1380
+ headers:
1381
+ Accept-Encoding:
1382
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1383
+ Accept:
1384
+ - "*/*"
1385
+ User-Agent:
1386
+ - datarobot-ai/ruby
1387
+ Content-Type:
1388
+ - application/json
1389
+ Authorization:
1390
+ - Bearer testingKey
1391
+ response:
1392
+ status:
1393
+ code: 200
1394
+ message: OK
1395
+ headers:
1396
+ Date:
1397
+ - Tue, 27 Aug 2019 18:38:25 GMT
1398
+ Content-Type:
1399
+ - application/json
1400
+ Content-Length:
1401
+ - '338'
1402
+ Connection:
1403
+ - keep-alive
1404
+ Server:
1405
+ - openresty
1406
+ Set-Cookie:
1407
+ - SERVERID=blue; path=/
1408
+ Strict-Transport-Security:
1409
+ - max-age=16070400; includeSubDomains
1410
+ Vary:
1411
+ - Origin
1412
+ X-Content-Type-Options:
1413
+ - nosniff
1414
+ X-Datarobot-Request-Id:
1415
+ - 295f751dab97545accf1a4e99d308f7c
1416
+ X-Frame-Options:
1417
+ - SAMEORIGIN
1418
+ X-Ratelimit-Limit:
1419
+ - "-1"
1420
+ X-Ratelimit-Remaining:
1421
+ - '0'
1422
+ X-Ratelimit-Reset:
1423
+ - '1562953893'
1424
+ X-Xss-Protection:
1425
+ - 1; mode=block
1426
+ body:
1427
+ encoding: UTF-8
1428
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1429
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1430
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
1431
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1432
+ http_version:
1433
+ recorded_at: Tue, 27 Aug 2019 18:38:25 GMT
1434
+ - request:
1435
+ method: get
1436
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1437
+ body:
1438
+ encoding: US-ASCII
1439
+ string: ''
1440
+ headers:
1441
+ Accept-Encoding:
1442
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1443
+ Accept:
1444
+ - "*/*"
1445
+ User-Agent:
1446
+ - datarobot-ai/ruby
1447
+ Content-Type:
1448
+ - application/json
1449
+ Authorization:
1450
+ - Bearer testingKey
1451
+ response:
1452
+ status:
1453
+ code: 200
1454
+ message: OK
1455
+ headers:
1456
+ Date:
1457
+ - Tue, 27 Aug 2019 18:38:26 GMT
1458
+ Content-Type:
1459
+ - application/json
1460
+ Content-Length:
1461
+ - '338'
1462
+ Connection:
1463
+ - keep-alive
1464
+ Server:
1465
+ - openresty
1466
+ Set-Cookie:
1467
+ - SERVERID=blue; path=/
1468
+ Strict-Transport-Security:
1469
+ - max-age=16070400; includeSubDomains
1470
+ Vary:
1471
+ - Origin
1472
+ X-Content-Type-Options:
1473
+ - nosniff
1474
+ X-Datarobot-Request-Id:
1475
+ - f0afaa8ee555fb87118025b9e35a406d
1476
+ X-Frame-Options:
1477
+ - SAMEORIGIN
1478
+ X-Ratelimit-Limit:
1479
+ - "-1"
1480
+ X-Ratelimit-Remaining:
1481
+ - '0'
1482
+ X-Ratelimit-Reset:
1483
+ - '1562953893'
1484
+ X-Xss-Protection:
1485
+ - 1; mode=block
1486
+ body:
1487
+ encoding: UTF-8
1488
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1489
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1490
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Preparing modeling partitions",
1491
+ "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1492
+ http_version:
1493
+ recorded_at: Tue, 27 Aug 2019 18:38:26 GMT
1494
+ - request:
1495
+ method: get
1496
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1497
+ body:
1498
+ encoding: US-ASCII
1499
+ string: ''
1500
+ headers:
1501
+ Accept-Encoding:
1502
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1503
+ Accept:
1504
+ - "*/*"
1505
+ User-Agent:
1506
+ - datarobot-ai/ruby
1507
+ Content-Type:
1508
+ - application/json
1509
+ Authorization:
1510
+ - Bearer testingKey
1511
+ response:
1512
+ status:
1513
+ code: 200
1514
+ message: OK
1515
+ headers:
1516
+ Date:
1517
+ - Tue, 27 Aug 2019 18:38:28 GMT
1518
+ Content-Type:
1519
+ - application/json
1520
+ Content-Length:
1521
+ - '352'
1522
+ Connection:
1523
+ - keep-alive
1524
+ Server:
1525
+ - openresty
1526
+ Set-Cookie:
1527
+ - SERVERID=blue; path=/
1528
+ Strict-Transport-Security:
1529
+ - max-age=16070400; includeSubDomains
1530
+ Vary:
1531
+ - Origin
1532
+ X-Content-Type-Options:
1533
+ - nosniff
1534
+ X-Datarobot-Request-Id:
1535
+ - f74714f41ea163fe0dc1bb53698cd097
1536
+ X-Frame-Options:
1537
+ - SAMEORIGIN
1538
+ X-Ratelimit-Limit:
1539
+ - "-1"
1540
+ X-Ratelimit-Remaining:
1541
+ - '0'
1542
+ X-Ratelimit-Reset:
1543
+ - '1562953893'
1544
+ X-Xss-Protection:
1545
+ - 1; mode=block
1546
+ body:
1547
+ encoding: UTF-8
1548
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1549
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1550
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Inspecting column relationships
1551
+ with target", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1552
+ http_version:
1553
+ recorded_at: Tue, 27 Aug 2019 18:38:28 GMT
1554
+ - request:
1555
+ method: get
1556
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1557
+ body:
1558
+ encoding: US-ASCII
1559
+ string: ''
1560
+ headers:
1561
+ Accept-Encoding:
1562
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1563
+ Accept:
1564
+ - "*/*"
1565
+ User-Agent:
1566
+ - datarobot-ai/ruby
1567
+ Content-Type:
1568
+ - application/json
1569
+ Authorization:
1570
+ - Bearer testingKey
1571
+ response:
1572
+ status:
1573
+ code: 200
1574
+ message: OK
1575
+ headers:
1576
+ Date:
1577
+ - Tue, 27 Aug 2019 18:38:29 GMT
1578
+ Content-Type:
1579
+ - application/json
1580
+ Content-Length:
1581
+ - '352'
1582
+ Connection:
1583
+ - keep-alive
1584
+ Server:
1585
+ - openresty
1586
+ Set-Cookie:
1587
+ - SERVERID=blue; path=/
1588
+ Strict-Transport-Security:
1589
+ - max-age=16070400; includeSubDomains
1590
+ Vary:
1591
+ - Origin
1592
+ X-Content-Type-Options:
1593
+ - nosniff
1594
+ X-Datarobot-Request-Id:
1595
+ - d7ed7b43f1e8f0fc667137005488c96f
1596
+ X-Frame-Options:
1597
+ - SAMEORIGIN
1598
+ X-Ratelimit-Limit:
1599
+ - "-1"
1600
+ X-Ratelimit-Remaining:
1601
+ - '0'
1602
+ X-Ratelimit-Reset:
1603
+ - '1562953893'
1604
+ X-Xss-Protection:
1605
+ - 1; mode=block
1606
+ body:
1607
+ encoding: UTF-8
1608
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1609
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1610
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Inspecting column relationships
1611
+ with target", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1612
+ http_version:
1613
+ recorded_at: Tue, 27 Aug 2019 18:38:29 GMT
1614
+ - request:
1615
+ method: get
1616
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1617
+ body:
1618
+ encoding: US-ASCII
1619
+ string: ''
1620
+ headers:
1621
+ Accept-Encoding:
1622
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1623
+ Accept:
1624
+ - "*/*"
1625
+ User-Agent:
1626
+ - datarobot-ai/ruby
1627
+ Content-Type:
1628
+ - application/json
1629
+ Authorization:
1630
+ - Bearer testingKey
1631
+ response:
1632
+ status:
1633
+ code: 200
1634
+ message: OK
1635
+ headers:
1636
+ Date:
1637
+ - Tue, 27 Aug 2019 18:38:30 GMT
1638
+ Content-Type:
1639
+ - application/json
1640
+ Content-Length:
1641
+ - '347'
1642
+ Connection:
1643
+ - keep-alive
1644
+ Server:
1645
+ - openresty
1646
+ Set-Cookie:
1647
+ - SERVERID=blue; path=/
1648
+ Strict-Transport-Security:
1649
+ - max-age=16070400; includeSubDomains
1650
+ Vary:
1651
+ - Origin
1652
+ X-Content-Type-Options:
1653
+ - nosniff
1654
+ X-Datarobot-Request-Id:
1655
+ - 368725f6af44616b8eaf5aadb0a83c9b
1656
+ X-Frame-Options:
1657
+ - SAMEORIGIN
1658
+ X-Ratelimit-Limit:
1659
+ - "-1"
1660
+ X-Ratelimit-Remaining:
1661
+ - '0'
1662
+ X-Ratelimit-Reset:
1663
+ - '1562953893'
1664
+ X-Xss-Protection:
1665
+ - 1; mode=block
1666
+ body:
1667
+ encoding: UTF-8
1668
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1669
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1670
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Beginning model recommendation
1671
+ process", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1672
+ http_version:
1673
+ recorded_at: Tue, 27 Aug 2019 18:38:30 GMT
1674
+ - request:
1675
+ method: get
1676
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1677
+ body:
1678
+ encoding: US-ASCII
1679
+ string: ''
1680
+ headers:
1681
+ Accept-Encoding:
1682
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1683
+ Accept:
1684
+ - "*/*"
1685
+ User-Agent:
1686
+ - datarobot-ai/ruby
1687
+ Content-Type:
1688
+ - application/json
1689
+ Authorization:
1690
+ - Bearer testingKey
1691
+ response:
1692
+ status:
1693
+ code: 200
1694
+ message: OK
1695
+ headers:
1696
+ Date:
1697
+ - Tue, 27 Aug 2019 18:38:32 GMT
1698
+ Content-Type:
1699
+ - application/json
1700
+ Content-Length:
1701
+ - '347'
1702
+ Connection:
1703
+ - keep-alive
1704
+ Server:
1705
+ - openresty
1706
+ Set-Cookie:
1707
+ - SERVERID=blue; path=/
1708
+ Strict-Transport-Security:
1709
+ - max-age=16070400; includeSubDomains
1710
+ Vary:
1711
+ - Origin
1712
+ X-Content-Type-Options:
1713
+ - nosniff
1714
+ X-Datarobot-Request-Id:
1715
+ - e92fe36d1fc461217a137f1cd1e09504
1716
+ X-Frame-Options:
1717
+ - SAMEORIGIN
1718
+ X-Ratelimit-Limit:
1719
+ - "-1"
1720
+ X-Ratelimit-Remaining:
1721
+ - '0'
1722
+ X-Ratelimit-Reset:
1723
+ - '1562953893'
1724
+ X-Xss-Protection:
1725
+ - 1; mode=block
1726
+ body:
1727
+ encoding: UTF-8
1728
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1729
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1730
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Beginning model recommendation
1731
+ process", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1732
+ http_version:
1733
+ recorded_at: Tue, 27 Aug 2019 18:38:32 GMT
1734
+ - request:
1735
+ method: get
1736
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1737
+ body:
1738
+ encoding: US-ASCII
1739
+ string: ''
1740
+ headers:
1741
+ Accept-Encoding:
1742
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1743
+ Accept:
1744
+ - "*/*"
1745
+ User-Agent:
1746
+ - datarobot-ai/ruby
1747
+ Content-Type:
1748
+ - application/json
1749
+ Authorization:
1750
+ - Bearer testingKey
1751
+ response:
1752
+ status:
1753
+ code: 200
1754
+ message: OK
1755
+ headers:
1756
+ Date:
1757
+ - Tue, 27 Aug 2019 18:38:33 GMT
1758
+ Content-Type:
1759
+ - application/json
1760
+ Content-Length:
1761
+ - '347'
1762
+ Connection:
1763
+ - keep-alive
1764
+ Server:
1765
+ - openresty
1766
+ Set-Cookie:
1767
+ - SERVERID=blue; path=/
1768
+ Strict-Transport-Security:
1769
+ - max-age=16070400; includeSubDomains
1770
+ Vary:
1771
+ - Origin
1772
+ X-Content-Type-Options:
1773
+ - nosniff
1774
+ X-Datarobot-Request-Id:
1775
+ - fd256a063bab05bc8e21db01ad3a2511
1776
+ X-Frame-Options:
1777
+ - SAMEORIGIN
1778
+ X-Ratelimit-Limit:
1779
+ - "-1"
1780
+ X-Ratelimit-Remaining:
1781
+ - '0'
1782
+ X-Ratelimit-Reset:
1783
+ - '1562953893'
1784
+ X-Xss-Protection:
1785
+ - 1; mode=block
1786
+ body:
1787
+ encoding: UTF-8
1788
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1789
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1790
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Beginning model recommendation
1791
+ process", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1792
+ http_version:
1793
+ recorded_at: Tue, 27 Aug 2019 18:38:33 GMT
1794
+ - request:
1795
+ method: get
1796
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1797
+ body:
1798
+ encoding: US-ASCII
1799
+ string: ''
1800
+ headers:
1801
+ Accept-Encoding:
1802
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1803
+ Accept:
1804
+ - "*/*"
1805
+ User-Agent:
1806
+ - datarobot-ai/ruby
1807
+ Content-Type:
1808
+ - application/json
1809
+ Authorization:
1810
+ - Bearer testingKey
1811
+ response:
1812
+ status:
1813
+ code: 200
1814
+ message: OK
1815
+ headers:
1816
+ Date:
1817
+ - Tue, 27 Aug 2019 18:38:34 GMT
1818
+ Content-Type:
1819
+ - application/json
1820
+ Content-Length:
1821
+ - '335'
1822
+ Connection:
1823
+ - keep-alive
1824
+ Server:
1825
+ - openresty
1826
+ Set-Cookie:
1827
+ - SERVERID=blue; path=/
1828
+ Strict-Transport-Security:
1829
+ - max-age=16070400; includeSubDomains
1830
+ Vary:
1831
+ - Origin
1832
+ X-Content-Type-Options:
1833
+ - nosniff
1834
+ X-Datarobot-Request-Id:
1835
+ - 86985e3d79bac2bfbff3766bf9e6f120
1836
+ X-Frame-Options:
1837
+ - SAMEORIGIN
1838
+ X-Ratelimit-Limit:
1839
+ - "-1"
1840
+ X-Ratelimit-Remaining:
1841
+ - '0'
1842
+ X-Ratelimit-Reset:
1843
+ - '1562953893'
1844
+ X-Xss-Protection:
1845
+ - 1; mode=block
1846
+ body:
1847
+ encoding: UTF-8
1848
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1849
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1850
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
1851
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1852
+ http_version:
1853
+ recorded_at: Tue, 27 Aug 2019 18:38:34 GMT
1854
+ - request:
1855
+ method: get
1856
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1857
+ body:
1858
+ encoding: US-ASCII
1859
+ string: ''
1860
+ headers:
1861
+ Accept-Encoding:
1862
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1863
+ Accept:
1864
+ - "*/*"
1865
+ User-Agent:
1866
+ - datarobot-ai/ruby
1867
+ Content-Type:
1868
+ - application/json
1869
+ Authorization:
1870
+ - Bearer testingKey
1871
+ response:
1872
+ status:
1873
+ code: 200
1874
+ message: OK
1875
+ headers:
1876
+ Date:
1877
+ - Tue, 27 Aug 2019 18:38:36 GMT
1878
+ Content-Type:
1879
+ - application/json
1880
+ Content-Length:
1881
+ - '335'
1882
+ Connection:
1883
+ - keep-alive
1884
+ Server:
1885
+ - openresty
1886
+ Set-Cookie:
1887
+ - SERVERID=blue; path=/
1888
+ Strict-Transport-Security:
1889
+ - max-age=16070400; includeSubDomains
1890
+ Vary:
1891
+ - Origin
1892
+ X-Content-Type-Options:
1893
+ - nosniff
1894
+ X-Datarobot-Request-Id:
1895
+ - 207cc419948fe81796af9ee183451b8b
1896
+ X-Frame-Options:
1897
+ - SAMEORIGIN
1898
+ X-Ratelimit-Limit:
1899
+ - "-1"
1900
+ X-Ratelimit-Remaining:
1901
+ - '0'
1902
+ X-Ratelimit-Reset:
1903
+ - '1562953893'
1904
+ X-Xss-Protection:
1905
+ - 1; mode=block
1906
+ body:
1907
+ encoding: UTF-8
1908
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1909
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1910
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
1911
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1912
+ http_version:
1913
+ recorded_at: Tue, 27 Aug 2019 18:38:36 GMT
1914
+ - request:
1915
+ method: get
1916
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1917
+ body:
1918
+ encoding: US-ASCII
1919
+ string: ''
1920
+ headers:
1921
+ Accept-Encoding:
1922
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1923
+ Accept:
1924
+ - "*/*"
1925
+ User-Agent:
1926
+ - datarobot-ai/ruby
1927
+ Content-Type:
1928
+ - application/json
1929
+ Authorization:
1930
+ - Bearer testingKey
1931
+ response:
1932
+ status:
1933
+ code: 200
1934
+ message: OK
1935
+ headers:
1936
+ Date:
1937
+ - Tue, 27 Aug 2019 18:38:37 GMT
1938
+ Content-Type:
1939
+ - application/json
1940
+ Content-Length:
1941
+ - '335'
1942
+ Connection:
1943
+ - keep-alive
1944
+ Server:
1945
+ - openresty
1946
+ Set-Cookie:
1947
+ - SERVERID=blue; path=/
1948
+ Strict-Transport-Security:
1949
+ - max-age=16070400; includeSubDomains
1950
+ Vary:
1951
+ - Origin
1952
+ X-Content-Type-Options:
1953
+ - nosniff
1954
+ X-Datarobot-Request-Id:
1955
+ - 1499d0191540860125769680b8830795
1956
+ X-Frame-Options:
1957
+ - SAMEORIGIN
1958
+ X-Ratelimit-Limit:
1959
+ - "-1"
1960
+ X-Ratelimit-Remaining:
1961
+ - '0'
1962
+ X-Ratelimit-Reset:
1963
+ - '1562953893'
1964
+ X-Xss-Protection:
1965
+ - 1; mode=block
1966
+ body:
1967
+ encoding: UTF-8
1968
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
1969
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
1970
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
1971
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
1972
+ http_version:
1973
+ recorded_at: Tue, 27 Aug 2019 18:38:37 GMT
1974
+ - request:
1975
+ method: get
1976
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
1977
+ body:
1978
+ encoding: US-ASCII
1979
+ string: ''
1980
+ headers:
1981
+ Accept-Encoding:
1982
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1983
+ Accept:
1984
+ - "*/*"
1985
+ User-Agent:
1986
+ - datarobot-ai/ruby
1987
+ Content-Type:
1988
+ - application/json
1989
+ Authorization:
1990
+ - Bearer testingKey
1991
+ response:
1992
+ status:
1993
+ code: 200
1994
+ message: OK
1995
+ headers:
1996
+ Date:
1997
+ - Tue, 27 Aug 2019 18:38:38 GMT
1998
+ Content-Type:
1999
+ - application/json
2000
+ Content-Length:
2001
+ - '335'
2002
+ Connection:
2003
+ - keep-alive
2004
+ Server:
2005
+ - openresty
2006
+ Set-Cookie:
2007
+ - SERVERID=blue; path=/
2008
+ Strict-Transport-Security:
2009
+ - max-age=16070400; includeSubDomains
2010
+ Vary:
2011
+ - Origin
2012
+ X-Content-Type-Options:
2013
+ - nosniff
2014
+ X-Datarobot-Request-Id:
2015
+ - 40a6a4007c511b7caa7179ae050882ca
2016
+ X-Frame-Options:
2017
+ - SAMEORIGIN
2018
+ X-Ratelimit-Limit:
2019
+ - "-1"
2020
+ X-Ratelimit-Remaining:
2021
+ - '0'
2022
+ X-Ratelimit-Reset:
2023
+ - '1562953893'
2024
+ X-Xss-Protection:
2025
+ - 1; mode=block
2026
+ body:
2027
+ encoding: UTF-8
2028
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2029
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2030
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2031
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2032
+ http_version:
2033
+ recorded_at: Tue, 27 Aug 2019 18:38:38 GMT
2034
+ - request:
2035
+ method: get
2036
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2037
+ body:
2038
+ encoding: US-ASCII
2039
+ string: ''
2040
+ headers:
2041
+ Accept-Encoding:
2042
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2043
+ Accept:
2044
+ - "*/*"
2045
+ User-Agent:
2046
+ - datarobot-ai/ruby
2047
+ Content-Type:
2048
+ - application/json
2049
+ Authorization:
2050
+ - Bearer testingKey
2051
+ response:
2052
+ status:
2053
+ code: 200
2054
+ message: OK
2055
+ headers:
2056
+ Date:
2057
+ - Tue, 27 Aug 2019 18:38:40 GMT
2058
+ Content-Type:
2059
+ - application/json
2060
+ Content-Length:
2061
+ - '335'
2062
+ Connection:
2063
+ - keep-alive
2064
+ Server:
2065
+ - openresty
2066
+ Set-Cookie:
2067
+ - SERVERID=blue; path=/
2068
+ Strict-Transport-Security:
2069
+ - max-age=16070400; includeSubDomains
2070
+ Vary:
2071
+ - Origin
2072
+ X-Content-Type-Options:
2073
+ - nosniff
2074
+ X-Datarobot-Request-Id:
2075
+ - 02f167cebf7bb51789494ae20ec32fea
2076
+ X-Frame-Options:
2077
+ - SAMEORIGIN
2078
+ X-Ratelimit-Limit:
2079
+ - "-1"
2080
+ X-Ratelimit-Remaining:
2081
+ - '0'
2082
+ X-Ratelimit-Reset:
2083
+ - '1562953893'
2084
+ X-Xss-Protection:
2085
+ - 1; mode=block
2086
+ body:
2087
+ encoding: UTF-8
2088
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2089
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2090
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2091
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2092
+ http_version:
2093
+ recorded_at: Tue, 27 Aug 2019 18:38:40 GMT
2094
+ - request:
2095
+ method: get
2096
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2097
+ body:
2098
+ encoding: US-ASCII
2099
+ string: ''
2100
+ headers:
2101
+ Accept-Encoding:
2102
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2103
+ Accept:
2104
+ - "*/*"
2105
+ User-Agent:
2106
+ - datarobot-ai/ruby
2107
+ Content-Type:
2108
+ - application/json
2109
+ Authorization:
2110
+ - Bearer testingKey
2111
+ response:
2112
+ status:
2113
+ code: 200
2114
+ message: OK
2115
+ headers:
2116
+ Date:
2117
+ - Tue, 27 Aug 2019 18:38:41 GMT
2118
+ Content-Type:
2119
+ - application/json
2120
+ Content-Length:
2121
+ - '335'
2122
+ Connection:
2123
+ - keep-alive
2124
+ Server:
2125
+ - openresty
2126
+ Set-Cookie:
2127
+ - SERVERID=blue; path=/
2128
+ Strict-Transport-Security:
2129
+ - max-age=16070400; includeSubDomains
2130
+ Vary:
2131
+ - Origin
2132
+ X-Content-Type-Options:
2133
+ - nosniff
2134
+ X-Datarobot-Request-Id:
2135
+ - d812f515a263dac0e12e630f552f45e1
2136
+ X-Frame-Options:
2137
+ - SAMEORIGIN
2138
+ X-Ratelimit-Limit:
2139
+ - "-1"
2140
+ X-Ratelimit-Remaining:
2141
+ - '0'
2142
+ X-Ratelimit-Reset:
2143
+ - '1562953893'
2144
+ X-Xss-Protection:
2145
+ - 1; mode=block
2146
+ body:
2147
+ encoding: UTF-8
2148
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2149
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2150
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2151
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2152
+ http_version:
2153
+ recorded_at: Tue, 27 Aug 2019 18:38:41 GMT
2154
+ - request:
2155
+ method: get
2156
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2157
+ body:
2158
+ encoding: US-ASCII
2159
+ string: ''
2160
+ headers:
2161
+ Accept-Encoding:
2162
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2163
+ Accept:
2164
+ - "*/*"
2165
+ User-Agent:
2166
+ - datarobot-ai/ruby
2167
+ Content-Type:
2168
+ - application/json
2169
+ Authorization:
2170
+ - Bearer testingKey
2171
+ response:
2172
+ status:
2173
+ code: 200
2174
+ message: OK
2175
+ headers:
2176
+ Date:
2177
+ - Tue, 27 Aug 2019 18:38:42 GMT
2178
+ Content-Type:
2179
+ - application/json
2180
+ Content-Length:
2181
+ - '335'
2182
+ Connection:
2183
+ - keep-alive
2184
+ Server:
2185
+ - openresty
2186
+ Set-Cookie:
2187
+ - SERVERID=blue; path=/
2188
+ Strict-Transport-Security:
2189
+ - max-age=16070400; includeSubDomains
2190
+ Vary:
2191
+ - Origin
2192
+ X-Content-Type-Options:
2193
+ - nosniff
2194
+ X-Datarobot-Request-Id:
2195
+ - 5c2f3a219ab9505b9b1b369d7befe069
2196
+ X-Frame-Options:
2197
+ - SAMEORIGIN
2198
+ X-Ratelimit-Limit:
2199
+ - "-1"
2200
+ X-Ratelimit-Remaining:
2201
+ - '0'
2202
+ X-Ratelimit-Reset:
2203
+ - '1562953893'
2204
+ X-Xss-Protection:
2205
+ - 1; mode=block
2206
+ body:
2207
+ encoding: UTF-8
2208
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2209
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2210
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2211
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2212
+ http_version:
2213
+ recorded_at: Tue, 27 Aug 2019 18:38:42 GMT
2214
+ - request:
2215
+ method: get
2216
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2217
+ body:
2218
+ encoding: US-ASCII
2219
+ string: ''
2220
+ headers:
2221
+ Accept-Encoding:
2222
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2223
+ Accept:
2224
+ - "*/*"
2225
+ User-Agent:
2226
+ - datarobot-ai/ruby
2227
+ Content-Type:
2228
+ - application/json
2229
+ Authorization:
2230
+ - Bearer testingKey
2231
+ response:
2232
+ status:
2233
+ code: 200
2234
+ message: OK
2235
+ headers:
2236
+ Date:
2237
+ - Tue, 27 Aug 2019 18:38:44 GMT
2238
+ Content-Type:
2239
+ - application/json
2240
+ Content-Length:
2241
+ - '335'
2242
+ Connection:
2243
+ - keep-alive
2244
+ Server:
2245
+ - openresty
2246
+ Set-Cookie:
2247
+ - SERVERID=blue; path=/
2248
+ Strict-Transport-Security:
2249
+ - max-age=16070400; includeSubDomains
2250
+ Vary:
2251
+ - Origin
2252
+ X-Content-Type-Options:
2253
+ - nosniff
2254
+ X-Datarobot-Request-Id:
2255
+ - 9c8f0b32ee09a1e23e9b073a38533511
2256
+ X-Frame-Options:
2257
+ - SAMEORIGIN
2258
+ X-Ratelimit-Limit:
2259
+ - "-1"
2260
+ X-Ratelimit-Remaining:
2261
+ - '0'
2262
+ X-Ratelimit-Reset:
2263
+ - '1562953893'
2264
+ X-Xss-Protection:
2265
+ - 1; mode=block
2266
+ body:
2267
+ encoding: UTF-8
2268
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2269
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2270
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2271
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2272
+ http_version:
2273
+ recorded_at: Tue, 27 Aug 2019 18:38:44 GMT
2274
+ - request:
2275
+ method: get
2276
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2277
+ body:
2278
+ encoding: US-ASCII
2279
+ string: ''
2280
+ headers:
2281
+ Accept-Encoding:
2282
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2283
+ Accept:
2284
+ - "*/*"
2285
+ User-Agent:
2286
+ - datarobot-ai/ruby
2287
+ Content-Type:
2288
+ - application/json
2289
+ Authorization:
2290
+ - Bearer testingKey
2291
+ response:
2292
+ status:
2293
+ code: 200
2294
+ message: OK
2295
+ headers:
2296
+ Date:
2297
+ - Tue, 27 Aug 2019 18:38:45 GMT
2298
+ Content-Type:
2299
+ - application/json
2300
+ Content-Length:
2301
+ - '335'
2302
+ Connection:
2303
+ - keep-alive
2304
+ Server:
2305
+ - openresty
2306
+ Set-Cookie:
2307
+ - SERVERID=blue; path=/
2308
+ Strict-Transport-Security:
2309
+ - max-age=16070400; includeSubDomains
2310
+ Vary:
2311
+ - Origin
2312
+ X-Content-Type-Options:
2313
+ - nosniff
2314
+ X-Datarobot-Request-Id:
2315
+ - 6c065d6605806f0e707e809ad42b5405
2316
+ X-Frame-Options:
2317
+ - SAMEORIGIN
2318
+ X-Ratelimit-Limit:
2319
+ - "-1"
2320
+ X-Ratelimit-Remaining:
2321
+ - '0'
2322
+ X-Ratelimit-Reset:
2323
+ - '1562953893'
2324
+ X-Xss-Protection:
2325
+ - 1; mode=block
2326
+ body:
2327
+ encoding: UTF-8
2328
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2329
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2330
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2331
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2332
+ http_version:
2333
+ recorded_at: Tue, 27 Aug 2019 18:38:45 GMT
2334
+ - request:
2335
+ method: get
2336
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2337
+ body:
2338
+ encoding: US-ASCII
2339
+ string: ''
2340
+ headers:
2341
+ Accept-Encoding:
2342
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2343
+ Accept:
2344
+ - "*/*"
2345
+ User-Agent:
2346
+ - datarobot-ai/ruby
2347
+ Content-Type:
2348
+ - application/json
2349
+ Authorization:
2350
+ - Bearer testingKey
2351
+ response:
2352
+ status:
2353
+ code: 200
2354
+ message: OK
2355
+ headers:
2356
+ Date:
2357
+ - Tue, 27 Aug 2019 18:38:46 GMT
2358
+ Content-Type:
2359
+ - application/json
2360
+ Content-Length:
2361
+ - '335'
2362
+ Connection:
2363
+ - keep-alive
2364
+ Server:
2365
+ - openresty
2366
+ Set-Cookie:
2367
+ - SERVERID=blue; path=/
2368
+ Strict-Transport-Security:
2369
+ - max-age=16070400; includeSubDomains
2370
+ Vary:
2371
+ - Origin
2372
+ X-Content-Type-Options:
2373
+ - nosniff
2374
+ X-Datarobot-Request-Id:
2375
+ - 3e5c446f09e3c3ebb08a5ec01a84c095
2376
+ X-Frame-Options:
2377
+ - SAMEORIGIN
2378
+ X-Ratelimit-Limit:
2379
+ - "-1"
2380
+ X-Ratelimit-Remaining:
2381
+ - '0'
2382
+ X-Ratelimit-Reset:
2383
+ - '1562953893'
2384
+ X-Xss-Protection:
2385
+ - 1; mode=block
2386
+ body:
2387
+ encoding: UTF-8
2388
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2389
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2390
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2391
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2392
+ http_version:
2393
+ recorded_at: Tue, 27 Aug 2019 18:38:46 GMT
2394
+ - request:
2395
+ method: get
2396
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2397
+ body:
2398
+ encoding: US-ASCII
2399
+ string: ''
2400
+ headers:
2401
+ Accept-Encoding:
2402
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2403
+ Accept:
2404
+ - "*/*"
2405
+ User-Agent:
2406
+ - datarobot-ai/ruby
2407
+ Content-Type:
2408
+ - application/json
2409
+ Authorization:
2410
+ - Bearer testingKey
2411
+ response:
2412
+ status:
2413
+ code: 200
2414
+ message: OK
2415
+ headers:
2416
+ Date:
2417
+ - Tue, 27 Aug 2019 18:38:48 GMT
2418
+ Content-Type:
2419
+ - application/json
2420
+ Content-Length:
2421
+ - '335'
2422
+ Connection:
2423
+ - keep-alive
2424
+ Server:
2425
+ - openresty
2426
+ Set-Cookie:
2427
+ - SERVERID=blue; path=/
2428
+ Strict-Transport-Security:
2429
+ - max-age=16070400; includeSubDomains
2430
+ Vary:
2431
+ - Origin
2432
+ X-Content-Type-Options:
2433
+ - nosniff
2434
+ X-Datarobot-Request-Id:
2435
+ - 726103c5090069a1572b4571f6224480
2436
+ X-Frame-Options:
2437
+ - SAMEORIGIN
2438
+ X-Ratelimit-Limit:
2439
+ - "-1"
2440
+ X-Ratelimit-Remaining:
2441
+ - '0'
2442
+ X-Ratelimit-Reset:
2443
+ - '1562953893'
2444
+ X-Xss-Protection:
2445
+ - 1; mode=block
2446
+ body:
2447
+ encoding: UTF-8
2448
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2449
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2450
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2451
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2452
+ http_version:
2453
+ recorded_at: Tue, 27 Aug 2019 18:38:48 GMT
2454
+ - request:
2455
+ method: get
2456
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2457
+ body:
2458
+ encoding: US-ASCII
2459
+ string: ''
2460
+ headers:
2461
+ Accept-Encoding:
2462
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2463
+ Accept:
2464
+ - "*/*"
2465
+ User-Agent:
2466
+ - datarobot-ai/ruby
2467
+ Content-Type:
2468
+ - application/json
2469
+ Authorization:
2470
+ - Bearer testingKey
2471
+ response:
2472
+ status:
2473
+ code: 200
2474
+ message: OK
2475
+ headers:
2476
+ Date:
2477
+ - Tue, 27 Aug 2019 18:38:49 GMT
2478
+ Content-Type:
2479
+ - application/json
2480
+ Content-Length:
2481
+ - '335'
2482
+ Connection:
2483
+ - keep-alive
2484
+ Server:
2485
+ - openresty
2486
+ Set-Cookie:
2487
+ - SERVERID=blue; path=/
2488
+ Strict-Transport-Security:
2489
+ - max-age=16070400; includeSubDomains
2490
+ Vary:
2491
+ - Origin
2492
+ X-Content-Type-Options:
2493
+ - nosniff
2494
+ X-Datarobot-Request-Id:
2495
+ - e69da46dc8c13ba2ab3bbf2740ad4da9
2496
+ X-Frame-Options:
2497
+ - SAMEORIGIN
2498
+ X-Ratelimit-Limit:
2499
+ - "-1"
2500
+ X-Ratelimit-Remaining:
2501
+ - '0'
2502
+ X-Ratelimit-Reset:
2503
+ - '1562953893'
2504
+ X-Xss-Protection:
2505
+ - 1; mode=block
2506
+ body:
2507
+ encoding: UTF-8
2508
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2509
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2510
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2511
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2512
+ http_version:
2513
+ recorded_at: Tue, 27 Aug 2019 18:38:49 GMT
2514
+ - request:
2515
+ method: get
2516
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2517
+ body:
2518
+ encoding: US-ASCII
2519
+ string: ''
2520
+ headers:
2521
+ Accept-Encoding:
2522
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2523
+ Accept:
2524
+ - "*/*"
2525
+ User-Agent:
2526
+ - datarobot-ai/ruby
2527
+ Content-Type:
2528
+ - application/json
2529
+ Authorization:
2530
+ - Bearer testingKey
2531
+ response:
2532
+ status:
2533
+ code: 200
2534
+ message: OK
2535
+ headers:
2536
+ Date:
2537
+ - Tue, 27 Aug 2019 18:38:50 GMT
2538
+ Content-Type:
2539
+ - application/json
2540
+ Content-Length:
2541
+ - '335'
2542
+ Connection:
2543
+ - keep-alive
2544
+ Server:
2545
+ - openresty
2546
+ Set-Cookie:
2547
+ - SERVERID=blue; path=/
2548
+ Strict-Transport-Security:
2549
+ - max-age=16070400; includeSubDomains
2550
+ Vary:
2551
+ - Origin
2552
+ X-Content-Type-Options:
2553
+ - nosniff
2554
+ X-Datarobot-Request-Id:
2555
+ - acdcbb7d4fb0030891388578929bca78
2556
+ X-Frame-Options:
2557
+ - SAMEORIGIN
2558
+ X-Ratelimit-Limit:
2559
+ - "-1"
2560
+ X-Ratelimit-Remaining:
2561
+ - '0'
2562
+ X-Ratelimit-Reset:
2563
+ - '1562953893'
2564
+ X-Xss-Protection:
2565
+ - 1; mode=block
2566
+ body:
2567
+ encoding: UTF-8
2568
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2569
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2570
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2571
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2572
+ http_version:
2573
+ recorded_at: Tue, 27 Aug 2019 18:38:50 GMT
2574
+ - request:
2575
+ method: get
2576
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2577
+ body:
2578
+ encoding: US-ASCII
2579
+ string: ''
2580
+ headers:
2581
+ Accept-Encoding:
2582
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2583
+ Accept:
2584
+ - "*/*"
2585
+ User-Agent:
2586
+ - datarobot-ai/ruby
2587
+ Content-Type:
2588
+ - application/json
2589
+ Authorization:
2590
+ - Bearer testingKey
2591
+ response:
2592
+ status:
2593
+ code: 200
2594
+ message: OK
2595
+ headers:
2596
+ Date:
2597
+ - Tue, 27 Aug 2019 18:38:52 GMT
2598
+ Content-Type:
2599
+ - application/json
2600
+ Content-Length:
2601
+ - '335'
2602
+ Connection:
2603
+ - keep-alive
2604
+ Server:
2605
+ - openresty
2606
+ Set-Cookie:
2607
+ - SERVERID=blue; path=/
2608
+ Strict-Transport-Security:
2609
+ - max-age=16070400; includeSubDomains
2610
+ Vary:
2611
+ - Origin
2612
+ X-Content-Type-Options:
2613
+ - nosniff
2614
+ X-Datarobot-Request-Id:
2615
+ - c93d53f714b18a24fa6b88821c563d3c
2616
+ X-Frame-Options:
2617
+ - SAMEORIGIN
2618
+ X-Ratelimit-Limit:
2619
+ - "-1"
2620
+ X-Ratelimit-Remaining:
2621
+ - '0'
2622
+ X-Ratelimit-Reset:
2623
+ - '1562953893'
2624
+ X-Xss-Protection:
2625
+ - 1; mode=block
2626
+ body:
2627
+ encoding: UTF-8
2628
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2629
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2630
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2631
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2632
+ http_version:
2633
+ recorded_at: Tue, 27 Aug 2019 18:38:52 GMT
2634
+ - request:
2635
+ method: get
2636
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2637
+ body:
2638
+ encoding: US-ASCII
2639
+ string: ''
2640
+ headers:
2641
+ Accept-Encoding:
2642
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2643
+ Accept:
2644
+ - "*/*"
2645
+ User-Agent:
2646
+ - datarobot-ai/ruby
2647
+ Content-Type:
2648
+ - application/json
2649
+ Authorization:
2650
+ - Bearer testingKey
2651
+ response:
2652
+ status:
2653
+ code: 200
2654
+ message: OK
2655
+ headers:
2656
+ Date:
2657
+ - Tue, 27 Aug 2019 18:38:53 GMT
2658
+ Content-Type:
2659
+ - application/json
2660
+ Content-Length:
2661
+ - '335'
2662
+ Connection:
2663
+ - keep-alive
2664
+ Server:
2665
+ - openresty
2666
+ Set-Cookie:
2667
+ - SERVERID=blue; path=/
2668
+ Strict-Transport-Security:
2669
+ - max-age=16070400; includeSubDomains
2670
+ Vary:
2671
+ - Origin
2672
+ X-Content-Type-Options:
2673
+ - nosniff
2674
+ X-Datarobot-Request-Id:
2675
+ - c331af5e7d6e0783ff234ef7d8f68047
2676
+ X-Frame-Options:
2677
+ - SAMEORIGIN
2678
+ X-Ratelimit-Limit:
2679
+ - "-1"
2680
+ X-Ratelimit-Remaining:
2681
+ - '0'
2682
+ X-Ratelimit-Reset:
2683
+ - '1562953893'
2684
+ X-Xss-Protection:
2685
+ - 1; mode=block
2686
+ body:
2687
+ encoding: UTF-8
2688
+ string: '{"status": "RUNNING", "code": 0, "description": "Initial Training",
2689
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/"},
2690
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2691
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2692
+ http_version:
2693
+ recorded_at: Tue, 27 Aug 2019 18:38:53 GMT
2694
+ - request:
2695
+ method: get
2696
+ uri: https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd
2697
+ body:
2698
+ encoding: US-ASCII
2699
+ string: ''
2700
+ headers:
2701
+ Accept-Encoding:
2702
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2703
+ Accept:
2704
+ - "*/*"
2705
+ User-Agent:
2706
+ - datarobot-ai/ruby
2707
+ Content-Type:
2708
+ - application/json
2709
+ Authorization:
2710
+ - Bearer testingKey
2711
+ response:
2712
+ status:
2713
+ code: 200
2714
+ message: OK
2715
+ headers:
2716
+ Date:
2717
+ - Tue, 27 Aug 2019 18:38:54 GMT
2718
+ Content-Type:
2719
+ - application/json
2720
+ Content-Length:
2721
+ - '432'
2722
+ Connection:
2723
+ - keep-alive
2724
+ Server:
2725
+ - openresty
2726
+ Set-Cookie:
2727
+ - SERVERID=blue; path=/
2728
+ Strict-Transport-Security:
2729
+ - max-age=16070400; includeSubDomains
2730
+ Vary:
2731
+ - Origin
2732
+ X-Content-Type-Options:
2733
+ - nosniff
2734
+ X-Datarobot-Request-Id:
2735
+ - 265cc727b22a7c62f400102e69c8b851
2736
+ X-Frame-Options:
2737
+ - SAMEORIGIN
2738
+ X-Ratelimit-Limit:
2739
+ - "-1"
2740
+ X-Ratelimit-Remaining:
2741
+ - '0'
2742
+ X-Ratelimit-Reset:
2743
+ - '1562953893'
2744
+ X-Xss-Protection:
2745
+ - 1; mode=block
2746
+ body:
2747
+ encoding: UTF-8
2748
+ string: '{"status": "COMPLETED", "code": 0, "description": "Initial Training",
2749
+ "links": {"self": "https://developers.datarobot.com/aiapi/status/e2481fbe-c445-4be5-b1bc-8edd321da9fd/",
2750
+ "result": "https://developers.datarobot.com/aiapi/learningSessions/5d65788342eabf202c66f2e7/"},
2751
+ "created": "2019-08-27T18:37:55.557791Z", "message": "Modeling process has
2752
+ begun", "statusType": "Automodel", "statusId": "e2481fbe-c445-4be5-b1bc-8edd321da9fd"}'
2753
+ http_version:
2754
+ recorded_at: Tue, 27 Aug 2019 18:38:54 GMT
2755
+ - request:
2756
+ method: get
2757
+ uri: https://developers.datarobot.com/aiapi/learningSessions/5d65788342eabf202c66f2e7/
2758
+ body:
2759
+ encoding: US-ASCII
2760
+ string: ''
2761
+ headers:
2762
+ Accept-Encoding:
2763
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2764
+ Accept:
2765
+ - "*/*"
2766
+ User-Agent:
2767
+ - datarobot-ai/ruby
2768
+ Content-Type:
2769
+ - application/json
2770
+ Authorization:
2771
+ - Bearer testingKey
2772
+ response:
2773
+ status:
2774
+ code: 200
2775
+ message: OK
2776
+ headers:
2777
+ Date:
2778
+ - Tue, 27 Aug 2019 18:38:55 GMT
2779
+ Content-Type:
2780
+ - application/json
2781
+ Content-Length:
2782
+ - '382'
2783
+ Connection:
2784
+ - keep-alive
2785
+ Server:
2786
+ - openresty
2787
+ Set-Cookie:
2788
+ - SERVERID=blue; path=/
2789
+ Strict-Transport-Security:
2790
+ - max-age=16070400; includeSubDomains
2791
+ Vary:
2792
+ - Origin
2793
+ X-Content-Type-Options:
2794
+ - nosniff
2795
+ X-Datarobot-Request-Id:
2796
+ - 13bc825f31b440eae7bf2c396f67ad9b
2797
+ X-Frame-Options:
2798
+ - SAMEORIGIN
2799
+ X-Ratelimit-Limit:
2800
+ - "-1"
2801
+ X-Ratelimit-Remaining:
2802
+ - '0'
2803
+ X-Ratelimit-Reset:
2804
+ - '1562953893'
2805
+ X-Xss-Protection:
2806
+ - 1; mode=block
2807
+ body:
2808
+ encoding: UTF-8
2809
+ string: '{"name": "Learning score1", "links": {"status": "https://developers.datarobot.com/aiapi/status/5545f797-0d6c-4ea4-808b-0c79f0e00982/",
2810
+ "self": "https://developers.datarobot.com/aiapi/learningSessions/5d65788342eabf202c66f2e7/"},
2811
+ "created": "2019-08-27T18:38:06.531655Z", "modelCount": 2, "id": "5d65788342eabf202c66f2e7",
2812
+ "datasetId": "5d656bb042eabf201366f2d7", "target": "score1"}'
2813
+ http_version:
2814
+ recorded_at: Tue, 27 Aug 2019 18:38:55 GMT
2815
+ recorded_with: VCR 5.0.0