docker-api 1.18.0 → 1.19.0
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.
- checksums.yaml +4 -4
- data/README.md +7 -7
- data/lib/docker/exec.rb +8 -2
- data/lib/docker/util.rb +11 -1
- data/lib/docker/version.rb +2 -2
- data/spec/docker/container_spec.rb +6 -5
- data/spec/docker/exec_spec.rb +29 -61
- data/spec/docker/image_spec.rb +8 -4
- data/spec/docker_spec.rb +4 -3
- data/spec/fixtures/build_from_dir/Dockerfile +1 -1
- data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +10 -9
- data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +15 -9
- data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +15 -9
- data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +10 -9
- data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +45 -34
- data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +31 -30
- data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +31 -30
- data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +45 -42
- data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +66 -35
- data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +37 -35
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +45 -43
- data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +44 -42
- data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +24 -22
- data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +15 -14
- data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +24 -22
- data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +68 -39
- data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +68 -38
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml +183 -0
- data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +26 -25
- data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +68 -38
- data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +85 -92
- data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +24 -22
- data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +24 -22
- data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +48 -43
- data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +83 -69
- data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
- data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
- data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +45 -43
- data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +73 -65
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +29 -27
- data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_returns_a_status_code_of_0/creates_a_new_container_to_run_the_specified_command.yml +114 -102
- data/spec/vcr/Docker_Container/_start/starts_the_container.yml +42 -37
- data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +49 -44
- data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +47 -42
- data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +20 -19
- data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +54 -51
- data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +45 -43
- data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +29 -27
- data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +29 -27
- data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +35 -33
- data/spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml +207 -0
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +68 -38
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +68 -38
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml +180 -0
- data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +67 -38
- data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +67 -38
- data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +67 -87
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +9 -9
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_an_image_and_tags_it.yml +92 -107
- data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +9 -9
- data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +11 -9
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +89 -38
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +89 -38
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +421 -51
- data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_the_image_and_tags_it.yml +422 -140
- data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id_and_sends_Docker_creds.yml +16 -16
- data/spec/vcr/Docker_Image/_create/with_a_block_capturing_create_output/calls_the_block_and_passes_build_output.yml +9 -7
- data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +11 -9
- data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +11 -9
- data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +21 -18
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +164 -35
- data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +21 -23
- data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +15 -15
- data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +887 -840
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +76 -65
- data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +56 -48
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +63 -61
- data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +9 -9
- data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +69 -66
- data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +19 -17
- data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +99 -113
- data/spec/vcr/Docker_Image/_push/streams_output_from_push.yml +100 -391
- data/spec/vcr/Docker_Image/_push/when_the_image_was_retrived_by_get/when_no_tag_is_specified/looks_up_the_first_repo_tag.yml +174 -708
- data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +115 -110
- data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +77 -93
- data/spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml +19 -17
- data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +581 -229
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +52 -50
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +42 -40
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml +52 -50
- data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml +16 -15
- data/spec/vcr/Docker_Image/_save/calls_the_class_method.yml +42 -39
- data/spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml +51 -63
- data/spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml +51 -63
- data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +48 -209
- data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +22 -22
- metadata +8 -8
- data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages.yml +0 -153
- data/spec/vcr/Docker_Exec/_resize/when_exec_instance_has_TTY_enabled/returns_a_200.yml +0 -155
- data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout_and_stderr_messages.yml +0 -151
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/images/create?fromImage=debian%3Awheezy
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.18.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,26 +19,26 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:54:56 GMT
|
23
23
|
body:
|
24
|
-
encoding:
|
25
|
-
string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
24
|
+
encoding: US-ASCII
|
25
|
+
string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
26
26
|
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
27
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
28
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
27
|
+
exists\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Already
|
28
|
+
exists\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
|
29
29
|
Image is up to date for debian:wheezy\"}\r\n"
|
30
30
|
http_version:
|
31
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:54:56 GMT
|
32
32
|
- request:
|
33
33
|
method: post
|
34
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/build
|
35
35
|
body:
|
36
36
|
encoding: UTF-8
|
37
37
|
string: !binary |-
|
38
38
|
R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
39
39
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
40
40
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
|
41
|
-
|
41
|
+
ADAwMDAwMDAwMDAwADAxMjU0NgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
42
42
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
43
43
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
44
44
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -60,8 +60,8 @@ http_interactions:
|
|
60
60
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAERvY2tlcmZpbGUA
|
61
61
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
62
62
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
|
63
|
-
|
64
|
-
|
63
|
+
MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMDA0MAAwMDAwMDAwMDAw
|
64
|
+
MAAwMTMyMzcAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
65
65
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
66
66
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
|
67
67
|
AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -69,7 +69,7 @@ http_interactions:
|
|
69
69
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
70
70
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
71
71
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
72
|
-
|
72
|
+
AAAAAAAAZnJvbSBjOTBkNjU1Yjk5YjIKYWRkIEdlbWZpbGUgLwoAAAAAAAAA
|
73
73
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
74
74
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
75
75
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -106,7 +106,7 @@ http_interactions:
|
|
106
106
|
AAAAAAAAAAAAAAAA
|
107
107
|
headers:
|
108
108
|
User-Agent:
|
109
|
-
- Swipely/Docker-API 1.
|
109
|
+
- Swipely/Docker-API 1.18.0
|
110
110
|
Content-Type:
|
111
111
|
- application/json
|
112
112
|
response:
|
@@ -117,24 +117,24 @@ http_interactions:
|
|
117
117
|
Content-Type:
|
118
118
|
- application/json
|
119
119
|
Date:
|
120
|
-
-
|
120
|
+
- Thu, 12 Feb 2015 00:54:56 GMT
|
121
121
|
body:
|
122
|
-
encoding:
|
123
|
-
string: "{\"stream\":\"Step 0 : FROM
|
124
|
-
|
125
|
-
---\\u003e
|
126
|
-
|
122
|
+
encoding: US-ASCII
|
123
|
+
string: ! "{\"stream\":\"Step 0 : FROM c90d655b99b2\\n\"}\r\n{\"stream\":\"
|
124
|
+
---\\u003e c90d655b99b2\\n\"}\r\n{\"stream\":\"Step 1 : ADD Gemfile /\\n\"}\r\n{\"stream\":\"
|
125
|
+
---\\u003e 2743a448d2b9\\n\"}\r\n{\"stream\":\"Removing intermediate container
|
126
|
+
dbddd65bbe7a\\n\"}\r\n{\"stream\":\"Successfully built 2743a448d2b9\\n\"}\r\n"
|
127
127
|
http_version:
|
128
|
-
recorded_at:
|
128
|
+
recorded_at: Thu, 12 Feb 2015 00:54:58 GMT
|
129
129
|
- request:
|
130
130
|
method: post
|
131
|
-
uri:
|
131
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
132
132
|
body:
|
133
133
|
encoding: UTF-8
|
134
|
-
string: '{"Image":"
|
134
|
+
string: ! '{"Image":"2743a448d2b9","Cmd":["cat","/Gemfile"]}'
|
135
135
|
headers:
|
136
136
|
User-Agent:
|
137
|
-
- Swipely/Docker-API 1.
|
137
|
+
- Swipely/Docker-API 1.18.0
|
138
138
|
Content-Type:
|
139
139
|
- application/json
|
140
140
|
response:
|
@@ -145,24 +145,25 @@ http_interactions:
|
|
145
145
|
Content-Type:
|
146
146
|
- application/json
|
147
147
|
Date:
|
148
|
-
-
|
148
|
+
- Thu, 12 Feb 2015 00:54:58 GMT
|
149
149
|
Content-Length:
|
150
150
|
- '90'
|
151
151
|
body:
|
152
|
-
encoding:
|
153
|
-
string:
|
154
|
-
|
152
|
+
encoding: US-ASCII
|
153
|
+
string: ! '{"Id":"5f6fa7c7b44fb6cb30d060c2c065cbb8782185cab6cba810b886e71d6c7e6927","Warnings":null}
|
154
|
+
|
155
|
+
'
|
155
156
|
http_version:
|
156
|
-
recorded_at:
|
157
|
+
recorded_at: Thu, 12 Feb 2015 00:54:58 GMT
|
157
158
|
- request:
|
158
159
|
method: post
|
159
|
-
uri:
|
160
|
+
uri: <DOCKER_HOST>/v1.16/containers/5f6fa7c7b44fb6cb30d060c2c065cbb8782185cab6cba810b886e71d6c7e6927/start
|
160
161
|
body:
|
161
162
|
encoding: UTF-8
|
162
|
-
string:
|
163
|
+
string: ! '{}'
|
163
164
|
headers:
|
164
165
|
User-Agent:
|
165
|
-
- Swipely/Docker-API 1.
|
166
|
+
- Swipely/Docker-API 1.18.0
|
166
167
|
Content-Type:
|
167
168
|
- application/json
|
168
169
|
response:
|
@@ -171,21 +172,21 @@ http_interactions:
|
|
171
172
|
message:
|
172
173
|
headers:
|
173
174
|
Date:
|
174
|
-
-
|
175
|
+
- Thu, 12 Feb 2015 00:54:59 GMT
|
175
176
|
body:
|
176
|
-
encoding:
|
177
|
+
encoding: US-ASCII
|
177
178
|
string: ''
|
178
179
|
http_version:
|
179
|
-
recorded_at:
|
180
|
+
recorded_at: Thu, 12 Feb 2015 00:54:59 GMT
|
180
181
|
- request:
|
181
182
|
method: get
|
182
|
-
uri:
|
183
|
+
uri: <DOCKER_HOST>/v1.16/containers/5f6fa7c7b44fb6cb30d060c2c065cbb8782185cab6cba810b886e71d6c7e6927/logs?stdout=true
|
183
184
|
body:
|
184
185
|
encoding: US-ASCII
|
185
186
|
string: ''
|
186
187
|
headers:
|
187
188
|
User-Agent:
|
188
|
-
- Swipely/Docker-API 1.
|
189
|
+
- Swipely/Docker-API 1.18.0
|
189
190
|
Content-Type:
|
190
191
|
- text/plain
|
191
192
|
response:
|
@@ -194,25 +195,25 @@ http_interactions:
|
|
194
195
|
message:
|
195
196
|
headers:
|
196
197
|
Date:
|
197
|
-
-
|
198
|
+
- Thu, 12 Feb 2015 00:54:59 GMT
|
198
199
|
Content-Type:
|
199
200
|
- application/octet-stream
|
200
201
|
body:
|
201
|
-
encoding:
|
202
|
+
encoding: US-ASCII
|
202
203
|
string: !binary |-
|
203
204
|
AQAAAAAAAB1zb3VyY2UgJ2h0dHA6Ly9ydWJ5Z2Vtcy5vcmcnCgEAAAAAAAAB
|
204
205
|
CgEAAAAAAAAIZ2Vtc3BlYwo=
|
205
206
|
http_version:
|
206
|
-
recorded_at:
|
207
|
+
recorded_at: Thu, 12 Feb 2015 00:54:59 GMT
|
207
208
|
- request:
|
208
209
|
method: post
|
209
|
-
uri:
|
210
|
+
uri: <DOCKER_HOST>/v1.16/containers/5f6fa7c7b44fb6cb30d060c2c065cbb8782185cab6cba810b886e71d6c7e6927/wait
|
210
211
|
body:
|
211
212
|
encoding: US-ASCII
|
212
213
|
string: ''
|
213
214
|
headers:
|
214
215
|
User-Agent:
|
215
|
-
- Swipely/Docker-API 1.
|
216
|
+
- Swipely/Docker-API 1.18.0
|
216
217
|
Content-Type:
|
217
218
|
- text/plain
|
218
219
|
response:
|
@@ -223,24 +224,25 @@ http_interactions:
|
|
223
224
|
Content-Type:
|
224
225
|
- application/json
|
225
226
|
Date:
|
226
|
-
-
|
227
|
+
- Thu, 12 Feb 2015 00:54:59 GMT
|
227
228
|
Content-Length:
|
228
229
|
- '17'
|
229
230
|
body:
|
230
|
-
encoding:
|
231
|
-
string:
|
232
|
-
|
231
|
+
encoding: US-ASCII
|
232
|
+
string: ! '{"StatusCode":0}
|
233
|
+
|
234
|
+
'
|
233
235
|
http_version:
|
234
|
-
recorded_at:
|
236
|
+
recorded_at: Thu, 12 Feb 2015 00:54:59 GMT
|
235
237
|
- request:
|
236
238
|
method: delete
|
237
|
-
uri:
|
239
|
+
uri: <DOCKER_HOST>/v1.16/containers/5f6fa7c7b44fb6cb30d060c2c065cbb8782185cab6cba810b886e71d6c7e6927
|
238
240
|
body:
|
239
241
|
encoding: US-ASCII
|
240
242
|
string: ''
|
241
243
|
headers:
|
242
244
|
User-Agent:
|
243
|
-
- Swipely/Docker-API 1.
|
245
|
+
- Swipely/Docker-API 1.18.0
|
244
246
|
Content-Type:
|
245
247
|
- text/plain
|
246
248
|
response:
|
@@ -249,21 +251,21 @@ http_interactions:
|
|
249
251
|
message:
|
250
252
|
headers:
|
251
253
|
Date:
|
252
|
-
-
|
254
|
+
- Thu, 12 Feb 2015 00:54:59 GMT
|
253
255
|
body:
|
254
|
-
encoding:
|
256
|
+
encoding: US-ASCII
|
255
257
|
string: ''
|
256
258
|
http_version:
|
257
|
-
recorded_at:
|
259
|
+
recorded_at: Thu, 12 Feb 2015 00:54:59 GMT
|
258
260
|
- request:
|
259
261
|
method: delete
|
260
|
-
uri:
|
262
|
+
uri: <DOCKER_HOST>/v1.16/images/2743a448d2b9
|
261
263
|
body:
|
262
264
|
encoding: US-ASCII
|
263
265
|
string: ''
|
264
266
|
headers:
|
265
267
|
User-Agent:
|
266
|
-
- Swipely/Docker-API 1.
|
268
|
+
- Swipely/Docker-API 1.18.0
|
267
269
|
Content-Type:
|
268
270
|
- text/plain
|
269
271
|
response:
|
@@ -274,14 +276,14 @@ http_interactions:
|
|
274
276
|
Content-Type:
|
275
277
|
- application/json
|
276
278
|
Date:
|
277
|
-
-
|
279
|
+
- Thu, 12 Feb 2015 00:55:00 GMT
|
278
280
|
Content-Length:
|
279
281
|
- '81'
|
280
282
|
body:
|
281
|
-
encoding:
|
282
|
-
string:
|
283
|
-
|
284
|
-
]
|
283
|
+
encoding: US-ASCII
|
284
|
+
string: ! '[{"Deleted":"2743a448d2b989deefc9ac2e2d8c3840cb943bc3f03a6ebe1312844c0d790f36"}
|
285
|
+
|
286
|
+
]'
|
285
287
|
http_version:
|
286
|
-
recorded_at:
|
287
|
-
recorded_with: VCR 2.9.
|
288
|
+
recorded_at: Thu, 12 Feb 2015 00:55:00 GMT
|
289
|
+
recorded_with: VCR 2.9.2
|
data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml
CHANGED
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/images/create?fromImage=debian%3Awheezy
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.18.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,14 +19,14 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:54:55 GMT
|
23
23
|
body:
|
24
|
-
encoding:
|
25
|
-
string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
24
|
+
encoding: US-ASCII
|
25
|
+
string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
26
26
|
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
27
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
28
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
27
|
+
exists\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Already
|
28
|
+
exists\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
|
29
29
|
Image is up to date for debian:wheezy\"}\r\n"
|
30
30
|
http_version:
|
31
|
-
recorded_at:
|
32
|
-
recorded_with: VCR 2.9.
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:54:55 GMT
|
32
|
+
recorded_with: VCR 2.9.2
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri:
|
5
|
+
uri: <DOCKER_HOST>/v1.16/images/create?fromImage=debian%3Awheezy
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Swipely/Docker-API 1.
|
11
|
+
- Swipely/Docker-API 1.18.0
|
12
12
|
Content-Type:
|
13
13
|
- text/plain
|
14
14
|
response:
|
@@ -19,26 +19,26 @@ http_interactions:
|
|
19
19
|
Content-Type:
|
20
20
|
- application/json
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Thu, 12 Feb 2015 00:55:06 GMT
|
23
23
|
body:
|
24
|
-
encoding:
|
25
|
-
string: "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
24
|
+
encoding: US-ASCII
|
25
|
+
string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
|
26
26
|
exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
|
27
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
28
|
-
exists\",\"progressDetail\":{},\"id\":\"
|
27
|
+
exists\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Already
|
28
|
+
exists\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
|
29
29
|
Image is up to date for debian:wheezy\"}\r\n"
|
30
30
|
http_version:
|
31
|
-
recorded_at:
|
31
|
+
recorded_at: Thu, 12 Feb 2015 00:55:06 GMT
|
32
32
|
- request:
|
33
33
|
method: post
|
34
|
-
uri:
|
34
|
+
uri: <DOCKER_HOST>/v1.16/build
|
35
35
|
body:
|
36
36
|
encoding: UTF-8
|
37
37
|
string: !binary |-
|
38
38
|
R2VtZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
39
39
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
40
40
|
AAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAwADAwMDAwMDAwMDQ2
|
41
|
-
|
41
|
+
ADAwMDAwMDAwMDAwADAxMjU0NgAgMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
42
42
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
43
43
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1c3RhcgAwMHdoZWVs
|
44
44
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwAAAAAAAAAAAAAAAAA
|
@@ -60,8 +60,8 @@ http_interactions:
|
|
60
60
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAExJQ0VOU0UAAAAA
|
61
61
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
62
62
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAw
|
63
|
-
|
64
|
-
|
63
|
+
MDAwNjQwADAwMDAwMDAAMDAwMDAwMAAwMDAwMDAwMjA3MQAwMDAwMDAwMDAw
|
64
|
+
MAAwMTIyNjAAIDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
65
65
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
66
66
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAdXN0YXIAMDB3aGVlbAAAAAAAAAAAAAAA
|
67
67
|
AAAAAAAAAAAAAAAAAAAAAHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -106,7 +106,7 @@ http_interactions:
|
|
106
106
|
AAAAAAAAAAAAAAAARG9ja2VyZmlsZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
107
107
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
108
108
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAADAwMDA2NDAAMDAwMDAwMAAwMDAwMDAw
|
109
|
-
|
109
|
+
ADAwMDAwMDAwMDU2ADAwMDAwMDAwMDAwADAxMzI0NgAgMAAAAAAAAAAAAAAA
|
110
110
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
111
111
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB1
|
112
112
|
c3RhcgAwMHdoZWVsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAd2hlZWwA
|
@@ -114,8 +114,8 @@ http_interactions:
|
|
114
114
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
115
115
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
116
116
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
117
|
-
|
118
|
-
|
117
|
+
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmcm9tIGM5MGQ2NTViOTli
|
118
|
+
MgphZGQgR2VtZmlsZSAvCmFkZCBMSUNFTlNFIC8KAAAAAAAAAAAAAAAAAAAA
|
119
119
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
120
120
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
121
121
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
@@ -151,7 +151,7 @@ http_interactions:
|
|
151
151
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
|
152
152
|
headers:
|
153
153
|
User-Agent:
|
154
|
-
- Swipely/Docker-API 1.
|
154
|
+
- Swipely/Docker-API 1.18.0
|
155
155
|
Content-Type:
|
156
156
|
- application/json
|
157
157
|
response:
|
@@ -162,26 +162,26 @@ http_interactions:
|
|
162
162
|
Content-Type:
|
163
163
|
- application/json
|
164
164
|
Date:
|
165
|
-
-
|
165
|
+
- Thu, 12 Feb 2015 00:55:06 GMT
|
166
166
|
body:
|
167
|
-
encoding:
|
168
|
-
string: "{\"stream\":\"Step 0 : FROM
|
169
|
-
|
170
|
-
---\\u003e
|
171
|
-
|
172
|
-
---\\u003e
|
173
|
-
|
167
|
+
encoding: US-ASCII
|
168
|
+
string: ! "{\"stream\":\"Step 0 : FROM c90d655b99b2\\n\"}\r\n{\"stream\":\"
|
169
|
+
---\\u003e c90d655b99b2\\n\"}\r\n{\"stream\":\"Step 1 : ADD Gemfile /\\n\"}\r\n{\"stream\":\"
|
170
|
+
---\\u003e fb6a9bcd9a7f\\n\"}\r\n{\"stream\":\"Removing intermediate container
|
171
|
+
eacf4d1eab40\\n\"}\r\n{\"stream\":\"Step 2 : ADD LICENSE /\\n\"}\r\n{\"stream\":\"
|
172
|
+
---\\u003e bd28ee20df90\\n\"}\r\n{\"stream\":\"Removing intermediate container
|
173
|
+
cda4e700ecea\\n\"}\r\n{\"stream\":\"Successfully built bd28ee20df90\\n\"}\r\n"
|
174
174
|
http_version:
|
175
|
-
recorded_at:
|
175
|
+
recorded_at: Thu, 12 Feb 2015 00:55:10 GMT
|
176
176
|
- request:
|
177
177
|
method: post
|
178
|
-
uri:
|
178
|
+
uri: <DOCKER_HOST>/v1.16/containers/create
|
179
179
|
body:
|
180
180
|
encoding: UTF-8
|
181
|
-
string: '{"Image":"
|
181
|
+
string: ! '{"Image":"bd28ee20df90","Cmd":["cat","/Gemfile","/LICENSE"]}'
|
182
182
|
headers:
|
183
183
|
User-Agent:
|
184
|
-
- Swipely/Docker-API 1.
|
184
|
+
- Swipely/Docker-API 1.18.0
|
185
185
|
Content-Type:
|
186
186
|
- application/json
|
187
187
|
response:
|
@@ -192,24 +192,25 @@ http_interactions:
|
|
192
192
|
Content-Type:
|
193
193
|
- application/json
|
194
194
|
Date:
|
195
|
-
-
|
195
|
+
- Thu, 12 Feb 2015 00:55:11 GMT
|
196
196
|
Content-Length:
|
197
197
|
- '90'
|
198
198
|
body:
|
199
|
-
encoding:
|
200
|
-
string:
|
201
|
-
|
199
|
+
encoding: US-ASCII
|
200
|
+
string: ! '{"Id":"bf5a7cbfc6d76b28c5e1951088a1d9db761c3ddf922b73b89519c9f0726a5a58","Warnings":null}
|
201
|
+
|
202
|
+
'
|
202
203
|
http_version:
|
203
|
-
recorded_at:
|
204
|
+
recorded_at: Thu, 12 Feb 2015 00:55:11 GMT
|
204
205
|
- request:
|
205
206
|
method: post
|
206
|
-
uri:
|
207
|
+
uri: <DOCKER_HOST>/v1.16/containers/bf5a7cbfc6d76b28c5e1951088a1d9db761c3ddf922b73b89519c9f0726a5a58/start
|
207
208
|
body:
|
208
209
|
encoding: UTF-8
|
209
|
-
string:
|
210
|
+
string: ! '{}'
|
210
211
|
headers:
|
211
212
|
User-Agent:
|
212
|
-
- Swipely/Docker-API 1.
|
213
|
+
- Swipely/Docker-API 1.18.0
|
213
214
|
Content-Type:
|
214
215
|
- application/json
|
215
216
|
response:
|
@@ -218,21 +219,21 @@ http_interactions:
|
|
218
219
|
message:
|
219
220
|
headers:
|
220
221
|
Date:
|
221
|
-
-
|
222
|
+
- Thu, 12 Feb 2015 00:55:11 GMT
|
222
223
|
body:
|
223
|
-
encoding:
|
224
|
+
encoding: US-ASCII
|
224
225
|
string: ''
|
225
226
|
http_version:
|
226
|
-
recorded_at:
|
227
|
+
recorded_at: Thu, 12 Feb 2015 00:55:11 GMT
|
227
228
|
- request:
|
228
229
|
method: get
|
229
|
-
uri:
|
230
|
+
uri: <DOCKER_HOST>/v1.16/containers/bf5a7cbfc6d76b28c5e1951088a1d9db761c3ddf922b73b89519c9f0726a5a58/logs?stdout=true
|
230
231
|
body:
|
231
232
|
encoding: US-ASCII
|
232
233
|
string: ''
|
233
234
|
headers:
|
234
235
|
User-Agent:
|
235
|
-
- Swipely/Docker-API 1.
|
236
|
+
- Swipely/Docker-API 1.18.0
|
236
237
|
Content-Type:
|
237
238
|
- text/plain
|
238
239
|
response:
|
@@ -241,11 +242,11 @@ http_interactions:
|
|
241
242
|
message:
|
242
243
|
headers:
|
243
244
|
Date:
|
244
|
-
-
|
245
|
+
- Thu, 12 Feb 2015 00:55:11 GMT
|
245
246
|
Content-Type:
|
246
247
|
- application/octet-stream
|
247
248
|
body:
|
248
|
-
encoding:
|
249
|
+
encoding: US-ASCII
|
249
250
|
string: !binary |-
|
250
251
|
AQAAAAAAAB1zb3VyY2UgJ2h0dHA6Ly9ydWJ5Z2Vtcy5vcmcnCgEAAAAAAAAB
|
251
252
|
CgEAAAAAAAAIZ2Vtc3BlYwoBAAAAAAAAFlRoZSBNSVQgTGljZW5zZSAoTUlU
|
@@ -278,16 +279,16 @@ http_interactions:
|
|
278
279
|
SEUgVVNFIE9SIE9USEVSIERFQUxJTkdTIElOCgEAAAAAAAAOVEhFIFNPRlRX
|
279
280
|
QVJFLgoBAAAAAAAAAQo=
|
280
281
|
http_version:
|
281
|
-
recorded_at:
|
282
|
+
recorded_at: Thu, 12 Feb 2015 00:55:11 GMT
|
282
283
|
- request:
|
283
284
|
method: post
|
284
|
-
uri:
|
285
|
+
uri: <DOCKER_HOST>/v1.16/containers/bf5a7cbfc6d76b28c5e1951088a1d9db761c3ddf922b73b89519c9f0726a5a58/wait
|
285
286
|
body:
|
286
287
|
encoding: US-ASCII
|
287
288
|
string: ''
|
288
289
|
headers:
|
289
290
|
User-Agent:
|
290
|
-
- Swipely/Docker-API 1.
|
291
|
+
- Swipely/Docker-API 1.18.0
|
291
292
|
Content-Type:
|
292
293
|
- text/plain
|
293
294
|
response:
|
@@ -298,24 +299,25 @@ http_interactions:
|
|
298
299
|
Content-Type:
|
299
300
|
- application/json
|
300
301
|
Date:
|
301
|
-
-
|
302
|
+
- Thu, 12 Feb 2015 00:55:11 GMT
|
302
303
|
Content-Length:
|
303
304
|
- '17'
|
304
305
|
body:
|
305
|
-
encoding:
|
306
|
-
string:
|
307
|
-
|
306
|
+
encoding: US-ASCII
|
307
|
+
string: ! '{"StatusCode":0}
|
308
|
+
|
309
|
+
'
|
308
310
|
http_version:
|
309
|
-
recorded_at:
|
311
|
+
recorded_at: Thu, 12 Feb 2015 00:55:11 GMT
|
310
312
|
- request:
|
311
313
|
method: delete
|
312
|
-
uri:
|
314
|
+
uri: <DOCKER_HOST>/v1.16/containers/bf5a7cbfc6d76b28c5e1951088a1d9db761c3ddf922b73b89519c9f0726a5a58
|
313
315
|
body:
|
314
316
|
encoding: US-ASCII
|
315
317
|
string: ''
|
316
318
|
headers:
|
317
319
|
User-Agent:
|
318
|
-
- Swipely/Docker-API 1.
|
320
|
+
- Swipely/Docker-API 1.18.0
|
319
321
|
Content-Type:
|
320
322
|
- text/plain
|
321
323
|
response:
|
@@ -324,21 +326,21 @@ http_interactions:
|
|
324
326
|
message:
|
325
327
|
headers:
|
326
328
|
Date:
|
327
|
-
-
|
329
|
+
- Thu, 12 Feb 2015 00:55:12 GMT
|
328
330
|
body:
|
329
|
-
encoding:
|
331
|
+
encoding: US-ASCII
|
330
332
|
string: ''
|
331
333
|
http_version:
|
332
|
-
recorded_at:
|
334
|
+
recorded_at: Thu, 12 Feb 2015 00:55:12 GMT
|
333
335
|
- request:
|
334
336
|
method: delete
|
335
|
-
uri:
|
337
|
+
uri: <DOCKER_HOST>/v1.16/images/bd28ee20df90
|
336
338
|
body:
|
337
339
|
encoding: US-ASCII
|
338
340
|
string: ''
|
339
341
|
headers:
|
340
342
|
User-Agent:
|
341
|
-
- Swipely/Docker-API 1.
|
343
|
+
- Swipely/Docker-API 1.18.0
|
342
344
|
Content-Type:
|
343
345
|
- text/plain
|
344
346
|
response:
|
@@ -349,15 +351,16 @@ http_interactions:
|
|
349
351
|
Content-Type:
|
350
352
|
- application/json
|
351
353
|
Date:
|
352
|
-
-
|
354
|
+
- Thu, 12 Feb 2015 00:55:13 GMT
|
353
355
|
Content-Length:
|
354
356
|
- '161'
|
355
357
|
body:
|
356
|
-
encoding:
|
357
|
-
string:
|
358
|
-
|
359
|
-
,{"Deleted":"
|
360
|
-
|
358
|
+
encoding: US-ASCII
|
359
|
+
string: ! '[{"Deleted":"bd28ee20df90524afb9c2a75c48cf38ec5335bd03668bcaa826c2d04d425e8c1"}
|
360
|
+
|
361
|
+
,{"Deleted":"fb6a9bcd9a7f3abb0dc9755f31c8bdd5d4622f25261948dd5c77de8018f73341"}
|
362
|
+
|
363
|
+
]'
|
361
364
|
http_version:
|
362
|
-
recorded_at:
|
363
|
-
recorded_with: VCR 2.9.
|
365
|
+
recorded_at: Thu, 12 Feb 2015 00:55:13 GMT
|
366
|
+
recorded_with: VCR 2.9.2
|