datarobot-ai_api 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +3 -0
- data/Gemfile +3 -0
- data/README.md +12 -0
- data/Rakefile +54 -0
- data/datarobot-ai_api.gemspec +19 -0
- data/lib/datarobot.rb +1 -0
- data/lib/datarobot/ai_api.rb +190 -0
- data/lib/datarobot/ai_api/ai.rb +191 -0
- data/lib/datarobot/ai_api/dataset.rb +99 -0
- data/lib/datarobot/ai_api/deployment.rb +20 -0
- data/lib/datarobot/ai_api/evaluation.rb +21 -0
- data/lib/datarobot/ai_api/learning_session.rb +112 -0
- data/lib/datarobot/ai_api/output.rb +58 -0
- data/lib/datarobot/ai_api/page.rb +50 -0
- data/lib/datarobot/ai_api/prediction.rb +20 -0
- data/lib/datarobot/ai_api/refreshable.rb +20 -0
- data/lib/datarobot/ai_api/task.rb +86 -0
- data/test/cassettes/Datarobot_AiApi/_ping/returns_unauthorized_when_not_authorized.yml +41 -0
- data/test/cassettes/Datarobot_AiApi/_ping/works_when_authorized.yml +58 -0
- data/test/cassettes/Datarobot_AiApi/_ping_me/returns_unauthorized_when_not_authorized.yml +41 -0
- data/test/cassettes/Datarobot_AiApi/_ping_me/works_when_authorized.yml +58 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/404s_if_there_is_no_matching_output.yml +190 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_find/should_accept_a_block.yml +66 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_next_page/can_go_to_the_next_page.yml +132 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml +123 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_previous_page/can_go_to_the_previous_page.yml +262 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml +67 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_refresh/can_refresh_to_a_new_object.yml +129 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/_refresh_/can_refresh_its_values.yml +129 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_add_datasets_to_AIs.yml +120 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_add_learning_sessions_to_AIs.yml +120 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_be_trained.yml +4554 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_create_AIs.yml +120 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_delete_AIs.yml +58 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_find_AIs.yml +63 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_get_AI_datasets.yml +131 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_get_AI_outputs.yml +124 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_list_AIs.yml +123 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_authorized/can_predict_things.yml +190 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_create_AIs.yml +43 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_find_AIs.yml +43 -0
- data/test/cassettes/Datarobot_AiApi_AI/when_not_authorized/can_not_list_AIs.yml +45 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_find/should_accept_a_block.yml +64 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_next_page/can_go_to_the_next_page.yml +126 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml +113 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_previous_page/can_go_to_the_previous_page.yml +250 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml +64 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_refresh/can_refresh_to_a_new_object.yml +125 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/_refresh_/can_refresh_its_values.yml +125 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_delete_datasets.yml +58 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_find_datasets.yml +61 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_import_a_dataset_from_a_file.yml +1077 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_import_a_dataset_from_a_url.yml +55 -0
- data/test/cassettes/Datarobot_AiApi_Dataset/when_authorized/can_list_datasets.yml +113 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_find/should_accept_a_block.yml +67 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_next_page/can_go_to_the_next_page.yml +67 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_next_page/returns_the_same_page_if_there_is_no_next_page.yml +100 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_previous_page/can_go_to_the_previous_page.yml +67 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_previous_page/returns_the_same_page_if_there_is_no_previous_page.yml +100 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_refresh/can_refresh_to_a_new_object.yml +131 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/_refresh_/can_refresh_its_values.yml +130 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_create_learning_sessions.yml +2815 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_delete_learning_sessions.yml +58 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_find_learning_sessions.yml +63 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_deployment_data.yml +123 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_evaluation_data.yml +67 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_get_learning_session_features.yml +127 -0
- data/test/cassettes/Datarobot_AiApi_LearningSession/when_authorized/can_list_learning_sessions.yml +100 -0
- data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_create_outputs.yml +60 -0
- data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_find_named_outputs.yml +123 -0
- data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_get_features_of_an_output.yml +184 -0
- data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_get_the_evaluation_of_an_output.yml +131 -0
- data/test/cassettes/Datarobot_AiApi_Output/when_authorized/can_list_outputs.yml +124 -0
- data/test/cassettes/Datarobot_AiApi_Task/when_authorized/_find/should_accept_a_block.yml +63 -0
- data/test/cassettes/Datarobot_AiApi_Task/when_authorized/_refresh/can_refresh_to_a_new_object.yml +124 -0
- data/test/cassettes/Datarobot_AiApi_Task/when_authorized/_refresh_/can_refresh_its_values.yml +125 -0
- data/test/cassettes/Datarobot_AiApi_Task/when_authorized/can_stop_a_task.yml +58 -0
- data/test/cassettes/Datarobot_AiApi_Task/when_authorized/can_wait_until_completed.yml +1138 -0
- data/test/cassettes/Datarobot_AiApi_Task/when_authorized/check_the_status_of_a_task.yml +64 -0
- data/test/data/delete-me.csv +8037 -0
- data/test/data/test.csv +8037 -0
- data/test/datarobot/ai_api/test_ai.rb +133 -0
- data/test/datarobot/ai_api/test_dataset.rb +64 -0
- data/test/datarobot/ai_api/test_learning_session.rb +77 -0
- data/test/datarobot/ai_api/test_output.rb +54 -0
- data/test/datarobot/ai_api/test_page.rb +50 -0
- data/test/datarobot/ai_api/test_prediction.rb +0 -0
- data/test/datarobot/ai_api/test_refreshable.rb +39 -0
- data/test/datarobot/ai_api/test_task.rb +53 -0
- data/test/datarobot/test_ai_api.rb +52 -0
- data/test/test_helper.rb +40 -0
- metadata +217 -0
@@ -0,0 +1,123 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://developers.datarobot.com/aiapi/ais/?limit=50&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:47:21 GMT
|
29
|
+
Content-Type:
|
30
|
+
- application/json
|
31
|
+
Content-Length:
|
32
|
+
- '800'
|
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
|
+
- 14cfd835de351272c66ae1ff33f713c9
|
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": 15, "data": [{"name": "Bird classifier", "links": {"outputsList":
|
60
|
+
"https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc/outputs/",
|
61
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d322e625c142b15dff826fc",
|
62
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d322e625c142b15dff826fc"},
|
63
|
+
"outputCount": 1, "datasetCount": 3, "learningSessionCount": 2, "id": "5d322e625c142b15dff826fc"},
|
64
|
+
{"name": "Soccer Match prediction", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d4205d6d8c81f05fe732a42/outputs/",
|
65
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d4205d6d8c81f05fe732a42",
|
66
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d4205d6d8c81f05fe732a42"},
|
67
|
+
"outputCount": 1, "datasetCount": 7, "learningSessionCount": 6, "id": "5d4205d6d8c81f05fe732a42"},
|
68
|
+
{"name": "chord progressor", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d4b1fe87741a3050e17174b/outputs/",
|
69
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d4b1fe87741a3050e17174b",
|
70
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d4b1fe87741a3050e17174b"},
|
71
|
+
"outputCount": 0, "datasetCount": 1, "learningSessionCount": 0, "id": "5d4b1fe87741a3050e17174b"},
|
72
|
+
{"name": "ai", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d5c6ab942eabf0ca066f2a0/outputs/",
|
73
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d5c6ab942eabf0ca066f2a0",
|
74
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d5c6ab942eabf0ca066f2a0"},
|
75
|
+
"outputCount": 0, "datasetCount": 0, "learningSessionCount": 0, "id": "5d5c6ab942eabf0ca066f2a0"},
|
76
|
+
{"name": "ai", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d5c6c7a42eabf0c8b66f2e1/outputs/",
|
77
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d5c6c7a42eabf0c8b66f2e1",
|
78
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d5c6c7a42eabf0c8b66f2e1"},
|
79
|
+
"outputCount": 0, "datasetCount": 0, "learningSessionCount": 0, "id": "5d5c6c7a42eabf0c8b66f2e1"},
|
80
|
+
{"name": "a testing AI", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d5c6f7c42eabf0cb166f2c6/outputs/",
|
81
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d5c6f7c42eabf0cb166f2c6",
|
82
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d5c6f7c42eabf0cb166f2c6"},
|
83
|
+
"outputCount": 1, "datasetCount": 0, "learningSessionCount": 1, "id": "5d5c6f7c42eabf0cb166f2c6"},
|
84
|
+
{"name": "Demo AI", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d60268242eabf14d666f2db/outputs/",
|
85
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d60268242eabf14d666f2db",
|
86
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d60268242eabf14d666f2db"},
|
87
|
+
"outputCount": 1, "datasetCount": 0, "learningSessionCount": 1, "id": "5d60268242eabf14d666f2db"},
|
88
|
+
{"name": "test AI", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d645f4842eabf1d7a66f32c/outputs/",
|
89
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d645f4842eabf1d7a66f32c",
|
90
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d645f4842eabf1d7a66f32c"},
|
91
|
+
"outputCount": 0, "datasetCount": 1, "learningSessionCount": 0, "id": "5d645f4842eabf1d7a66f32c"},
|
92
|
+
{"name": "test AI", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d64603342eabf1d2466f337/outputs/",
|
93
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d64603342eabf1d2466f337",
|
94
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d64603342eabf1d2466f337"},
|
95
|
+
"outputCount": 0, "datasetCount": 1, "learningSessionCount": 0, "id": "5d64603342eabf1d2466f337"},
|
96
|
+
{"name": "test AI", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d64617842eabf1d9266f2e0/outputs/",
|
97
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d64617842eabf1d9266f2e0",
|
98
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d64617842eabf1d9266f2e0"},
|
99
|
+
"outputCount": 0, "datasetCount": 0, "learningSessionCount": 0, "id": "5d64617842eabf1d9266f2e0"},
|
100
|
+
{"name": "test AI", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d64671442eabf1db466f302/outputs/",
|
101
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d64671442eabf1db466f302",
|
102
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d64671442eabf1db466f302"},
|
103
|
+
"outputCount": 0, "datasetCount": 0, "learningSessionCount": 0, "id": "5d64671442eabf1db466f302"},
|
104
|
+
{"name": "test AI", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d6477f642eabf1dea66f2d8/outputs/",
|
105
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d6477f642eabf1dea66f2d8",
|
106
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d6477f642eabf1dea66f2d8"},
|
107
|
+
"outputCount": 0, "datasetCount": 0, "learningSessionCount": 0, "id": "5d6477f642eabf1dea66f2d8"},
|
108
|
+
{"name": "test AI", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d64784a42eabf1dea66f2f1/outputs/",
|
109
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d64784a42eabf1dea66f2f1",
|
110
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d64784a42eabf1dea66f2f1"},
|
111
|
+
"outputCount": 0, "datasetCount": 1, "learningSessionCount": 0, "id": "5d64784a42eabf1dea66f2f1"},
|
112
|
+
{"name": "test AI", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d6478eb42eabf1e0266f2ac/outputs/",
|
113
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d6478eb42eabf1e0266f2ac",
|
114
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d6478eb42eabf1e0266f2ac"},
|
115
|
+
"outputCount": 0, "datasetCount": 1, "learningSessionCount": 0, "id": "5d6478eb42eabf1e0266f2ac"},
|
116
|
+
{"name": "test AI", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d6479f742eabf1dea66f2fc/outputs/",
|
117
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d6479f742eabf1dea66f2fc",
|
118
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d6479f742eabf1dea66f2fc"},
|
119
|
+
"outputCount": 0, "datasetCount": 1, "learningSessionCount": 1, "id": "5d6479f742eabf1dea66f2fc"}],
|
120
|
+
"links": {"previous": null, "next": null}}'
|
121
|
+
http_version:
|
122
|
+
recorded_at: Thu, 29 Aug 2019 03:47:21 GMT
|
123
|
+
recorded_with: VCR 5.0.0
|
@@ -0,0 +1,190 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://developers.datarobot.com/aiapi/ais/5d4205d6d8c81f05fe732a42
|
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
|
+
Content-Type:
|
17
|
+
- application/json
|
18
|
+
Authorization:
|
19
|
+
- Bearer testingKey
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 200
|
23
|
+
message: OK
|
24
|
+
headers:
|
25
|
+
Date:
|
26
|
+
- Thu, 22 Aug 2019 22:27:58 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json
|
29
|
+
Content-Length:
|
30
|
+
- '451'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
Server:
|
34
|
+
- openresty
|
35
|
+
Set-Cookie:
|
36
|
+
- SERVERID=blue; path=/
|
37
|
+
Strict-Transport-Security:
|
38
|
+
- max-age=16070400; includeSubDomains
|
39
|
+
Vary:
|
40
|
+
- Origin
|
41
|
+
X-Content-Type-Options:
|
42
|
+
- nosniff
|
43
|
+
X-Datarobot-Request-Id:
|
44
|
+
- b7f340c145fcd441f12e608820a778d0
|
45
|
+
X-Frame-Options:
|
46
|
+
- SAMEORIGIN
|
47
|
+
X-Ratelimit-Limit:
|
48
|
+
- "-1"
|
49
|
+
X-Ratelimit-Remaining:
|
50
|
+
- '0'
|
51
|
+
X-Ratelimit-Reset:
|
52
|
+
- '1562953893'
|
53
|
+
X-Xss-Protection:
|
54
|
+
- 1; mode=block
|
55
|
+
body:
|
56
|
+
encoding: UTF-8
|
57
|
+
string: '{"name": "Soccer Match prediction", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d4205d6d8c81f05fe732a42/outputs/",
|
58
|
+
"datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d4205d6d8c81f05fe732a42",
|
59
|
+
"learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d4205d6d8c81f05fe732a42"},
|
60
|
+
"outputCount": 1, "datasetCount": 7, "learningSessionCount": 6, "id": "5d4205d6d8c81f05fe732a42"}'
|
61
|
+
http_version:
|
62
|
+
recorded_at: Thu, 22 Aug 2019 22:27:58 GMT
|
63
|
+
- request:
|
64
|
+
method: get
|
65
|
+
uri: https://developers.datarobot.com/aiapi/ais/5d4205d6d8c81f05fe732a42/outputs
|
66
|
+
body:
|
67
|
+
encoding: US-ASCII
|
68
|
+
string: ''
|
69
|
+
headers:
|
70
|
+
Accept-Encoding:
|
71
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
72
|
+
Accept:
|
73
|
+
- "*/*"
|
74
|
+
User-Agent:
|
75
|
+
- datarobot-ai/ruby
|
76
|
+
Content-Type:
|
77
|
+
- application/json
|
78
|
+
Authorization:
|
79
|
+
- Bearer testingKey
|
80
|
+
response:
|
81
|
+
status:
|
82
|
+
code: 200
|
83
|
+
message: OK
|
84
|
+
headers:
|
85
|
+
Date:
|
86
|
+
- Thu, 22 Aug 2019 22:27:59 GMT
|
87
|
+
Content-Type:
|
88
|
+
- application/json
|
89
|
+
Content-Length:
|
90
|
+
- '357'
|
91
|
+
Connection:
|
92
|
+
- keep-alive
|
93
|
+
Server:
|
94
|
+
- openresty
|
95
|
+
Set-Cookie:
|
96
|
+
- SERVERID=blue; path=/
|
97
|
+
Strict-Transport-Security:
|
98
|
+
- max-age=16070400; includeSubDomains
|
99
|
+
Vary:
|
100
|
+
- Origin
|
101
|
+
X-Content-Type-Options:
|
102
|
+
- nosniff
|
103
|
+
X-Datarobot-Request-Id:
|
104
|
+
- 834778996c6841705e1cbbdb75683f94
|
105
|
+
X-Frame-Options:
|
106
|
+
- SAMEORIGIN
|
107
|
+
X-Ratelimit-Limit:
|
108
|
+
- "-1"
|
109
|
+
X-Ratelimit-Remaining:
|
110
|
+
- '0'
|
111
|
+
X-Ratelimit-Reset:
|
112
|
+
- '1562953893'
|
113
|
+
X-Xss-Protection:
|
114
|
+
- 1; mode=block
|
115
|
+
body:
|
116
|
+
encoding: UTF-8
|
117
|
+
string: '{"total": 1, "data": [{"source": {"url": "https://developers.datarobot.com/predApi/v1.0/deployments/5d420742d8c81f05fe732a5c/predictions",
|
118
|
+
"deploymentId": "5d420742d8c81f05fe732a5c", "modelType": "RuleFit Regressor",
|
119
|
+
"datarobot-key": "ed08f69e-47be-ebd1-25cb-b7342c7fbac4"}, "name": "score1",
|
120
|
+
"target": "score1"}], "links": {"previous": null, "next": null}}'
|
121
|
+
http_version:
|
122
|
+
recorded_at: Thu, 22 Aug 2019 22:27:59 GMT
|
123
|
+
- request:
|
124
|
+
method: post
|
125
|
+
uri: https://developers.datarobot.com/predApi/v1.0/deployments/5d420742d8c81f05fe732a5c/predictions/
|
126
|
+
body:
|
127
|
+
encoding: UTF-8
|
128
|
+
string: '[{"date":"2019-08-26","league_id":"1845","league":"German Bundesliga","team1":"Werder
|
129
|
+
Bremen","team2":"Hamburg SV","spi1":"64.54","spi2":"43.91"}]'
|
130
|
+
headers:
|
131
|
+
Accept-Encoding:
|
132
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
133
|
+
Accept:
|
134
|
+
- "*/*"
|
135
|
+
User-Agent:
|
136
|
+
- datarobot-ai/ruby
|
137
|
+
Content-Type:
|
138
|
+
- application/json
|
139
|
+
Authorization:
|
140
|
+
- Bearer testingKey
|
141
|
+
Datarobot-Key:
|
142
|
+
- ed08f69e-47be-ebd1-25cb-b7342c7fbac4
|
143
|
+
response:
|
144
|
+
status:
|
145
|
+
code: 200
|
146
|
+
message: OK
|
147
|
+
headers:
|
148
|
+
Date:
|
149
|
+
- Thu, 22 Aug 2019 22:28:00 GMT
|
150
|
+
Content-Type:
|
151
|
+
- application/json
|
152
|
+
Content-Length:
|
153
|
+
- '109'
|
154
|
+
Connection:
|
155
|
+
- keep-alive
|
156
|
+
Access-Control-Allow-Credentials:
|
157
|
+
- 'true'
|
158
|
+
Access-Control-Allow-Headers:
|
159
|
+
- Content-Type,Authorization,datarobot-key,X-DataRobot-Api-Consumer
|
160
|
+
Access-Control-Allow-Methods:
|
161
|
+
- OPTIONS, POST
|
162
|
+
Access-Control-Expose-Headers:
|
163
|
+
- Content-Type,Content-Length,X-DataRobot-Execution-Time,X-DataRobot-Model-Cache-Hit,X-DataRobot-Model-Id,X-DataRobot-Request-Id
|
164
|
+
Server:
|
165
|
+
- nginx/1.12.2
|
166
|
+
Vary:
|
167
|
+
- Origin
|
168
|
+
- Origin
|
169
|
+
X-Datarobot-Execution-Time:
|
170
|
+
- '1183'
|
171
|
+
X-Datarobot-Model-Cache-Hit:
|
172
|
+
- 'false'
|
173
|
+
X-Datarobot-Model-Id:
|
174
|
+
- 5d420fa6489cf17f517f9f37
|
175
|
+
X-Datarobot-Request-Id:
|
176
|
+
- 82942ef83161c8e1d3253275fe6a0ad6
|
177
|
+
X-Datarobot-Username:
|
178
|
+
- peter.klipfel@datarobot.com
|
179
|
+
X-Ratelimit-Limit:
|
180
|
+
- "-1"
|
181
|
+
X-Ratelimit-Remaining:
|
182
|
+
- '0'
|
183
|
+
X-Ratelimit-Reset:
|
184
|
+
- '1562953893'
|
185
|
+
body:
|
186
|
+
encoding: UTF-8
|
187
|
+
string: '{"data":[{"predictionValues":[{"value":3.7707404629,"label":"score1"}],"prediction":3.7707404629,"rowId":0}]}'
|
188
|
+
http_version:
|
189
|
+
recorded_at: Thu, 22 Aug 2019 22:28:00 GMT
|
190
|
+
recorded_with: VCR 5.0.0
|
@@ -0,0 +1,43 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://developers.datarobot.com/aiapi/ais/
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: '{"name":"a testing AI"}'
|
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 '
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 403
|
23
|
+
message: Forbidden
|
24
|
+
headers:
|
25
|
+
Date:
|
26
|
+
- Tue, 20 Aug 2019 22:22:40 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json
|
29
|
+
Content-Length:
|
30
|
+
- '57'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
Vary:
|
34
|
+
- Origin
|
35
|
+
body:
|
36
|
+
encoding: UTF-8
|
37
|
+
string: |-
|
38
|
+
{
|
39
|
+
"error": "Access to this API has been disallowed"
|
40
|
+
}
|
41
|
+
http_version:
|
42
|
+
recorded_at: Tue, 20 Aug 2019 22:22:40 GMT
|
43
|
+
recorded_with: VCR 5.0.0
|
@@ -0,0 +1,43 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc
|
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
|
+
Content-Type:
|
17
|
+
- application/json
|
18
|
+
Authorization:
|
19
|
+
- 'Bearer '
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 403
|
23
|
+
message: Forbidden
|
24
|
+
headers:
|
25
|
+
Date:
|
26
|
+
- Tue, 20 Aug 2019 22:22:40 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json
|
29
|
+
Content-Length:
|
30
|
+
- '57'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
Vary:
|
34
|
+
- Origin
|
35
|
+
body:
|
36
|
+
encoding: UTF-8
|
37
|
+
string: |-
|
38
|
+
{
|
39
|
+
"error": "Access to this API has been disallowed"
|
40
|
+
}
|
41
|
+
http_version:
|
42
|
+
recorded_at: Tue, 20 Aug 2019 22:22:40 GMT
|
43
|
+
recorded_with: VCR 5.0.0
|
@@ -0,0 +1,45 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://developers.datarobot.com/aiapi/ais/?limit=50&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 '
|
22
|
+
response:
|
23
|
+
status:
|
24
|
+
code: 403
|
25
|
+
message: Forbidden
|
26
|
+
headers:
|
27
|
+
Date:
|
28
|
+
- Thu, 29 Aug 2019 03:48:18 GMT
|
29
|
+
Content-Type:
|
30
|
+
- application/json
|
31
|
+
Content-Length:
|
32
|
+
- '57'
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
Vary:
|
36
|
+
- Origin
|
37
|
+
body:
|
38
|
+
encoding: UTF-8
|
39
|
+
string: |-
|
40
|
+
{
|
41
|
+
"error": "Access to this API has been disallowed"
|
42
|
+
}
|
43
|
+
http_version:
|
44
|
+
recorded_at: Thu, 29 Aug 2019 03:48:18 GMT
|
45
|
+
recorded_with: VCR 5.0.0
|
@@ -0,0 +1,64 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://developers.datarobot.com/aiapi/datasets/5d4b20f37741a3052f171759
|
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 22:24:29 GMT
|
29
|
+
Content-Type:
|
30
|
+
- application/json
|
31
|
+
Content-Length:
|
32
|
+
- '168'
|
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
|
+
- ddef18cdf212127f083eb97090cce9e7
|
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: '{"columnCount": 5, "datasetName": "chords_part0000.csv", "createdOn":
|
60
|
+
"2019-08-07T19:05:23.003000Z", "rowCount": 9288, "id": "5d4b20f37741a3052f171759",
|
61
|
+
"size": 262651}'
|
62
|
+
http_version:
|
63
|
+
recorded_at: Tue, 01 Oct 2019 22:24:29 GMT
|
64
|
+
recorded_with: VCR 5.0.0
|