appveyor-api 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.circle.yml +8 -0
- data/.github/CONTRIBUTING.md +5 -0
- data/.gitignore +50 -0
- data/.rubocop.yml +10 -0
- data/.ruby-version +1 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +112 -0
- data/Guardfile +22 -0
- data/LICENSE +674 -0
- data/README.md +26 -0
- data/appveyor.gemspec +37 -0
- data/lib/appveyor-api.rb +6 -0
- data/lib/appveyor-api/build.rb +34 -0
- data/lib/appveyor-api/client.rb +78 -0
- data/lib/appveyor-api/collaborators.rb +21 -0
- data/lib/appveyor-api/deployment.rb +47 -0
- data/lib/appveyor-api/environments.rb +116 -0
- data/lib/appveyor-api/projects.rb +116 -0
- data/lib/appveyor-api/response.rb +26 -0
- data/lib/appveyor-api/roles.rb +17 -0
- data/lib/appveyor-api/users.rb +24 -0
- data/spec/appveyor-api/client_spec.rb +16 -0
- data/spec/appveyor-api/environment_spec.rb +153 -0
- data/spec/appveyor-api/environments_spec.rb +48 -0
- data/spec/appveyor-api/project_spec.rb +109 -0
- data/spec/cassettes/add_FTP_environment_cassette.yml +49 -0
- data/spec/cassettes/create_environment_cassette.yml +49 -0
- data/spec/cassettes/delete_environment.yml +42 -0
- data/spec/cassettes/dev_environment_cassette.yml +93 -0
- data/spec/cassettes/environment_12168.yml +47 -0
- data/spec/cassettes/environment_cassette.yml +93 -0
- data/spec/cassettes/environment_list_after_delete.yml +46 -0
- data/spec/cassettes/environment_list_cassette.yml +49 -0
- data/spec/cassettes/find_environment_12168.yml +47 -0
- data/spec/cassettes/find_production_environment.yml +95 -0
- data/spec/cassettes/project_list.yml +60 -0
- data/spec/cassettes/projects_list.yml +288 -0
- data/spec/cassettes/update_FTP_environment_cassette.yml +49 -0
- data/spec/cassettes/update_environment_cassette.yml +49 -0
- data/spec/spec_helper.rb +28 -0
- metadata +299 -0
@@ -0,0 +1,49 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://ci.appveyor.com/api/environments
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: '{"name":"production","provider":"FTP","settings":{"providerSettings":[{"name":"server","value":{"value":"ftp.myserver.com","isEncrypted":false}},{"name":"username","value":{"value":"ftp-user","isEncrypted":false}},{"name":"password","value":{"value":"password","isEncrypted":true}}],"environmentVariables":[{"name":"my-var","value":{"value":"123","isEncrypted":false}}]}}'
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Authorization:
|
13
|
+
- Bearer <APPVEYOR_API_KEY>
|
14
|
+
User-Agent:
|
15
|
+
- Faraday v0.9.2
|
16
|
+
Content-Type:
|
17
|
+
- application/json
|
18
|
+
Accept-Encoding:
|
19
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
20
|
+
response:
|
21
|
+
status:
|
22
|
+
code: 200
|
23
|
+
message: OK
|
24
|
+
headers:
|
25
|
+
Cache-Control:
|
26
|
+
- no-cache
|
27
|
+
Pragma:
|
28
|
+
- no-cache
|
29
|
+
Content-Type:
|
30
|
+
- application/json; charset=utf-8
|
31
|
+
Expires:
|
32
|
+
- "-1"
|
33
|
+
Server:
|
34
|
+
- Microsoft-IIS/8.5
|
35
|
+
X-Aspnet-Version:
|
36
|
+
- 4.0.30319
|
37
|
+
X-Powered-By:
|
38
|
+
- ASP.NET
|
39
|
+
Date:
|
40
|
+
- Mon, 17 Oct 2016 21:14:23 GMT
|
41
|
+
Content-Length:
|
42
|
+
- '1132'
|
43
|
+
body:
|
44
|
+
encoding: UTF-8
|
45
|
+
string: '{"deploymentEnvironmentId":11400,"accountId":33256,"name":"production","provider":"FTP","environmentAccessKey":"wm4ya9ywjayk39t5","settings":{"providerSettings":[{"name":"server","value":{"isEncrypted":false,"value":"ftp.myserver.com"}},{"name":"username","value":{"isEncrypted":false,"value":"ftp-user"}},{"name":"password","value":{"isEncrypted":true,"value":"password"}}],"environmentVariables":[{"name":"my-var","value":{"isEncrypted":false,"value":"123"}}],"notifications":[]},"projectsMode":0,"selectedProjects":[],"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
46
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-10-17T21:14:22.6782835+00:00"}'
|
47
|
+
http_version:
|
48
|
+
recorded_at: Mon, 17 Oct 2016 21:14:24 GMT
|
49
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,42 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: delete
|
5
|
+
uri: https://ci.appveyor.com/api/environments/12168
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Authorization:
|
13
|
+
- Bearer <APPVEYOR_API_KEY>
|
14
|
+
User-Agent:
|
15
|
+
- Faraday v0.9.2
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 204
|
21
|
+
message: No Content
|
22
|
+
headers:
|
23
|
+
Cache-Control:
|
24
|
+
- no-cache
|
25
|
+
Pragma:
|
26
|
+
- no-cache
|
27
|
+
Expires:
|
28
|
+
- "-1"
|
29
|
+
Server:
|
30
|
+
- Microsoft-IIS/8.5
|
31
|
+
X-Aspnet-Version:
|
32
|
+
- 4.0.30319
|
33
|
+
X-Powered-By:
|
34
|
+
- ASP.NET
|
35
|
+
Date:
|
36
|
+
- Mon, 28 Nov 2016 16:28:26 GMT
|
37
|
+
body:
|
38
|
+
encoding: UTF-8
|
39
|
+
string: ''
|
40
|
+
http_version:
|
41
|
+
recorded_at: Mon, 28 Nov 2016 16:28:27 GMT
|
42
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,93 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://ci.appveyor.com/api/environments
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Authorization:
|
13
|
+
- Bearer <APPVEYOR_API_KEY>
|
14
|
+
User-Agent:
|
15
|
+
- Faraday v0.9.2
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Cache-Control:
|
24
|
+
- no-cache
|
25
|
+
Pragma:
|
26
|
+
- no-cache
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf-8
|
29
|
+
Expires:
|
30
|
+
- "-1"
|
31
|
+
Server:
|
32
|
+
- Microsoft-IIS/8.5
|
33
|
+
X-Aspnet-Version:
|
34
|
+
- 4.0.30319
|
35
|
+
X-Powered-By:
|
36
|
+
- ASP.NET
|
37
|
+
Date:
|
38
|
+
- Mon, 03 Oct 2016 19:13:59 GMT
|
39
|
+
Content-Length:
|
40
|
+
- '2251'
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '[{"deploymentEnvironmentId":7437,"accountId":33256,"name":"chef-appveyor-ci-cookbook","provider":"Agent","projectsMode":0,"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
44
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-01-25T15:48:33.5056397+00:00","updated":"2016-09-23T15:18:43.9334161+00:00"},{"deploymentEnvironmentId":10988,"accountId":33256,"name":"dev","provider":"Agent","projectsMode":0,"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
45
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-09-26T14:26:19.8003584+00:00","updated":"2016-09-27T10:41:46.8829381+00:00"},{"deploymentEnvironmentId":10989,"accountId":33256,"name":"test","provider":"Agent","projectsMode":0,"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
46
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-09-26T14:27:38.3644471+00:00"}]'
|
47
|
+
http_version:
|
48
|
+
recorded_at: Mon, 03 Oct 2016 19:14:01 GMT
|
49
|
+
- request:
|
50
|
+
method: get
|
51
|
+
uri: https://ci.appveyor.com/api/environments/10988/settings
|
52
|
+
body:
|
53
|
+
encoding: US-ASCII
|
54
|
+
string: ''
|
55
|
+
headers:
|
56
|
+
Accept:
|
57
|
+
- application/json
|
58
|
+
Authorization:
|
59
|
+
- Bearer <APPVEYOR_API_KEY>
|
60
|
+
User-Agent:
|
61
|
+
- Faraday v0.9.2
|
62
|
+
Accept-Encoding:
|
63
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
64
|
+
response:
|
65
|
+
status:
|
66
|
+
code: 200
|
67
|
+
message: OK
|
68
|
+
headers:
|
69
|
+
Cache-Control:
|
70
|
+
- no-cache
|
71
|
+
Pragma:
|
72
|
+
- no-cache
|
73
|
+
Content-Type:
|
74
|
+
- application/json; charset=utf-8
|
75
|
+
Expires:
|
76
|
+
- "-1"
|
77
|
+
Server:
|
78
|
+
- Microsoft-IIS/8.5
|
79
|
+
X-Aspnet-Version:
|
80
|
+
- 4.0.30319
|
81
|
+
X-Powered-By:
|
82
|
+
- ASP.NET
|
83
|
+
Date:
|
84
|
+
- Mon, 03 Oct 2016 19:14:01 GMT
|
85
|
+
Content-Length:
|
86
|
+
- '1226'
|
87
|
+
body:
|
88
|
+
encoding: UTF-8
|
89
|
+
string: '{"environment":{"deploymentEnvironmentId":10988,"accountId":33256,"name":"dev","provider":"Agent","environmentAccessKey":"aacafxvm5elv8h44","settings":{"providerSettings":[{"name":"povider_setting_1","value":{"isEncrypted":false,"value":"setting_1"}}],"environmentVariables":[{"name":"environment-variable-1","value":{"isEncrypted":false,"value":"environment-variable"}}],"notifications":[]},"projectsMode":0,"selectedProjects":[],"projects":[{"projectId":232326,"name":"asp_core","isSelected":false},{"projectId":223829,"name":"chef-appveyor-ci","isSelected":false}],"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
90
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-09-26T14:26:19.8003584+00:00","updated":"2016-09-27T10:41:46.8829381+00:00"}}'
|
91
|
+
http_version:
|
92
|
+
recorded_at: Mon, 03 Oct 2016 19:14:03 GMT
|
93
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,47 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://ci.appveyor.com/api/environments/12168/settings
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Authorization:
|
13
|
+
- Bearer <APPVEYOR_API_KEY>
|
14
|
+
User-Agent:
|
15
|
+
- Faraday v0.9.2
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Cache-Control:
|
24
|
+
- no-cache
|
25
|
+
Pragma:
|
26
|
+
- no-cache
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf-8
|
29
|
+
Expires:
|
30
|
+
- "-1"
|
31
|
+
Server:
|
32
|
+
- Microsoft-IIS/8.5
|
33
|
+
X-Aspnet-Version:
|
34
|
+
- 4.0.30319
|
35
|
+
X-Powered-By:
|
36
|
+
- ASP.NET
|
37
|
+
Date:
|
38
|
+
- Mon, 28 Nov 2016 14:29:47 GMT
|
39
|
+
Content-Length:
|
40
|
+
- '1352'
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '{"environment":{"deploymentEnvironmentId":12168,"accountId":33256,"name":"production","provider":"FTP","environmentAccessKey":"uleclq8bxva4oc3x","settings":{"providerSettings":[{"name":"server","value":{"isEncrypted":false,"value":"ftp.server.com"}},{"name":"username","value":{"isEncrypted":false,"value":"ftp-user"}},{"name":"password","value":{"isEncrypted":true,"value":"password"}}],"environmentVariables":[{"name":"my-var","value":{"isEncrypted":false,"value":"123"}}],"notifications":[]},"projectsMode":0,"selectedProjects":[],"projects":[{"projectId":232326,"name":"asp_core","isSelected":false},{"projectId":223829,"name":"chef-appveyor-ci","isSelected":false},{"projectId":253781,"name":"chef-opsview-client","isSelected":false}],"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
44
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-11-28T12:49:18.8589298+00:00"}}'
|
45
|
+
http_version:
|
46
|
+
recorded_at: Mon, 28 Nov 2016 14:29:47 GMT
|
47
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,93 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://ci.appveyor.com/api/environments
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Authorization:
|
13
|
+
- Bearer <APPVEYOR_API_KEY>
|
14
|
+
User-Agent:
|
15
|
+
- Faraday v0.9.2
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Cache-Control:
|
24
|
+
- no-cache
|
25
|
+
Pragma:
|
26
|
+
- no-cache
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf-8
|
29
|
+
Expires:
|
30
|
+
- "-1"
|
31
|
+
Server:
|
32
|
+
- Microsoft-IIS/8.5
|
33
|
+
X-Aspnet-Version:
|
34
|
+
- 4.0.30319
|
35
|
+
X-Powered-By:
|
36
|
+
- ASP.NET
|
37
|
+
Date:
|
38
|
+
- Fri, 30 Sep 2016 13:22:02 GMT
|
39
|
+
Content-Length:
|
40
|
+
- '2251'
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '[{"deploymentEnvironmentId":7437,"accountId":33256,"name":"chef-appveyor-ci-cookbook","provider":"Agent","projectsMode":0,"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
44
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-01-25T15:48:33.5056397+00:00","updated":"2016-09-23T15:18:43.9334161+00:00"},{"deploymentEnvironmentId":10988,"accountId":33256,"name":"dev","provider":"Agent","projectsMode":0,"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
45
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-09-26T14:26:19.8003584+00:00","updated":"2016-09-27T10:41:46.8829381+00:00"},{"deploymentEnvironmentId":10989,"accountId":33256,"name":"test","provider":"Agent","projectsMode":0,"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
46
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-09-26T14:27:38.3644471+00:00"}]'
|
47
|
+
http_version:
|
48
|
+
recorded_at: Fri, 30 Sep 2016 13:22:03 GMT
|
49
|
+
- request:
|
50
|
+
method: get
|
51
|
+
uri: https://ci.appveyor.com/api/environments/10988/settings
|
52
|
+
body:
|
53
|
+
encoding: US-ASCII
|
54
|
+
string: ''
|
55
|
+
headers:
|
56
|
+
Accept:
|
57
|
+
- application/json
|
58
|
+
Authorization:
|
59
|
+
- Bearer <APPVEYOR_API_KEY>
|
60
|
+
User-Agent:
|
61
|
+
- Faraday v0.9.2
|
62
|
+
Accept-Encoding:
|
63
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
64
|
+
response:
|
65
|
+
status:
|
66
|
+
code: 200
|
67
|
+
message: OK
|
68
|
+
headers:
|
69
|
+
Cache-Control:
|
70
|
+
- no-cache
|
71
|
+
Pragma:
|
72
|
+
- no-cache
|
73
|
+
Content-Type:
|
74
|
+
- application/json; charset=utf-8
|
75
|
+
Expires:
|
76
|
+
- "-1"
|
77
|
+
Server:
|
78
|
+
- Microsoft-IIS/8.5
|
79
|
+
X-Aspnet-Version:
|
80
|
+
- 4.0.30319
|
81
|
+
X-Powered-By:
|
82
|
+
- ASP.NET
|
83
|
+
Date:
|
84
|
+
- Fri, 30 Sep 2016 13:22:06 GMT
|
85
|
+
Content-Length:
|
86
|
+
- '1226'
|
87
|
+
body:
|
88
|
+
encoding: UTF-8
|
89
|
+
string: '{"environment":{"deploymentEnvironmentId":10988,"accountId":33256,"name":"dev","provider":"Agent","environmentAccessKey":"aacafxvm5elv8h44","settings":{"providerSettings":[{"name":"povider_setting_1","value":{"isEncrypted":false,"value":"setting_1"}}],"environmentVariables":[{"name":"environment-variable-1","value":{"isEncrypted":false,"value":"environment-variable"}}],"notifications":[]},"projectsMode":0,"selectedProjects":[],"projects":[{"projectId":232326,"name":"asp_core","isSelected":false},{"projectId":223829,"name":"chef-appveyor-ci","isSelected":false}],"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
90
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-09-26T14:26:19.8003584+00:00","updated":"2016-09-27T10:41:46.8829381+00:00"}}'
|
91
|
+
http_version:
|
92
|
+
recorded_at: Fri, 30 Sep 2016 13:22:07 GMT
|
93
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,46 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://ci.appveyor.com/api/environments/12168/settings
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Authorization:
|
13
|
+
- Bearer <APPVEYOR_API_KEY>
|
14
|
+
User-Agent:
|
15
|
+
- Faraday v0.9.2
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 404
|
21
|
+
message: Not Found
|
22
|
+
headers:
|
23
|
+
Cache-Control:
|
24
|
+
- no-cache
|
25
|
+
Pragma:
|
26
|
+
- no-cache
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf-8
|
29
|
+
Expires:
|
30
|
+
- "-1"
|
31
|
+
Server:
|
32
|
+
- Microsoft-IIS/8.5
|
33
|
+
X-Aspnet-Version:
|
34
|
+
- 4.0.30319
|
35
|
+
X-Powered-By:
|
36
|
+
- ASP.NET
|
37
|
+
Date:
|
38
|
+
- Mon, 28 Nov 2016 16:31:06 GMT
|
39
|
+
Content-Length:
|
40
|
+
- '64'
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '{"message":"Deployment environment not found or access denied."}'
|
44
|
+
http_version:
|
45
|
+
recorded_at: Mon, 28 Nov 2016 16:31:07 GMT
|
46
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,49 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://ci.appveyor.com/api/environments
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Authorization:
|
13
|
+
- Bearer <APPVEYOR_API_KEY>
|
14
|
+
User-Agent:
|
15
|
+
- Faraday v0.9.2
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Cache-Control:
|
24
|
+
- no-cache
|
25
|
+
Pragma:
|
26
|
+
- no-cache
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf-8
|
29
|
+
Expires:
|
30
|
+
- "-1"
|
31
|
+
Server:
|
32
|
+
- Microsoft-IIS/8.5
|
33
|
+
X-Aspnet-Version:
|
34
|
+
- 4.0.30319
|
35
|
+
X-Powered-By:
|
36
|
+
- ASP.NET
|
37
|
+
Date:
|
38
|
+
- Sat, 01 Oct 2016 08:16:31 GMT
|
39
|
+
Content-Length:
|
40
|
+
- '2251'
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '[{"deploymentEnvironmentId":7437,"accountId":33256,"name":"chef-appveyor-ci-cookbook","provider":"Agent","projectsMode":0,"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
44
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-01-25T15:48:33.5056397+00:00","updated":"2016-09-23T15:18:43.9334161+00:00"},{"deploymentEnvironmentId":10988,"accountId":33256,"name":"dev","provider":"Agent","projectsMode":0,"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
45
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-09-26T14:26:19.8003584+00:00","updated":"2016-09-27T10:41:46.8829381+00:00"},{"deploymentEnvironmentId":10989,"accountId":33256,"name":"test","provider":"Agent","projectsMode":0,"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
46
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-09-26T14:27:38.3644471+00:00"}]'
|
47
|
+
http_version:
|
48
|
+
recorded_at: Sat, 01 Oct 2016 08:16:33 GMT
|
49
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,47 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://ci.appveyor.com/api/environments/12168/settings
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
Authorization:
|
13
|
+
- Bearer <APPVEYOR_API_KEY>
|
14
|
+
User-Agent:
|
15
|
+
- Faraday v0.9.2
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Cache-Control:
|
24
|
+
- no-cache
|
25
|
+
Pragma:
|
26
|
+
- no-cache
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf-8
|
29
|
+
Expires:
|
30
|
+
- "-1"
|
31
|
+
Server:
|
32
|
+
- Microsoft-IIS/8.5
|
33
|
+
X-Aspnet-Version:
|
34
|
+
- 4.0.30319
|
35
|
+
X-Powered-By:
|
36
|
+
- ASP.NET
|
37
|
+
Date:
|
38
|
+
- Mon, 28 Nov 2016 14:28:01 GMT
|
39
|
+
Content-Length:
|
40
|
+
- '1352'
|
41
|
+
body:
|
42
|
+
encoding: UTF-8
|
43
|
+
string: '{"environment":{"deploymentEnvironmentId":12168,"accountId":33256,"name":"production","provider":"FTP","environmentAccessKey":"uleclq8bxva4oc3x","settings":{"providerSettings":[{"name":"server","value":{"isEncrypted":false,"value":"ftp.server.com"}},{"name":"username","value":{"isEncrypted":false,"value":"ftp-user"}},{"name":"password","value":{"isEncrypted":true,"value":"password"}}],"environmentVariables":[{"name":"my-var","value":{"isEncrypted":false,"value":"123"}}],"notifications":[]},"projectsMode":0,"selectedProjects":[],"projects":[{"projectId":232326,"name":"asp_core","isSelected":false},{"projectId":223829,"name":"chef-appveyor-ci","isSelected":false},{"projectId":253781,"name":"chef-opsview-client","isSelected":false}],"securityDescriptor":{"accessRightDefinitions":[{"name":"View","description":"View"},{"name":"Deploy","description":"Deploy
|
44
|
+
build"},{"name":"Update","description":"Update"},{"name":"Delete","description":"Delete"}],"roleAces":[{"roleId":53960,"name":"Administrator","isAdmin":true,"accessRights":[{"name":"View","allowed":true},{"name":"Deploy","allowed":true},{"name":"Update","allowed":true},{"name":"Delete","allowed":true}]},{"roleId":53961,"name":"User","isAdmin":false,"accessRights":[{"name":"View"},{"name":"Deploy"},{"name":"Update"},{"name":"Delete"}]}]},"created":"2016-11-28T12:49:18.8589298+00:00"}}'
|
45
|
+
http_version:
|
46
|
+
recorded_at: Mon, 28 Nov 2016 14:28:02 GMT
|
47
|
+
recorded_with: VCR 3.0.3
|