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,67 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://developers.datarobot.com/aiapi/ais/?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:46:25 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Content-Length:
32
+ - '569'
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
+ - 4ce77a39da372bef3deb3ee1fc86f841
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: UTF-8
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
+ "links": {"previous": null, "next": "https://developers.datarobot.com/aiapi/ais/?limit=1&offset=1"}}'
65
+ http_version:
66
+ recorded_at: Thu, 29 Aug 2019 03:46:25 GMT
67
+ recorded_with: VCR 5.0.0
@@ -0,0 +1,129 @@
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
+ 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
+ - Mon, 30 Sep 2019 19:21:18 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Content-Length:
32
+ - '485'
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
+ - 947c0cbb19ab99ecf40a497f46438f45
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": "Bird classifier", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc/outputs/",
60
+ "datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d322e625c142b15dff826fc",
61
+ "learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d322e625c142b15dff826fc"},
62
+ "createdOn": "2019-07-19 20:56:02+00:00", "outputCount": 1, "datasetCount":
63
+ 3, "learningSessionCount": 2, "id": "5d322e625c142b15dff826fc"}'
64
+ http_version:
65
+ recorded_at: Mon, 30 Sep 2019 19:21:18 GMT
66
+ - request:
67
+ method: get
68
+ uri: https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc
69
+ body:
70
+ encoding: US-ASCII
71
+ string: ''
72
+ headers:
73
+ Accept-Encoding:
74
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
75
+ Accept:
76
+ - "*/*"
77
+ User-Agent:
78
+ - datarobot-ai/ruby
79
+ Host:
80
+ - developers.datarobot.com
81
+ Content-Type:
82
+ - application/json
83
+ Authorization:
84
+ - Bearer testingKey
85
+ response:
86
+ status:
87
+ code: 200
88
+ message: OK
89
+ headers:
90
+ Date:
91
+ - Mon, 30 Sep 2019 19:21:18 GMT
92
+ Content-Type:
93
+ - application/json
94
+ Content-Length:
95
+ - '485'
96
+ Connection:
97
+ - keep-alive
98
+ Server:
99
+ - openresty
100
+ Set-Cookie:
101
+ - SERVERID=green; path=/
102
+ Strict-Transport-Security:
103
+ - max-age=16070400; includeSubDomains
104
+ Vary:
105
+ - Origin
106
+ X-Content-Type-Options:
107
+ - nosniff
108
+ X-Datarobot-Request-Id:
109
+ - 993cbd2a50df86468cace7683b2f8b05
110
+ X-Frame-Options:
111
+ - SAMEORIGIN
112
+ X-Ratelimit-Limit:
113
+ - "-1"
114
+ X-Ratelimit-Remaining:
115
+ - '0'
116
+ X-Ratelimit-Reset:
117
+ - '1565047666'
118
+ X-Xss-Protection:
119
+ - 1; mode=block
120
+ body:
121
+ encoding: UTF-8
122
+ string: '{"name": "Bird classifier", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc/outputs/",
123
+ "datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d322e625c142b15dff826fc",
124
+ "learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d322e625c142b15dff826fc"},
125
+ "createdOn": "2019-07-19 20:56:02+00:00", "outputCount": 1, "datasetCount":
126
+ 4, "learningSessionCount": 2, "id": "5d322e625c142b15dff826fc"}'
127
+ http_version:
128
+ recorded_at: Mon, 30 Sep 2019 19:21:18 GMT
129
+ recorded_with: VCR 5.0.0
@@ -0,0 +1,129 @@
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
+ 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
+ - Mon, 30 Sep 2019 19:21:18 GMT
29
+ Content-Type:
30
+ - application/json
31
+ Content-Length:
32
+ - '485'
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
+ - cf3ef1ca1e438a0854ef6b60cbc7b91b
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": "Bird classifier", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc/outputs/",
60
+ "datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d322e625c142b15dff826fc",
61
+ "learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d322e625c142b15dff826fc"},
62
+ "createdOn": "2019-07-19 20:56:02+00:00", "outputCount": 1, "datasetCount":
63
+ 3, "learningSessionCount": 2, "id": "5d322e625c142b15dff826fc"}'
64
+ http_version:
65
+ recorded_at: Mon, 30 Sep 2019 19:21:19 GMT
66
+ - request:
67
+ method: get
68
+ uri: https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc
69
+ body:
70
+ encoding: US-ASCII
71
+ string: ''
72
+ headers:
73
+ Accept-Encoding:
74
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
75
+ Accept:
76
+ - "*/*"
77
+ User-Agent:
78
+ - datarobot-ai/ruby
79
+ Host:
80
+ - developers.datarobot.com
81
+ Content-Type:
82
+ - application/json
83
+ Authorization:
84
+ - Bearer testingKey
85
+ response:
86
+ status:
87
+ code: 200
88
+ message: OK
89
+ headers:
90
+ Date:
91
+ - Mon, 30 Sep 2019 19:21:19 GMT
92
+ Content-Type:
93
+ - application/json
94
+ Content-Length:
95
+ - '485'
96
+ Connection:
97
+ - keep-alive
98
+ Server:
99
+ - openresty
100
+ Set-Cookie:
101
+ - SERVERID=green; path=/
102
+ Strict-Transport-Security:
103
+ - max-age=16070400; includeSubDomains
104
+ Vary:
105
+ - Origin
106
+ X-Content-Type-Options:
107
+ - nosniff
108
+ X-Datarobot-Request-Id:
109
+ - 887031fbdd4365583902ca9e90a36450
110
+ X-Frame-Options:
111
+ - SAMEORIGIN
112
+ X-Ratelimit-Limit:
113
+ - "-1"
114
+ X-Ratelimit-Remaining:
115
+ - '0'
116
+ X-Ratelimit-Reset:
117
+ - '1565047666'
118
+ X-Xss-Protection:
119
+ - 1; mode=block
120
+ body:
121
+ encoding: UTF-8
122
+ string: '{"name": "Bird classifier", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc/outputs/",
123
+ "datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d322e625c142b15dff826fc",
124
+ "learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d322e625c142b15dff826fc"},
125
+ "createdOn": "2019-07-19 20:56:02+00:00", "outputCount": 1, "datasetCount":
126
+ 4, "learningSessionCount": 2, "id": "5d322e625c142b15dff826fc"}'
127
+ http_version:
128
+ recorded_at: Mon, 30 Sep 2019 19:21:19 GMT
129
+ recorded_with: VCR 5.0.0
@@ -0,0 +1,120 @@
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 testingKey
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Date:
26
+ - Thu, 22 Aug 2019 20:55:15 GMT
27
+ Content-Type:
28
+ - application/json
29
+ Content-Length:
30
+ - '443'
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
+ - 359f8863096d3975847f9177e9373bf1
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": "Bird classifier", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc/outputs/",
58
+ "datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d322e625c142b15dff826fc",
59
+ "learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d322e625c142b15dff826fc"},
60
+ "outputCount": 1, "datasetCount": 2, "learningSessionCount": 1, "id": "5d322e625c142b15dff826fc"}'
61
+ http_version:
62
+ recorded_at: Thu, 22 Aug 2019 20:55:15 GMT
63
+ - request:
64
+ method: post
65
+ uri: https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc/datasets
66
+ body:
67
+ encoding: UTF-8
68
+ string: '{"datasetId":"5d5d914e42eabf0f1166f29f"}'
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: 201
83
+ message: Created
84
+ headers:
85
+ Date:
86
+ - Thu, 22 Aug 2019 20:55:16 GMT
87
+ Content-Type:
88
+ - text/html; charset=utf-8
89
+ Content-Length:
90
+ - '0'
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
+ - 7b75139598185435b055cc0086d77444
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: ''
118
+ http_version:
119
+ recorded_at: Thu, 22 Aug 2019 20:55:16 GMT
120
+ recorded_with: VCR 5.0.0
@@ -0,0 +1,120 @@
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 testingKey
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Date:
26
+ - Thu, 22 Aug 2019 21:11:34 GMT
27
+ Content-Type:
28
+ - application/json
29
+ Content-Length:
30
+ - '443'
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
+ - 0cd04be509db8e780efeaa4a4bdb5c5e
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": "Bird classifier", "links": {"outputsList": "https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc/outputs/",
58
+ "datasetsList": "https://developers.datarobot.com/aiapi/datasets/?aiId=5d322e625c142b15dff826fc",
59
+ "learningSessionsList": "https://developers.datarobot.com/aiapi/learningSessions/?aiId=5d322e625c142b15dff826fc"},
60
+ "outputCount": 1, "datasetCount": 3, "learningSessionCount": 1, "id": "5d322e625c142b15dff826fc"}'
61
+ http_version:
62
+ recorded_at: Thu, 22 Aug 2019 21:11:34 GMT
63
+ - request:
64
+ method: post
65
+ uri: https://developers.datarobot.com/aiapi/ais/5d322e625c142b15dff826fc/learningSessions
66
+ body:
67
+ encoding: UTF-8
68
+ string: '{"learningSessionId":"5d41de29d8c81f0587732a4f"}'
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: 201
83
+ message: Created
84
+ headers:
85
+ Date:
86
+ - Thu, 22 Aug 2019 21:11:34 GMT
87
+ Content-Type:
88
+ - text/html; charset=utf-8
89
+ Content-Length:
90
+ - '0'
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
+ - bef07b8a880666b145b2e83c27d75a7f
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: ''
118
+ http_version:
119
+ recorded_at: Thu, 22 Aug 2019 21:11:34 GMT
120
+ recorded_with: VCR 5.0.0