fog-proxmox 0.5.5 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +7 -0
- data/.travis.yml +1 -0
- data/.vscode/launch.json +3 -21
- data/.vscode/settings.json +7 -7
- data/Gemfile.lock +39 -39
- data/README.md +9 -2
- data/examples/compute.rb +20 -23
- data/examples/identity.rb +16 -21
- data/fog-proxmox.gemspec +1 -2
- data/lib/fog/compute/proxmox.rb +2 -8
- data/lib/fog/compute/proxmox/models/disk.rb +13 -11
- data/lib/fog/compute/proxmox/models/disks.rb +3 -5
- data/lib/fog/compute/proxmox/models/interface.rb +6 -11
- data/lib/fog/compute/proxmox/models/interfaces.rb +3 -5
- data/lib/fog/compute/proxmox/models/node.rb +38 -43
- data/lib/fog/compute/proxmox/models/nodes.rb +5 -11
- data/lib/fog/compute/proxmox/models/server.rb +123 -80
- data/lib/fog/compute/proxmox/models/server_config.rb +56 -24
- data/lib/fog/compute/proxmox/models/servers.rb +34 -26
- data/lib/fog/compute/proxmox/models/snapshot.rb +28 -14
- data/lib/fog/compute/proxmox/models/snapshots.rb +9 -17
- data/lib/fog/compute/proxmox/models/storage.rb +15 -11
- data/lib/fog/compute/proxmox/models/storages.rb +13 -22
- data/lib/fog/compute/proxmox/models/task.rb +10 -14
- data/lib/fog/compute/proxmox/models/tasks.rb +9 -18
- data/lib/fog/compute/proxmox/models/volume.rb +12 -12
- data/lib/fog/compute/proxmox/models/volumes.rb +10 -19
- data/lib/fog/compute/proxmox/requests/action_server.rb +1 -4
- data/lib/fog/compute/proxmox/requests/clone_server.rb +1 -4
- data/lib/fog/compute/proxmox/requests/create_backup.rb +1 -4
- data/lib/fog/compute/proxmox/requests/create_server.rb +1 -4
- data/lib/fog/compute/proxmox/requests/create_snapshot.rb +1 -4
- data/lib/fog/compute/proxmox/requests/create_spice.rb +1 -4
- data/lib/fog/compute/proxmox/requests/create_term.rb +1 -4
- data/lib/fog/compute/proxmox/requests/create_vnc.rb +1 -4
- data/lib/fog/compute/proxmox/requests/delete_server.rb +1 -4
- data/lib/fog/compute/proxmox/requests/delete_snapshot.rb +1 -4
- data/lib/fog/compute/proxmox/requests/get_node_statistics.rb +1 -4
- data/lib/fog/compute/proxmox/requests/get_server_config.rb +1 -4
- data/lib/fog/compute/proxmox/requests/get_server_status.rb +1 -4
- data/lib/fog/compute/proxmox/requests/{get_snapshot.rb → get_snapshot_config.rb} +5 -8
- data/lib/fog/compute/proxmox/requests/get_task.rb +1 -4
- data/lib/fog/compute/proxmox/requests/get_vnc.rb +1 -4
- data/lib/fog/compute/proxmox/requests/list_nodes.rb +1 -2
- data/lib/fog/compute/proxmox/requests/list_storages.rb +3 -1
- data/lib/fog/compute/proxmox/requests/log_task.rb +1 -4
- data/lib/fog/compute/proxmox/requests/move_disk.rb +1 -4
- data/lib/fog/compute/proxmox/requests/move_volume.rb +1 -4
- data/lib/fog/compute/proxmox/requests/next_vmid.rb +5 -3
- data/lib/fog/compute/proxmox/requests/resize_container.rb +1 -4
- data/lib/fog/compute/proxmox/requests/status_task.rb +1 -4
- data/lib/fog/compute/proxmox/requests/update_server.rb +1 -4
- data/lib/fog/identity/proxmox.rb +2 -8
- data/lib/fog/identity/proxmox/models/domain.rb +25 -21
- data/lib/fog/identity/proxmox/models/{ldap.rb → domain_type.rb} +9 -18
- data/lib/fog/identity/proxmox/models/domains.rb +6 -76
- data/lib/fog/identity/proxmox/models/group.rb +6 -19
- data/lib/fog/identity/proxmox/models/groups.rb +6 -12
- data/lib/fog/identity/proxmox/models/permission.rb +27 -31
- data/lib/fog/identity/proxmox/models/permissions.rb +8 -25
- data/lib/fog/identity/proxmox/models/pool.rb +9 -22
- data/lib/fog/identity/proxmox/models/pools.rb +7 -13
- data/lib/fog/identity/proxmox/models/principal.rb +1 -6
- data/lib/fog/identity/proxmox/models/role.rb +7 -20
- data/lib/fog/identity/proxmox/models/roles.rb +6 -13
- data/lib/fog/identity/proxmox/models/user.rb +7 -21
- data/lib/fog/identity/proxmox/models/users.rb +6 -12
- data/lib/fog/identity/proxmox/requests/check_permissions.rb +1 -4
- data/lib/fog/identity/proxmox/requests/list_roles.rb +0 -1
- data/lib/fog/identity/proxmox/requests/read_version.rb +1 -5
- data/lib/fog/identity/proxmox/requests/update_group.rb +2 -3
- data/lib/fog/identity/proxmox/requests/{add_permission.rb → update_permissions.rb} +4 -4
- data/lib/fog/network/proxmox/models/network.rb +12 -18
- data/lib/fog/network/proxmox/models/networks.rb +11 -17
- data/lib/fog/network/proxmox/models/node.rb +14 -10
- data/lib/fog/network/proxmox/models/nodes.rb +5 -11
- data/lib/fog/network/proxmox/requests/create_network.rb +1 -4
- data/lib/fog/network/proxmox/requests/delete_network.rb +1 -4
- data/lib/fog/network/proxmox/requests/get_network.rb +1 -4
- data/lib/fog/network/proxmox/requests/get_node.rb +1 -4
- data/lib/fog/network/proxmox/requests/power_node.rb +1 -4
- data/lib/fog/network/proxmox/requests/update_network.rb +1 -4
- data/lib/fog/{compute/proxmox/requests/check_vmid.rb → proxmox/attributes.rb} +9 -17
- data/lib/fog/proxmox/core.rb +2 -1
- data/lib/fog/proxmox/helpers/cpu_helper.rb +6 -3
- data/lib/fog/proxmox/helpers/disk_helper.rb +1 -1
- data/lib/fog/proxmox/helpers/nic_helper.rb +37 -22
- data/lib/fog/proxmox/version.rb +1 -1
- data/lib/fog/storage/proxmox.rb +1 -1
- data/spec/compute_spec.rb +64 -45
- data/spec/fixtures/proxmox/compute/containers.yml +1684 -4137
- data/spec/fixtures/proxmox/compute/identity_ticket.yml +4 -4
- data/spec/fixtures/proxmox/compute/nodes.yml +21 -21
- data/spec/fixtures/proxmox/compute/servers.yml +3065 -7741
- data/spec/fixtures/proxmox/compute/snapshots.yml +279 -827
- data/spec/fixtures/proxmox/compute/storages.yml +60 -21
- data/spec/fixtures/proxmox/compute/tasks.yml +56 -98
- data/spec/fixtures/proxmox/identity/auth.yml +6 -6
- data/spec/fixtures/proxmox/identity/domains.yml +252 -84
- data/spec/fixtures/proxmox/identity/groups.yml +93 -54
- data/spec/fixtures/proxmox/identity/identity_ticket.yml +4 -4
- data/spec/fixtures/proxmox/identity/permissions.yml +317 -79
- data/spec/fixtures/proxmox/identity/pools.yml +266 -71
- data/spec/fixtures/proxmox/identity/read_version.yml +6 -6
- data/spec/fixtures/proxmox/identity/roles.yml +96 -57
- data/spec/fixtures/proxmox/identity/users.yml +224 -107
- data/spec/fixtures/proxmox/network/identity_ticket.yml +4 -4
- data/spec/fixtures/proxmox/network/networks.yml +54 -95
- data/spec/helpers/nic_helper_spec.rb +4 -4
- data/spec/identity_spec.rb +38 -46
- data/spec/network_spec.rb +1 -1
- metadata +9 -23
- data/lib/fog/compute/proxmox/models/container.rb +0 -86
- data/lib/fog/compute/proxmox/models/container_config.rb +0 -114
- data/lib/fog/compute/proxmox/models/containers.rb +0 -43
- data/lib/fog/compute/proxmox/requests/get_node.rb +0 -44
- data/lib/fog/compute/proxmox/requests/get_storage.rb +0 -44
- data/lib/fog/identity/proxmox/models/activedirectory.rb +0 -57
- data/lib/fog/identity/proxmox/models/oath.rb +0 -50
- data/lib/fog/identity/proxmox/models/pam.rb +0 -46
- data/lib/fog/identity/proxmox/models/pve.rb +0 -46
- data/lib/fog/identity/proxmox/models/yubico.rb +0 -51
- data/lib/fog/identity/proxmox/requests/remove_permission.rb +0 -42
- data/lib/fog/proxmox/models/collection.rb +0 -85
- data/lib/fog/proxmox/models/model.rb +0 -58
@@ -12,7 +12,7 @@ http_interactions:
|
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
14
|
Cookie:
|
15
|
-
- PVEAuthCookie=PVE:root@pam:
|
15
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FE::PV5429PyZgWF/XjTk9r/Zibfow4+R0QQRA/ft6DEe8LaBkrHzj68jdt8K530G0fXc2ewj53Q8F+rfZpQeOAitzWbKmMjSZo1jf79OOHiW9ns+qlbyrG+mFE1NFMn3awiUL5RD50wsrrrKVS4v17TRPbIwpLdbYHKN3liyS+EBKZEzG5RLXRw3oU4DZaVuBnWgAuMVog8WpIFxG5NxDjQOXgm7kmzPv9OJOn4ZocQrsE5P12XGazk82QmT58eWDooD45NzlnSxAUPSS8bPguoc86EdL3LB1PhDXBth/dlZE+ktHQHvUgOV1qUMBzbDSfWGLU3PmZ+FekdtXUhhyN4Hg==
|
16
16
|
response:
|
17
17
|
status:
|
18
18
|
code: 200
|
@@ -23,20 +23,20 @@ http_interactions:
|
|
23
23
|
Connection:
|
24
24
|
- Keep-Alive
|
25
25
|
Date:
|
26
|
-
-
|
26
|
+
- Wed, 03 Apr 2019 13:32:46 GMT
|
27
27
|
Pragma:
|
28
28
|
- no-cache
|
29
29
|
Server:
|
30
30
|
- pve-api-daemon/3.0
|
31
31
|
Content-Length:
|
32
|
-
- '
|
32
|
+
- '134'
|
33
33
|
Content-Type:
|
34
34
|
- application/json;charset=UTF-8
|
35
35
|
Expires:
|
36
|
-
-
|
36
|
+
- Wed, 03 Apr 2019 13:32:46 GMT
|
37
37
|
body:
|
38
38
|
encoding: ASCII-8BIT
|
39
|
-
string: '{"data":{"
|
39
|
+
string: '{"data":{"http_proxy":"http://pfrie-std.proxy.e2.rie.gouv.fr:8080","version":"5.3","keyboard":"fr","repoid":"2929af8e","release":"8"}}'
|
40
40
|
http_version:
|
41
|
-
recorded_at:
|
41
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
42
42
|
recorded_with: VCR 3.0.3
|
@@ -12,9 +12,9 @@ http_interactions:
|
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
14
|
Csrfpreventiontoken:
|
15
|
-
-
|
15
|
+
- 5CA4B5FC:HZr6PykVK7OiMXGYVCBY7RTIQIw
|
16
16
|
Cookie:
|
17
|
-
- PVEAuthCookie=PVE:root@pam:
|
17
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FC::h1HVXyhCGMBLWVlKEquCR8zuVMmAoUA59BiQJMRzt/eA4CykjAsOIlLqxIolKeQhiH8XaXVd/2UDEF9fTA8QYZl+heJstOH+yKewosfVHK702Jbq3t9WOeUAI0DteDvvDgDvdkuWvYBjXWmdkSTRmF+ni12oj1tJnhSHMHcodGGHxmjRJRU5NujeyP3Sh1Rs3m6LMsxUXnZud/60bd+QCWsbhx6Vo4OXNVT69pZu6lgsfhSRWGmlLJH4RIH4N3xLebOXxd1gcYFvWIvQnFPqhK8pfnaEBLi/cPzPpHYt42osFbvCPw0CDIbXIe5pU73MgFXOHE/vzSIr7bK8eG/oLg==
|
18
18
|
response:
|
19
19
|
status:
|
20
20
|
code: 200
|
@@ -25,7 +25,7 @@ http_interactions:
|
|
25
25
|
Connection:
|
26
26
|
- close, Keep-Alive
|
27
27
|
Date:
|
28
|
-
-
|
28
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
29
29
|
Pragma:
|
30
30
|
- no-cache
|
31
31
|
Server:
|
@@ -35,12 +35,12 @@ http_interactions:
|
|
35
35
|
Content-Type:
|
36
36
|
- application/json;charset=UTF-8
|
37
37
|
Expires:
|
38
|
-
-
|
38
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
39
39
|
body:
|
40
40
|
encoding: ASCII-8BIT
|
41
41
|
string: '{"data":null}'
|
42
42
|
http_version:
|
43
|
-
recorded_at:
|
43
|
+
recorded_at: Wed, 03 Apr 2019 13:32:46 GMT
|
44
44
|
- request:
|
45
45
|
method: get
|
46
46
|
uri: https://192.168.56.101:8006/api2/json/access/roles
|
@@ -53,7 +53,7 @@ http_interactions:
|
|
53
53
|
Accept:
|
54
54
|
- application/json
|
55
55
|
Cookie:
|
56
|
-
- PVEAuthCookie=PVE:root@pam:
|
56
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FC::h1HVXyhCGMBLWVlKEquCR8zuVMmAoUA59BiQJMRzt/eA4CykjAsOIlLqxIolKeQhiH8XaXVd/2UDEF9fTA8QYZl+heJstOH+yKewosfVHK702Jbq3t9WOeUAI0DteDvvDgDvdkuWvYBjXWmdkSTRmF+ni12oj1tJnhSHMHcodGGHxmjRJRU5NujeyP3Sh1Rs3m6LMsxUXnZud/60bd+QCWsbhx6Vo4OXNVT69pZu6lgsfhSRWGmlLJH4RIH4N3xLebOXxd1gcYFvWIvQnFPqhK8pfnaEBLi/cPzPpHYt42osFbvCPw0CDIbXIe5pU73MgFXOHE/vzSIr7bK8eG/oLg==
|
57
57
|
response:
|
58
58
|
status:
|
59
59
|
code: 200
|
@@ -64,22 +64,61 @@ http_interactions:
|
|
64
64
|
Connection:
|
65
65
|
- Keep-Alive
|
66
66
|
Date:
|
67
|
-
-
|
67
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
68
68
|
Pragma:
|
69
69
|
- no-cache
|
70
70
|
Server:
|
71
71
|
- pve-api-daemon/3.0
|
72
72
|
Content-Length:
|
73
|
-
- '
|
73
|
+
- '2123'
|
74
74
|
Content-Type:
|
75
75
|
- application/json;charset=UTF-8
|
76
76
|
Expires:
|
77
|
-
-
|
77
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
78
78
|
body:
|
79
79
|
encoding: ASCII-8BIT
|
80
|
-
string: '{"data":[{"special":
|
80
|
+
string: '{"data":[{"special":1,"roleid":"PVESysAdmin","privs":"Permissions.Modify,Sys.Audit,Sys.Console,Sys.Syslog"},{"special":1,"roleid":"PVEDatastoreUser","privs":"Datastore.AllocateSpace,Datastore.Audit"},{"special":1,"roleid":"PVEAdmin","privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit,Group.Allocate,Permissions.Modify,Pool.Allocate,Realm.AllocateUser,Sys.Audit,Sys.Console,Sys.Syslog,User.Modify,VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback"},{"roleid":"NoAccess","privs":"","special":1},{"roleid":"PVEPoolAdmin","privs":"Pool.Allocate","special":1},{"privs":"VM.Audit,VM.Backup,VM.Config.CDROM,VM.Console,VM.PowerMgmt","roleid":"PVEVMUser","special":1},{"privs":"VM.Audit,VM.Clone","roleid":"PVETemplateUser","special":1},{"roleid":"PVETestAuditor","privs":"","special":0},{"special":1,"privs":"Datastore.Audit,Sys.Audit,VM.Audit","roleid":"PVEAuditor"},{"privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit","roleid":"PVEDatastoreAdmin","special":1},{"special":1,"roleid":"PVEUserAdmin","privs":"Group.Allocate,Realm.AllocateUser,User.Modify"},{"special":1,"roleid":"PVEVMAdmin","privs":"VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback"},{"privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit,Group.Allocate,Permissions.Modify,Pool.Allocate,Realm.Allocate,Realm.AllocateUser,Sys.Audit,Sys.Console,Sys.Modify,Sys.PowerMgmt,Sys.Syslog,User.Modify,VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback","roleid":"Administrator","special":1}]}'
|
81
81
|
http_version:
|
82
|
-
recorded_at:
|
82
|
+
recorded_at: Wed, 03 Apr 2019 13:32:46 GMT
|
83
|
+
- request:
|
84
|
+
method: get
|
85
|
+
uri: https://192.168.56.101:8006/api2/json/access/roles
|
86
|
+
body:
|
87
|
+
encoding: US-ASCII
|
88
|
+
string: ''
|
89
|
+
headers:
|
90
|
+
User-Agent:
|
91
|
+
- fog-core/1.45.0
|
92
|
+
Accept:
|
93
|
+
- application/json
|
94
|
+
Cookie:
|
95
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FC::h1HVXyhCGMBLWVlKEquCR8zuVMmAoUA59BiQJMRzt/eA4CykjAsOIlLqxIolKeQhiH8XaXVd/2UDEF9fTA8QYZl+heJstOH+yKewosfVHK702Jbq3t9WOeUAI0DteDvvDgDvdkuWvYBjXWmdkSTRmF+ni12oj1tJnhSHMHcodGGHxmjRJRU5NujeyP3Sh1Rs3m6LMsxUXnZud/60bd+QCWsbhx6Vo4OXNVT69pZu6lgsfhSRWGmlLJH4RIH4N3xLebOXxd1gcYFvWIvQnFPqhK8pfnaEBLi/cPzPpHYt42osFbvCPw0CDIbXIe5pU73MgFXOHE/vzSIr7bK8eG/oLg==
|
96
|
+
response:
|
97
|
+
status:
|
98
|
+
code: 200
|
99
|
+
message: OK
|
100
|
+
headers:
|
101
|
+
Cache-Control:
|
102
|
+
- max-age=0
|
103
|
+
Connection:
|
104
|
+
- Keep-Alive
|
105
|
+
Date:
|
106
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
107
|
+
Pragma:
|
108
|
+
- no-cache
|
109
|
+
Server:
|
110
|
+
- pve-api-daemon/3.0
|
111
|
+
Content-Length:
|
112
|
+
- '2123'
|
113
|
+
Content-Type:
|
114
|
+
- application/json;charset=UTF-8
|
115
|
+
Expires:
|
116
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
117
|
+
body:
|
118
|
+
encoding: ASCII-8BIT
|
119
|
+
string: '{"data":[{"special":1,"roleid":"NoAccess","privs":""},{"roleid":"PVEPoolAdmin","privs":"Pool.Allocate","special":1},{"privs":"VM.Audit,VM.Backup,VM.Config.CDROM,VM.Console,VM.PowerMgmt","roleid":"PVEVMUser","special":1},{"roleid":"PVETemplateUser","privs":"VM.Audit,VM.Clone","special":1},{"special":0,"privs":"","roleid":"PVETestAuditor"},{"special":1,"roleid":"PVEAuditor","privs":"Datastore.Audit,Sys.Audit,VM.Audit"},{"special":1,"privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit","roleid":"PVEDatastoreAdmin"},{"privs":"Group.Allocate,Realm.AllocateUser,User.Modify","roleid":"PVEUserAdmin","special":1},{"special":1,"privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit,Group.Allocate,Permissions.Modify,Pool.Allocate,Realm.Allocate,Realm.AllocateUser,Sys.Audit,Sys.Console,Sys.Modify,Sys.PowerMgmt,Sys.Syslog,User.Modify,VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback","roleid":"Administrator"},{"roleid":"PVEVMAdmin","privs":"VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback","special":1},{"special":1,"roleid":"PVESysAdmin","privs":"Permissions.Modify,Sys.Audit,Sys.Console,Sys.Syslog"},{"special":1,"privs":"Datastore.AllocateSpace,Datastore.Audit","roleid":"PVEDatastoreUser"},{"roleid":"PVEAdmin","privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit,Group.Allocate,Permissions.Modify,Pool.Allocate,Realm.AllocateUser,Sys.Audit,Sys.Console,Sys.Syslog,User.Modify,VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback","special":1}]}'
|
120
|
+
http_version:
|
121
|
+
recorded_at: Wed, 03 Apr 2019 13:32:46 GMT
|
83
122
|
- request:
|
84
123
|
method: post
|
85
124
|
uri: https://192.168.56.101:8006/api2/json/access/roles
|
@@ -92,9 +131,9 @@ http_interactions:
|
|
92
131
|
Accept:
|
93
132
|
- application/json
|
94
133
|
Csrfpreventiontoken:
|
95
|
-
-
|
134
|
+
- 5CA4B5FC:HZr6PykVK7OiMXGYVCBY7RTIQIw
|
96
135
|
Cookie:
|
97
|
-
- PVEAuthCookie=PVE:root@pam:
|
136
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FC::h1HVXyhCGMBLWVlKEquCR8zuVMmAoUA59BiQJMRzt/eA4CykjAsOIlLqxIolKeQhiH8XaXVd/2UDEF9fTA8QYZl+heJstOH+yKewosfVHK702Jbq3t9WOeUAI0DteDvvDgDvdkuWvYBjXWmdkSTRmF+ni12oj1tJnhSHMHcodGGHxmjRJRU5NujeyP3Sh1Rs3m6LMsxUXnZud/60bd+QCWsbhx6Vo4OXNVT69pZu6lgsfhSRWGmlLJH4RIH4N3xLebOXxd1gcYFvWIvQnFPqhK8pfnaEBLi/cPzPpHYt42osFbvCPw0CDIbXIe5pU73MgFXOHE/vzSIr7bK8eG/oLg==
|
98
137
|
response:
|
99
138
|
status:
|
100
139
|
code: 500
|
@@ -106,7 +145,7 @@ http_interactions:
|
|
106
145
|
Connection:
|
107
146
|
- close
|
108
147
|
Date:
|
109
|
-
-
|
148
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
110
149
|
Pragma:
|
111
150
|
- no-cache
|
112
151
|
Server:
|
@@ -116,12 +155,12 @@ http_interactions:
|
|
116
155
|
Content-Type:
|
117
156
|
- application/json;charset=UTF-8
|
118
157
|
Expires:
|
119
|
-
-
|
158
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
120
159
|
body:
|
121
160
|
encoding: ASCII-8BIT
|
122
161
|
string: '{"data":null}'
|
123
162
|
http_version:
|
124
|
-
recorded_at:
|
163
|
+
recorded_at: Wed, 03 Apr 2019 13:32:46 GMT
|
125
164
|
- request:
|
126
165
|
method: put
|
127
166
|
uri: https://192.168.56.101:8006/api2/json/access/roles/PVETestAuditor
|
@@ -134,9 +173,9 @@ http_interactions:
|
|
134
173
|
Accept:
|
135
174
|
- application/json
|
136
175
|
Csrfpreventiontoken:
|
137
|
-
-
|
176
|
+
- 5CA4B5FC:HZr6PykVK7OiMXGYVCBY7RTIQIw
|
138
177
|
Cookie:
|
139
|
-
- PVEAuthCookie=PVE:root@pam:
|
178
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FC::h1HVXyhCGMBLWVlKEquCR8zuVMmAoUA59BiQJMRzt/eA4CykjAsOIlLqxIolKeQhiH8XaXVd/2UDEF9fTA8QYZl+heJstOH+yKewosfVHK702Jbq3t9WOeUAI0DteDvvDgDvdkuWvYBjXWmdkSTRmF+ni12oj1tJnhSHMHcodGGHxmjRJRU5NujeyP3Sh1Rs3m6LMsxUXnZud/60bd+QCWsbhx6Vo4OXNVT69pZu6lgsfhSRWGmlLJH4RIH4N3xLebOXxd1gcYFvWIvQnFPqhK8pfnaEBLi/cPzPpHYt42osFbvCPw0CDIbXIe5pU73MgFXOHE/vzSIr7bK8eG/oLg==
|
140
179
|
response:
|
141
180
|
status:
|
142
181
|
code: 200
|
@@ -147,7 +186,7 @@ http_interactions:
|
|
147
186
|
Connection:
|
148
187
|
- Keep-Alive, Keep-Alive
|
149
188
|
Date:
|
150
|
-
-
|
189
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
151
190
|
Pragma:
|
152
191
|
- no-cache
|
153
192
|
Server:
|
@@ -157,12 +196,12 @@ http_interactions:
|
|
157
196
|
Content-Type:
|
158
197
|
- application/json;charset=UTF-8
|
159
198
|
Expires:
|
160
|
-
-
|
199
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
161
200
|
body:
|
162
201
|
encoding: ASCII-8BIT
|
163
202
|
string: '{"data":null}'
|
164
203
|
http_version:
|
165
|
-
recorded_at:
|
204
|
+
recorded_at: Wed, 03 Apr 2019 13:32:46 GMT
|
166
205
|
- request:
|
167
206
|
method: get
|
168
207
|
uri: https://192.168.56.101:8006/api2/json/access/roles
|
@@ -175,7 +214,7 @@ http_interactions:
|
|
175
214
|
Accept:
|
176
215
|
- application/json
|
177
216
|
Cookie:
|
178
|
-
- PVEAuthCookie=PVE:root@pam:
|
217
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FC::h1HVXyhCGMBLWVlKEquCR8zuVMmAoUA59BiQJMRzt/eA4CykjAsOIlLqxIolKeQhiH8XaXVd/2UDEF9fTA8QYZl+heJstOH+yKewosfVHK702Jbq3t9WOeUAI0DteDvvDgDvdkuWvYBjXWmdkSTRmF+ni12oj1tJnhSHMHcodGGHxmjRJRU5NujeyP3Sh1Rs3m6LMsxUXnZud/60bd+QCWsbhx6Vo4OXNVT69pZu6lgsfhSRWGmlLJH4RIH4N3xLebOXxd1gcYFvWIvQnFPqhK8pfnaEBLi/cPzPpHYt42osFbvCPw0CDIbXIe5pU73MgFXOHE/vzSIr7bK8eG/oLg==
|
179
218
|
response:
|
180
219
|
status:
|
181
220
|
code: 200
|
@@ -186,25 +225,25 @@ http_interactions:
|
|
186
225
|
Connection:
|
187
226
|
- Keep-Alive
|
188
227
|
Date:
|
189
|
-
-
|
228
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
190
229
|
Pragma:
|
191
230
|
- no-cache
|
192
231
|
Server:
|
193
232
|
- pve-api-daemon/3.0
|
194
233
|
Content-Length:
|
195
|
-
- '
|
234
|
+
- '2157'
|
196
235
|
Content-Type:
|
197
236
|
- application/json;charset=UTF-8
|
198
237
|
Expires:
|
199
|
-
-
|
238
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
200
239
|
body:
|
201
240
|
encoding: ASCII-8BIT
|
202
|
-
string: '{"data":[{"special":"","roleid":"
|
241
|
+
string: '{"data":[{"roleid":"PVEPoolAdmin","privs":"Pool.Allocate","special":1},{"special":1,"privs":"","roleid":"NoAccess"},{"roleid":"PVETemplateUser","privs":"VM.Audit,VM.Clone","special":1},{"special":1,"roleid":"PVEVMUser","privs":"VM.Audit,VM.Backup,VM.Config.CDROM,VM.Console,VM.PowerMgmt"},{"privs":"Datastore.Audit,Sys.Audit,VM.Audit","roleid":"PVEAuditor","special":1},{"special":0,"privs":"Datastore.Audit,Sys.Audit,VM.Audit","roleid":"PVETestAuditor"},{"special":1,"privs":"VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback","roleid":"PVEVMAdmin"},{"privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit,Group.Allocate,Permissions.Modify,Pool.Allocate,Realm.Allocate,Realm.AllocateUser,Sys.Audit,Sys.Console,Sys.Modify,Sys.PowerMgmt,Sys.Syslog,User.Modify,VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback","roleid":"Administrator","special":1},{"special":1,"roleid":"PVEDatastoreAdmin","privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit"},{"privs":"Group.Allocate,Realm.AllocateUser,User.Modify","roleid":"PVEUserAdmin","special":1},{"roleid":"PVESysAdmin","privs":"Permissions.Modify,Sys.Audit,Sys.Console,Sys.Syslog","special":1},{"special":1,"roleid":"PVEDatastoreUser","privs":"Datastore.AllocateSpace,Datastore.Audit"},{"special":1,"roleid":"PVEAdmin","privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit,Group.Allocate,Permissions.Modify,Pool.Allocate,Realm.AllocateUser,Sys.Audit,Sys.Console,Sys.Syslog,User.Modify,VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback"}]}'
|
203
242
|
http_version:
|
204
|
-
recorded_at:
|
243
|
+
recorded_at: Wed, 03 Apr 2019 13:32:46 GMT
|
205
244
|
- request:
|
206
|
-
method:
|
207
|
-
uri: https://192.168.56.101:8006/api2/json/access/roles
|
245
|
+
method: get
|
246
|
+
uri: https://192.168.56.101:8006/api2/json/access/roles
|
208
247
|
body:
|
209
248
|
encoding: US-ASCII
|
210
249
|
string: ''
|
@@ -213,10 +252,8 @@ http_interactions:
|
|
213
252
|
- fog-core/1.45.0
|
214
253
|
Accept:
|
215
254
|
- application/json
|
216
|
-
Csrfpreventiontoken:
|
217
|
-
- 5B19418C:5Nr6tBpYnbptQmpK6HRTdYPWXp8
|
218
255
|
Cookie:
|
219
|
-
- PVEAuthCookie=PVE:root@pam:
|
256
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FC::h1HVXyhCGMBLWVlKEquCR8zuVMmAoUA59BiQJMRzt/eA4CykjAsOIlLqxIolKeQhiH8XaXVd/2UDEF9fTA8QYZl+heJstOH+yKewosfVHK702Jbq3t9WOeUAI0DteDvvDgDvdkuWvYBjXWmdkSTRmF+ni12oj1tJnhSHMHcodGGHxmjRJRU5NujeyP3Sh1Rs3m6LMsxUXnZud/60bd+QCWsbhx6Vo4OXNVT69pZu6lgsfhSRWGmlLJH4RIH4N3xLebOXxd1gcYFvWIvQnFPqhK8pfnaEBLi/cPzPpHYt42osFbvCPw0CDIbXIe5pU73MgFXOHE/vzSIr7bK8eG/oLg==
|
220
257
|
response:
|
221
258
|
status:
|
222
259
|
code: 200
|
@@ -225,27 +262,27 @@ http_interactions:
|
|
225
262
|
Cache-Control:
|
226
263
|
- max-age=0
|
227
264
|
Connection:
|
228
|
-
- Keep-Alive
|
265
|
+
- Keep-Alive
|
229
266
|
Date:
|
230
|
-
-
|
267
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
231
268
|
Pragma:
|
232
269
|
- no-cache
|
233
270
|
Server:
|
234
271
|
- pve-api-daemon/3.0
|
235
272
|
Content-Length:
|
236
|
-
- '
|
273
|
+
- '2157'
|
237
274
|
Content-Type:
|
238
275
|
- application/json;charset=UTF-8
|
239
276
|
Expires:
|
240
|
-
-
|
277
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
241
278
|
body:
|
242
279
|
encoding: ASCII-8BIT
|
243
|
-
string: '{"data":
|
280
|
+
string: '{"data":[{"privs":"","roleid":"NoAccess","special":1},{"roleid":"PVEPoolAdmin","privs":"Pool.Allocate","special":1},{"roleid":"PVETemplateUser","privs":"VM.Audit,VM.Clone","special":1},{"special":1,"roleid":"PVEVMUser","privs":"VM.Audit,VM.Backup,VM.Config.CDROM,VM.Console,VM.PowerMgmt"},{"roleid":"PVETestAuditor","privs":"Datastore.Audit,Sys.Audit,VM.Audit","special":0},{"roleid":"PVEAuditor","privs":"Datastore.Audit,Sys.Audit,VM.Audit","special":1},{"special":1,"roleid":"PVEVMAdmin","privs":"VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback"},{"privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit,Group.Allocate,Permissions.Modify,Pool.Allocate,Realm.Allocate,Realm.AllocateUser,Sys.Audit,Sys.Console,Sys.Modify,Sys.PowerMgmt,Sys.Syslog,User.Modify,VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback","roleid":"Administrator","special":1},{"special":1,"privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit","roleid":"PVEDatastoreAdmin"},{"special":1,"roleid":"PVEUserAdmin","privs":"Group.Allocate,Realm.AllocateUser,User.Modify"},{"roleid":"PVESysAdmin","privs":"Permissions.Modify,Sys.Audit,Sys.Console,Sys.Syslog","special":1},{"special":1,"privs":"Datastore.AllocateSpace,Datastore.Audit","roleid":"PVEDatastoreUser"},{"special":1,"privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit,Group.Allocate,Permissions.Modify,Pool.Allocate,Realm.AllocateUser,Sys.Audit,Sys.Console,Sys.Syslog,User.Modify,VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback","roleid":"PVEAdmin"}]}'
|
244
281
|
http_version:
|
245
|
-
recorded_at:
|
282
|
+
recorded_at: Wed, 03 Apr 2019 13:32:46 GMT
|
246
283
|
- request:
|
247
|
-
method:
|
248
|
-
uri: https://192.168.56.101:8006/api2/json/access/roles
|
284
|
+
method: delete
|
285
|
+
uri: https://192.168.56.101:8006/api2/json/access/roles/PVETestAuditor
|
249
286
|
body:
|
250
287
|
encoding: US-ASCII
|
251
288
|
string: ''
|
@@ -254,8 +291,10 @@ http_interactions:
|
|
254
291
|
- fog-core/1.45.0
|
255
292
|
Accept:
|
256
293
|
- application/json
|
294
|
+
Csrfpreventiontoken:
|
295
|
+
- 5CA4B5FC:HZr6PykVK7OiMXGYVCBY7RTIQIw
|
257
296
|
Cookie:
|
258
|
-
- PVEAuthCookie=PVE:root@pam:
|
297
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FC::h1HVXyhCGMBLWVlKEquCR8zuVMmAoUA59BiQJMRzt/eA4CykjAsOIlLqxIolKeQhiH8XaXVd/2UDEF9fTA8QYZl+heJstOH+yKewosfVHK702Jbq3t9WOeUAI0DteDvvDgDvdkuWvYBjXWmdkSTRmF+ni12oj1tJnhSHMHcodGGHxmjRJRU5NujeyP3Sh1Rs3m6LMsxUXnZud/60bd+QCWsbhx6Vo4OXNVT69pZu6lgsfhSRWGmlLJH4RIH4N3xLebOXxd1gcYFvWIvQnFPqhK8pfnaEBLi/cPzPpHYt42osFbvCPw0CDIbXIe5pU73MgFXOHE/vzSIr7bK8eG/oLg==
|
259
298
|
response:
|
260
299
|
status:
|
261
300
|
code: 200
|
@@ -264,27 +303,27 @@ http_interactions:
|
|
264
303
|
Cache-Control:
|
265
304
|
- max-age=0
|
266
305
|
Connection:
|
267
|
-
- Keep-Alive
|
306
|
+
- Keep-Alive, Keep-Alive
|
268
307
|
Date:
|
269
|
-
-
|
308
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
270
309
|
Pragma:
|
271
310
|
- no-cache
|
272
311
|
Server:
|
273
312
|
- pve-api-daemon/3.0
|
274
313
|
Content-Length:
|
275
|
-
- '
|
314
|
+
- '13'
|
276
315
|
Content-Type:
|
277
316
|
- application/json;charset=UTF-8
|
278
317
|
Expires:
|
279
|
-
-
|
318
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
280
319
|
body:
|
281
320
|
encoding: ASCII-8BIT
|
282
|
-
string: '{"data":
|
321
|
+
string: '{"data":null}'
|
283
322
|
http_version:
|
284
|
-
recorded_at:
|
323
|
+
recorded_at: Wed, 03 Apr 2019 13:32:46 GMT
|
285
324
|
- request:
|
286
325
|
method: get
|
287
|
-
uri: https://192.168.56.101:8006/api2/json/access/roles
|
326
|
+
uri: https://192.168.56.101:8006/api2/json/access/roles
|
288
327
|
body:
|
289
328
|
encoding: US-ASCII
|
290
329
|
string: ''
|
@@ -294,31 +333,31 @@ http_interactions:
|
|
294
333
|
Accept:
|
295
334
|
- application/json
|
296
335
|
Cookie:
|
297
|
-
- PVEAuthCookie=PVE:root@pam:
|
336
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FC::h1HVXyhCGMBLWVlKEquCR8zuVMmAoUA59BiQJMRzt/eA4CykjAsOIlLqxIolKeQhiH8XaXVd/2UDEF9fTA8QYZl+heJstOH+yKewosfVHK702Jbq3t9WOeUAI0DteDvvDgDvdkuWvYBjXWmdkSTRmF+ni12oj1tJnhSHMHcodGGHxmjRJRU5NujeyP3Sh1Rs3m6LMsxUXnZud/60bd+QCWsbhx6Vo4OXNVT69pZu6lgsfhSRWGmlLJH4RIH4N3xLebOXxd1gcYFvWIvQnFPqhK8pfnaEBLi/cPzPpHYt42osFbvCPw0CDIbXIe5pU73MgFXOHE/vzSIr7bK8eG/oLg==
|
298
337
|
response:
|
299
338
|
status:
|
300
|
-
code:
|
301
|
-
message:
|
339
|
+
code: 200
|
340
|
+
message: OK
|
302
341
|
headers:
|
303
342
|
Cache-Control:
|
304
343
|
- max-age=0
|
305
344
|
Connection:
|
306
|
-
-
|
345
|
+
- Keep-Alive
|
307
346
|
Date:
|
308
|
-
-
|
347
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
309
348
|
Pragma:
|
310
349
|
- no-cache
|
311
350
|
Server:
|
312
351
|
- pve-api-daemon/3.0
|
313
352
|
Content-Length:
|
314
|
-
- '
|
353
|
+
- '2072'
|
315
354
|
Content-Type:
|
316
355
|
- application/json;charset=UTF-8
|
317
356
|
Expires:
|
318
|
-
-
|
357
|
+
- Wed, 03 Apr 2019 13:32:44 GMT
|
319
358
|
body:
|
320
359
|
encoding: ASCII-8BIT
|
321
|
-
string: '{"data":
|
360
|
+
string: '{"data":[{"roleid":"PVEDatastoreUser","privs":"Datastore.AllocateSpace,Datastore.Audit","special":1},{"roleid":"PVESysAdmin","privs":"Permissions.Modify,Sys.Audit,Sys.Console,Sys.Syslog","special":1},{"roleid":"PVEAdmin","privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit,Group.Allocate,Permissions.Modify,Pool.Allocate,Realm.AllocateUser,Sys.Audit,Sys.Console,Sys.Syslog,User.Modify,VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback","special":1},{"special":1,"roleid":"PVETemplateUser","privs":"VM.Audit,VM.Clone"},{"privs":"VM.Audit,VM.Backup,VM.Config.CDROM,VM.Console,VM.PowerMgmt","roleid":"PVEVMUser","special":1},{"special":1,"privs":"Pool.Allocate","roleid":"PVEPoolAdmin"},{"special":1,"privs":"","roleid":"NoAccess"},{"special":1,"privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit,Group.Allocate,Permissions.Modify,Pool.Allocate,Realm.Allocate,Realm.AllocateUser,Sys.Audit,Sys.Console,Sys.Modify,Sys.PowerMgmt,Sys.Syslog,User.Modify,VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback","roleid":"Administrator"},{"roleid":"PVEVMAdmin","privs":"VM.Allocate,VM.Audit,VM.Backup,VM.Clone,VM.Config.CDROM,VM.Config.CPU,VM.Config.Disk,VM.Config.HWType,VM.Config.Memory,VM.Config.Network,VM.Config.Options,VM.Console,VM.Migrate,VM.Monitor,VM.PowerMgmt,VM.Snapshot,VM.Snapshot.Rollback","special":1},{"privs":"Datastore.Allocate,Datastore.AllocateSpace,Datastore.AllocateTemplate,Datastore.Audit","roleid":"PVEDatastoreAdmin","special":1},{"privs":"Group.Allocate,Realm.AllocateUser,User.Modify","roleid":"PVEUserAdmin","special":1},{"special":1,"roleid":"PVEAuditor","privs":"Datastore.Audit,Sys.Audit,VM.Audit"}]}'
|
322
361
|
http_version:
|
323
|
-
recorded_at:
|
362
|
+
recorded_at: Wed, 03 Apr 2019 13:32:46 GMT
|
324
363
|
recorded_with: VCR 3.0.3
|
@@ -12,9 +12,9 @@ http_interactions:
|
|
12
12
|
Accept:
|
13
13
|
- application/json
|
14
14
|
Csrfpreventiontoken:
|
15
|
-
-
|
15
|
+
- 5CA4B5FD:90Bc/QID+0rzMPO4u003G3UIcKk
|
16
16
|
Cookie:
|
17
|
-
- PVEAuthCookie=PVE:root@pam:
|
17
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
18
18
|
response:
|
19
19
|
status:
|
20
20
|
code: 200
|
@@ -25,7 +25,7 @@ http_interactions:
|
|
25
25
|
Connection:
|
26
26
|
- close, Keep-Alive
|
27
27
|
Date:
|
28
|
-
-
|
28
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
29
29
|
Pragma:
|
30
30
|
- no-cache
|
31
31
|
Server:
|
@@ -35,12 +35,12 @@ http_interactions:
|
|
35
35
|
Content-Type:
|
36
36
|
- application/json;charset=UTF-8
|
37
37
|
Expires:
|
38
|
-
-
|
38
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
39
39
|
body:
|
40
40
|
encoding: ASCII-8BIT
|
41
41
|
string: '{"data":null}'
|
42
42
|
http_version:
|
43
|
-
recorded_at:
|
43
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
44
44
|
- request:
|
45
45
|
method: get
|
46
46
|
uri: https://192.168.56.101:8006/api2/json/access/users
|
@@ -53,7 +53,7 @@ http_interactions:
|
|
53
53
|
Accept:
|
54
54
|
- application/json
|
55
55
|
Cookie:
|
56
|
-
- PVEAuthCookie=PVE:root@pam:
|
56
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
57
57
|
response:
|
58
58
|
status:
|
59
59
|
code: 200
|
@@ -64,7 +64,7 @@ http_interactions:
|
|
64
64
|
Connection:
|
65
65
|
- Keep-Alive
|
66
66
|
Date:
|
67
|
-
-
|
67
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
68
68
|
Pragma:
|
69
69
|
- no-cache
|
70
70
|
Server:
|
@@ -74,12 +74,51 @@ http_interactions:
|
|
74
74
|
Content-Type:
|
75
75
|
- application/json;charset=UTF-8
|
76
76
|
Expires:
|
77
|
-
-
|
77
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
78
78
|
body:
|
79
79
|
encoding: ASCII-8BIT
|
80
|
-
string: '{"data":[{"
|
80
|
+
string: '{"data":[{"expire":0,"firstname":"Bob","enable":1,"lastname":"Sinclar","userid":"bobsinclar@pve","email":"bobsinclar@proxmox.com"},{"email":"proxmox@proxmox.com","expire":0,"userid":"root@pam","enable":1}]}'
|
81
81
|
http_version:
|
82
|
-
recorded_at:
|
82
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
83
|
+
- request:
|
84
|
+
method: get
|
85
|
+
uri: https://192.168.56.101:8006/api2/json/access/users
|
86
|
+
body:
|
87
|
+
encoding: US-ASCII
|
88
|
+
string: ''
|
89
|
+
headers:
|
90
|
+
User-Agent:
|
91
|
+
- fog-core/1.45.0
|
92
|
+
Accept:
|
93
|
+
- application/json
|
94
|
+
Cookie:
|
95
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
96
|
+
response:
|
97
|
+
status:
|
98
|
+
code: 200
|
99
|
+
message: OK
|
100
|
+
headers:
|
101
|
+
Cache-Control:
|
102
|
+
- max-age=0
|
103
|
+
Connection:
|
104
|
+
- Keep-Alive
|
105
|
+
Date:
|
106
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
107
|
+
Pragma:
|
108
|
+
- no-cache
|
109
|
+
Server:
|
110
|
+
- pve-api-daemon/3.0
|
111
|
+
Content-Length:
|
112
|
+
- '206'
|
113
|
+
Content-Type:
|
114
|
+
- application/json;charset=UTF-8
|
115
|
+
Expires:
|
116
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
117
|
+
body:
|
118
|
+
encoding: ASCII-8BIT
|
119
|
+
string: '{"data":[{"email":"bobsinclar@proxmox.com","userid":"bobsinclar@pve","lastname":"Sinclar","enable":1,"firstname":"Bob","expire":0},{"email":"proxmox@proxmox.com","expire":0,"enable":1,"userid":"root@pam"}]}'
|
120
|
+
http_version:
|
121
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
83
122
|
- request:
|
84
123
|
method: post
|
85
124
|
uri: https://192.168.56.101:8006/api2/json/access/users
|
@@ -92,9 +131,9 @@ http_interactions:
|
|
92
131
|
Accept:
|
93
132
|
- application/json
|
94
133
|
Csrfpreventiontoken:
|
95
|
-
-
|
134
|
+
- 5CA4B5FD:90Bc/QID+0rzMPO4u003G3UIcKk
|
96
135
|
Cookie:
|
97
|
-
- PVEAuthCookie=PVE:root@pam:
|
136
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
98
137
|
response:
|
99
138
|
status:
|
100
139
|
code: 500
|
@@ -106,7 +145,7 @@ http_interactions:
|
|
106
145
|
Connection:
|
107
146
|
- close
|
108
147
|
Date:
|
109
|
-
-
|
148
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
110
149
|
Pragma:
|
111
150
|
- no-cache
|
112
151
|
Server:
|
@@ -116,12 +155,12 @@ http_interactions:
|
|
116
155
|
Content-Type:
|
117
156
|
- application/json;charset=UTF-8
|
118
157
|
Expires:
|
119
|
-
-
|
158
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
120
159
|
body:
|
121
160
|
encoding: ASCII-8BIT
|
122
161
|
string: '{"data":null}'
|
123
162
|
http_version:
|
124
|
-
recorded_at:
|
163
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
125
164
|
- request:
|
126
165
|
method: get
|
127
166
|
uri: https://192.168.56.101:8006/api2/json/access/users
|
@@ -134,7 +173,7 @@ http_interactions:
|
|
134
173
|
Accept:
|
135
174
|
- application/json
|
136
175
|
Cookie:
|
137
|
-
- PVEAuthCookie=PVE:root@pam:
|
176
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
138
177
|
response:
|
139
178
|
status:
|
140
179
|
code: 200
|
@@ -145,7 +184,7 @@ http_interactions:
|
|
145
184
|
Connection:
|
146
185
|
- Keep-Alive
|
147
186
|
Date:
|
148
|
-
-
|
187
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
149
188
|
Pragma:
|
150
189
|
- no-cache
|
151
190
|
Server:
|
@@ -155,12 +194,12 @@ http_interactions:
|
|
155
194
|
Content-Type:
|
156
195
|
- application/json;charset=UTF-8
|
157
196
|
Expires:
|
158
|
-
-
|
197
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
159
198
|
body:
|
160
199
|
encoding: ASCII-8BIT
|
161
|
-
string: '{"data":[{"firstname":"Bob","
|
200
|
+
string: '{"data":[{"firstname":"Bob","expire":0,"lastname":"Sinclar","userid":"bobsinclar@pve","enable":1,"email":"bobsinclar@proxmox.com"},{"email":"proxmox@proxmox.com","userid":"root@pam","enable":1,"expire":0}]}'
|
162
201
|
http_version:
|
163
|
-
recorded_at:
|
202
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
164
203
|
- request:
|
165
204
|
method: post
|
166
205
|
uri: https://192.168.56.101:8006/api2/json/access/groups
|
@@ -173,9 +212,9 @@ http_interactions:
|
|
173
212
|
Accept:
|
174
213
|
- application/json
|
175
214
|
Csrfpreventiontoken:
|
176
|
-
-
|
215
|
+
- 5CA4B5FD:90Bc/QID+0rzMPO4u003G3UIcKk
|
177
216
|
Cookie:
|
178
|
-
- PVEAuthCookie=PVE:root@pam:
|
217
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
179
218
|
response:
|
180
219
|
status:
|
181
220
|
code: 200
|
@@ -186,7 +225,7 @@ http_interactions:
|
|
186
225
|
Connection:
|
187
226
|
- close, Keep-Alive
|
188
227
|
Date:
|
189
|
-
-
|
228
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
190
229
|
Pragma:
|
191
230
|
- no-cache
|
192
231
|
Server:
|
@@ -196,12 +235,51 @@ http_interactions:
|
|
196
235
|
Content-Type:
|
197
236
|
- application/json;charset=UTF-8
|
198
237
|
Expires:
|
199
|
-
-
|
238
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
200
239
|
body:
|
201
240
|
encoding: ASCII-8BIT
|
202
241
|
string: '{"data":null}'
|
203
242
|
http_version:
|
204
|
-
recorded_at:
|
243
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
244
|
+
- request:
|
245
|
+
method: get
|
246
|
+
uri: https://192.168.56.101:8006/api2/json/access/groups
|
247
|
+
body:
|
248
|
+
encoding: US-ASCII
|
249
|
+
string: ''
|
250
|
+
headers:
|
251
|
+
User-Agent:
|
252
|
+
- fog-core/1.45.0
|
253
|
+
Accept:
|
254
|
+
- application/json
|
255
|
+
Cookie:
|
256
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
257
|
+
response:
|
258
|
+
status:
|
259
|
+
code: 200
|
260
|
+
message: OK
|
261
|
+
headers:
|
262
|
+
Cache-Control:
|
263
|
+
- max-age=0
|
264
|
+
Connection:
|
265
|
+
- Keep-Alive
|
266
|
+
Date:
|
267
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
268
|
+
Pragma:
|
269
|
+
- no-cache
|
270
|
+
Server:
|
271
|
+
- pve-api-daemon/3.0
|
272
|
+
Content-Length:
|
273
|
+
- '31'
|
274
|
+
Content-Type:
|
275
|
+
- application/json;charset=UTF-8
|
276
|
+
Expires:
|
277
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
278
|
+
body:
|
279
|
+
encoding: ASCII-8BIT
|
280
|
+
string: '{"data":[{"groupid":"group1"}]}'
|
281
|
+
http_version:
|
282
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
205
283
|
- request:
|
206
284
|
method: post
|
207
285
|
uri: https://192.168.56.101:8006/api2/json/access/groups
|
@@ -214,9 +292,9 @@ http_interactions:
|
|
214
292
|
Accept:
|
215
293
|
- application/json
|
216
294
|
Csrfpreventiontoken:
|
217
|
-
-
|
295
|
+
- 5CA4B5FD:90Bc/QID+0rzMPO4u003G3UIcKk
|
218
296
|
Cookie:
|
219
|
-
- PVEAuthCookie=PVE:root@pam:
|
297
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
220
298
|
response:
|
221
299
|
status:
|
222
300
|
code: 200
|
@@ -227,7 +305,7 @@ http_interactions:
|
|
227
305
|
Connection:
|
228
306
|
- close, Keep-Alive
|
229
307
|
Date:
|
230
|
-
-
|
308
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
231
309
|
Pragma:
|
232
310
|
- no-cache
|
233
311
|
Server:
|
@@ -237,27 +315,25 @@ http_interactions:
|
|
237
315
|
Content-Type:
|
238
316
|
- application/json;charset=UTF-8
|
239
317
|
Expires:
|
240
|
-
-
|
318
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
241
319
|
body:
|
242
320
|
encoding: ASCII-8BIT
|
243
321
|
string: '{"data":null}'
|
244
322
|
http_version:
|
245
|
-
recorded_at:
|
323
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
246
324
|
- request:
|
247
|
-
method:
|
248
|
-
uri: https://192.168.56.101:8006/api2/json/access/
|
325
|
+
method: get
|
326
|
+
uri: https://192.168.56.101:8006/api2/json/access/groups
|
249
327
|
body:
|
250
328
|
encoding: US-ASCII
|
251
|
-
string:
|
329
|
+
string: ''
|
252
330
|
headers:
|
253
331
|
User-Agent:
|
254
332
|
- fog-core/1.45.0
|
255
333
|
Accept:
|
256
334
|
- application/json
|
257
|
-
Csrfpreventiontoken:
|
258
|
-
- 5B19418B:QxrPWRMjEoTkiZxozuSgk9POqlE
|
259
335
|
Cookie:
|
260
|
-
- PVEAuthCookie=PVE:root@pam:
|
336
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
261
337
|
response:
|
262
338
|
status:
|
263
339
|
code: 200
|
@@ -266,39 +342,39 @@ http_interactions:
|
|
266
342
|
Cache-Control:
|
267
343
|
- max-age=0
|
268
344
|
Connection:
|
269
|
-
- Keep-Alive
|
345
|
+
- Keep-Alive
|
270
346
|
Date:
|
271
|
-
-
|
347
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
272
348
|
Pragma:
|
273
349
|
- no-cache
|
274
350
|
Server:
|
275
351
|
- pve-api-daemon/3.0
|
276
352
|
Content-Length:
|
277
|
-
- '
|
353
|
+
- '52'
|
278
354
|
Content-Type:
|
279
355
|
- application/json;charset=UTF-8
|
280
356
|
Expires:
|
281
|
-
-
|
357
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
282
358
|
body:
|
283
359
|
encoding: ASCII-8BIT
|
284
|
-
string: '{"data":
|
360
|
+
string: '{"data":[{"groupid":"group2"},{"groupid":"group1"}]}'
|
285
361
|
http_version:
|
286
|
-
recorded_at:
|
362
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
287
363
|
- request:
|
288
364
|
method: put
|
289
|
-
uri: https://192.168.56.101:8006/api2/json/access/
|
365
|
+
uri: https://192.168.56.101:8006/api2/json/access/users/bobsinclar@pve
|
290
366
|
body:
|
291
|
-
encoding:
|
292
|
-
string:
|
367
|
+
encoding: US-ASCII
|
368
|
+
string: email=bobsinclar%40proxmox.com&lastname=Sinclar&enable=0&firstname=Bob&expire=0&comment=novelist&groups=group1&groups=group2
|
293
369
|
headers:
|
294
370
|
User-Agent:
|
295
371
|
- fog-core/1.45.0
|
296
372
|
Accept:
|
297
373
|
- application/json
|
298
374
|
Csrfpreventiontoken:
|
299
|
-
-
|
375
|
+
- 5CA4B5FD:90Bc/QID+0rzMPO4u003G3UIcKk
|
300
376
|
Cookie:
|
301
|
-
- PVEAuthCookie=PVE:root@pam:
|
377
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
302
378
|
response:
|
303
379
|
status:
|
304
380
|
code: 200
|
@@ -309,7 +385,7 @@ http_interactions:
|
|
309
385
|
Connection:
|
310
386
|
- Keep-Alive, Keep-Alive
|
311
387
|
Date:
|
312
|
-
-
|
388
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
313
389
|
Pragma:
|
314
390
|
- no-cache
|
315
391
|
Server:
|
@@ -319,15 +395,15 @@ http_interactions:
|
|
319
395
|
Content-Type:
|
320
396
|
- application/json;charset=UTF-8
|
321
397
|
Expires:
|
322
|
-
-
|
398
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
323
399
|
body:
|
324
400
|
encoding: ASCII-8BIT
|
325
401
|
string: '{"data":null}'
|
326
402
|
http_version:
|
327
|
-
recorded_at:
|
403
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
328
404
|
- request:
|
329
405
|
method: get
|
330
|
-
uri: https://192.168.56.101:8006/api2/json/access/users
|
406
|
+
uri: https://192.168.56.101:8006/api2/json/access/users
|
331
407
|
body:
|
332
408
|
encoding: US-ASCII
|
333
409
|
string: ''
|
@@ -337,7 +413,7 @@ http_interactions:
|
|
337
413
|
Accept:
|
338
414
|
- application/json
|
339
415
|
Cookie:
|
340
|
-
- PVEAuthCookie=PVE:root@pam:
|
416
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
341
417
|
response:
|
342
418
|
status:
|
343
419
|
code: 200
|
@@ -348,37 +424,37 @@ http_interactions:
|
|
348
424
|
Connection:
|
349
425
|
- Keep-Alive
|
350
426
|
Date:
|
351
|
-
-
|
427
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
352
428
|
Pragma:
|
353
429
|
- no-cache
|
354
430
|
Server:
|
355
431
|
- pve-api-daemon/3.0
|
356
432
|
Content-Length:
|
357
|
-
- '
|
433
|
+
- '227'
|
358
434
|
Content-Type:
|
359
435
|
- application/json;charset=UTF-8
|
360
436
|
Expires:
|
361
|
-
-
|
437
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
362
438
|
body:
|
363
439
|
encoding: ASCII-8BIT
|
364
|
-
string: '{"data":[{"
|
440
|
+
string: '{"data":[{"email":"proxmox@proxmox.com","userid":"root@pam","enable":1,"expire":0},{"firstname":"Bob","expire":0,"lastname":"Sinclar","userid":"bobsinclar@pve","enable":0,"email":"bobsinclar@proxmox.com","comment":"novelist"}]}'
|
365
441
|
http_version:
|
366
|
-
recorded_at:
|
442
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
367
443
|
- request:
|
368
|
-
method:
|
369
|
-
uri: https://192.168.56.101:8006/api2/json/access/
|
444
|
+
method: put
|
445
|
+
uri: https://192.168.56.101:8006/api2/json/access/password
|
370
446
|
body:
|
371
|
-
encoding:
|
372
|
-
string:
|
447
|
+
encoding: UTF-8
|
448
|
+
string: userid=bobsinclar@pve&password=bobsinclar2
|
373
449
|
headers:
|
374
450
|
User-Agent:
|
375
451
|
- fog-core/1.45.0
|
376
452
|
Accept:
|
377
453
|
- application/json
|
378
454
|
Csrfpreventiontoken:
|
379
|
-
-
|
455
|
+
- 5CA4B5FD:90Bc/QID+0rzMPO4u003G3UIcKk
|
380
456
|
Cookie:
|
381
|
-
- PVEAuthCookie=PVE:root@pam:
|
457
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
382
458
|
response:
|
383
459
|
status:
|
384
460
|
code: 200
|
@@ -389,7 +465,7 @@ http_interactions:
|
|
389
465
|
Connection:
|
390
466
|
- Keep-Alive, Keep-Alive
|
391
467
|
Date:
|
392
|
-
-
|
468
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
393
469
|
Pragma:
|
394
470
|
- no-cache
|
395
471
|
Server:
|
@@ -399,15 +475,15 @@ http_interactions:
|
|
399
475
|
Content-Type:
|
400
476
|
- application/json;charset=UTF-8
|
401
477
|
Expires:
|
402
|
-
-
|
478
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
403
479
|
body:
|
404
480
|
encoding: ASCII-8BIT
|
405
481
|
string: '{"data":null}'
|
406
482
|
http_version:
|
407
|
-
recorded_at:
|
483
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
408
484
|
- request:
|
409
485
|
method: get
|
410
|
-
uri: https://192.168.56.101:8006/api2/json/access/
|
486
|
+
uri: https://192.168.56.101:8006/api2/json/access/users?enabled=0
|
411
487
|
body:
|
412
488
|
encoding: US-ASCII
|
413
489
|
string: ''
|
@@ -417,7 +493,7 @@ http_interactions:
|
|
417
493
|
Accept:
|
418
494
|
- application/json
|
419
495
|
Cookie:
|
420
|
-
- PVEAuthCookie=PVE:root@pam:
|
496
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
421
497
|
response:
|
422
498
|
status:
|
423
499
|
code: 200
|
@@ -428,25 +504,25 @@ http_interactions:
|
|
428
504
|
Connection:
|
429
505
|
- Keep-Alive
|
430
506
|
Date:
|
431
|
-
-
|
507
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
432
508
|
Pragma:
|
433
509
|
- no-cache
|
434
510
|
Server:
|
435
511
|
- pve-api-daemon/3.0
|
436
512
|
Content-Length:
|
437
|
-
- '
|
513
|
+
- '153'
|
438
514
|
Content-Type:
|
439
515
|
- application/json;charset=UTF-8
|
440
516
|
Expires:
|
441
|
-
-
|
517
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
442
518
|
body:
|
443
519
|
encoding: ASCII-8BIT
|
444
|
-
string: '{"data":[{"
|
520
|
+
string: '{"data":[{"comment":"novelist","email":"bobsinclar@proxmox.com","userid":"bobsinclar@pve","lastname":"Sinclar","enable":0,"firstname":"Bob","expire":0}]}'
|
445
521
|
http_version:
|
446
|
-
recorded_at:
|
522
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
447
523
|
- request:
|
448
524
|
method: delete
|
449
|
-
uri: https://192.168.56.101:8006/api2/json/access/
|
525
|
+
uri: https://192.168.56.101:8006/api2/json/access/users/bobsinclar@pve
|
450
526
|
body:
|
451
527
|
encoding: US-ASCII
|
452
528
|
string: ''
|
@@ -456,9 +532,9 @@ http_interactions:
|
|
456
532
|
Accept:
|
457
533
|
- application/json
|
458
534
|
Csrfpreventiontoken:
|
459
|
-
-
|
535
|
+
- 5CA4B5FD:90Bc/QID+0rzMPO4u003G3UIcKk
|
460
536
|
Cookie:
|
461
|
-
- PVEAuthCookie=PVE:root@pam:
|
537
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
462
538
|
response:
|
463
539
|
status:
|
464
540
|
code: 200
|
@@ -469,7 +545,7 @@ http_interactions:
|
|
469
545
|
Connection:
|
470
546
|
- Keep-Alive, Keep-Alive
|
471
547
|
Date:
|
472
|
-
-
|
548
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
473
549
|
Pragma:
|
474
550
|
- no-cache
|
475
551
|
Server:
|
@@ -479,12 +555,12 @@ http_interactions:
|
|
479
555
|
Content-Type:
|
480
556
|
- application/json;charset=UTF-8
|
481
557
|
Expires:
|
482
|
-
-
|
558
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
483
559
|
body:
|
484
560
|
encoding: ASCII-8BIT
|
485
561
|
string: '{"data":null}'
|
486
562
|
http_version:
|
487
|
-
recorded_at:
|
563
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
488
564
|
- request:
|
489
565
|
method: get
|
490
566
|
uri: https://192.168.56.101:8006/api2/json/access/groups
|
@@ -497,7 +573,7 @@ http_interactions:
|
|
497
573
|
Accept:
|
498
574
|
- application/json
|
499
575
|
Cookie:
|
500
|
-
- PVEAuthCookie=PVE:root@pam:
|
576
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
501
577
|
response:
|
502
578
|
status:
|
503
579
|
code: 200
|
@@ -508,25 +584,25 @@ http_interactions:
|
|
508
584
|
Connection:
|
509
585
|
- Keep-Alive
|
510
586
|
Date:
|
511
|
-
-
|
587
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
512
588
|
Pragma:
|
513
589
|
- no-cache
|
514
590
|
Server:
|
515
591
|
- pve-api-daemon/3.0
|
516
592
|
Content-Length:
|
517
|
-
- '
|
593
|
+
- '52'
|
518
594
|
Content-Type:
|
519
595
|
- application/json;charset=UTF-8
|
520
596
|
Expires:
|
521
|
-
-
|
597
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
522
598
|
body:
|
523
599
|
encoding: ASCII-8BIT
|
524
|
-
string: '{"data":[{"groupid":"group2"}]}'
|
600
|
+
string: '{"data":[{"groupid":"group1"},{"groupid":"group2"}]}'
|
525
601
|
http_version:
|
526
|
-
recorded_at:
|
602
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
527
603
|
- request:
|
528
604
|
method: delete
|
529
|
-
uri: https://192.168.56.101:8006/api2/json/access/groups/
|
605
|
+
uri: https://192.168.56.101:8006/api2/json/access/groups/group1
|
530
606
|
body:
|
531
607
|
encoding: US-ASCII
|
532
608
|
string: ''
|
@@ -536,9 +612,9 @@ http_interactions:
|
|
536
612
|
Accept:
|
537
613
|
- application/json
|
538
614
|
Csrfpreventiontoken:
|
539
|
-
-
|
615
|
+
- 5CA4B5FD:90Bc/QID+0rzMPO4u003G3UIcKk
|
540
616
|
Cookie:
|
541
|
-
- PVEAuthCookie=PVE:root@pam:
|
617
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
542
618
|
response:
|
543
619
|
status:
|
544
620
|
code: 200
|
@@ -549,7 +625,7 @@ http_interactions:
|
|
549
625
|
Connection:
|
550
626
|
- Keep-Alive, Keep-Alive
|
551
627
|
Date:
|
552
|
-
-
|
628
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
553
629
|
Pragma:
|
554
630
|
- no-cache
|
555
631
|
Server:
|
@@ -559,15 +635,15 @@ http_interactions:
|
|
559
635
|
Content-Type:
|
560
636
|
- application/json;charset=UTF-8
|
561
637
|
Expires:
|
562
|
-
-
|
638
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
563
639
|
body:
|
564
640
|
encoding: ASCII-8BIT
|
565
641
|
string: '{"data":null}'
|
566
642
|
http_version:
|
567
|
-
recorded_at:
|
643
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
568
644
|
- request:
|
569
645
|
method: get
|
570
|
-
uri: https://192.168.56.101:8006/api2/json/access/
|
646
|
+
uri: https://192.168.56.101:8006/api2/json/access/groups
|
571
647
|
body:
|
572
648
|
encoding: US-ASCII
|
573
649
|
string: ''
|
@@ -577,7 +653,7 @@ http_interactions:
|
|
577
653
|
Accept:
|
578
654
|
- application/json
|
579
655
|
Cookie:
|
580
|
-
- PVEAuthCookie=PVE:root@pam:
|
656
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
581
657
|
response:
|
582
658
|
status:
|
583
659
|
code: 200
|
@@ -588,25 +664,25 @@ http_interactions:
|
|
588
664
|
Connection:
|
589
665
|
- Keep-Alive
|
590
666
|
Date:
|
591
|
-
-
|
667
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
592
668
|
Pragma:
|
593
669
|
- no-cache
|
594
670
|
Server:
|
595
671
|
- pve-api-daemon/3.0
|
596
672
|
Content-Length:
|
597
|
-
- '
|
673
|
+
- '31'
|
598
674
|
Content-Type:
|
599
675
|
- application/json;charset=UTF-8
|
600
676
|
Expires:
|
601
|
-
-
|
677
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
602
678
|
body:
|
603
679
|
encoding: ASCII-8BIT
|
604
|
-
string: '{"data":[{"
|
680
|
+
string: '{"data":[{"groupid":"group2"}]}'
|
605
681
|
http_version:
|
606
|
-
recorded_at:
|
682
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
607
683
|
- request:
|
608
|
-
method:
|
609
|
-
uri: https://192.168.56.101:8006/api2/json/access/
|
684
|
+
method: delete
|
685
|
+
uri: https://192.168.56.101:8006/api2/json/access/groups/group2
|
610
686
|
body:
|
611
687
|
encoding: US-ASCII
|
612
688
|
string: ''
|
@@ -615,19 +691,21 @@ http_interactions:
|
|
615
691
|
- fog-core/1.45.0
|
616
692
|
Accept:
|
617
693
|
- application/json
|
694
|
+
Csrfpreventiontoken:
|
695
|
+
- 5CA4B5FD:90Bc/QID+0rzMPO4u003G3UIcKk
|
618
696
|
Cookie:
|
619
|
-
- PVEAuthCookie=PVE:root@pam:
|
697
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
620
698
|
response:
|
621
699
|
status:
|
622
|
-
code:
|
623
|
-
message:
|
700
|
+
code: 200
|
701
|
+
message: OK
|
624
702
|
headers:
|
625
703
|
Cache-Control:
|
626
704
|
- max-age=0
|
627
705
|
Connection:
|
628
|
-
-
|
706
|
+
- Keep-Alive, Keep-Alive
|
629
707
|
Date:
|
630
|
-
-
|
708
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
631
709
|
Pragma:
|
632
710
|
- no-cache
|
633
711
|
Server:
|
@@ -637,10 +715,49 @@ http_interactions:
|
|
637
715
|
Content-Type:
|
638
716
|
- application/json;charset=UTF-8
|
639
717
|
Expires:
|
640
|
-
-
|
718
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
641
719
|
body:
|
642
720
|
encoding: ASCII-8BIT
|
643
721
|
string: '{"data":null}'
|
644
722
|
http_version:
|
645
|
-
recorded_at:
|
723
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
724
|
+
- request:
|
725
|
+
method: get
|
726
|
+
uri: https://192.168.56.101:8006/api2/json/access/users
|
727
|
+
body:
|
728
|
+
encoding: US-ASCII
|
729
|
+
string: ''
|
730
|
+
headers:
|
731
|
+
User-Agent:
|
732
|
+
- fog-core/1.45.0
|
733
|
+
Accept:
|
734
|
+
- application/json
|
735
|
+
Cookie:
|
736
|
+
- PVEAuthCookie=PVE:root@pam:5CA4B5FD::eXiuesLu81RqogtobDSQBsFQ1HbPinLLLVVS+8qC9ear4K51eOolY0XOMosnm22ML99dSqN4TTNDAPhox+J78cl9IdMuuhRACtFJyaBqugBwrao0Iw6JoGSUQiIORvWlQF75odFmmlBcqB6TZ80U63eRLjvNk8aF1tszWb2hlbFJRzwiSjjs+JoZ6BzYNSk1PnHuzrkOBcG26VxnI7WotRzIV7NO3qMZedBjwYKLw7w8PnhstR0zfbaMllSiJL8QVLCnbo+t2RpivR3Uu8ftGcrVLXgh2+snA/fCWYWjzfIW16qU/UI8IBfdBiblmK8SxSZZ23tR5bKfwU5uCf78Sw==
|
737
|
+
response:
|
738
|
+
status:
|
739
|
+
code: 200
|
740
|
+
message: OK
|
741
|
+
headers:
|
742
|
+
Cache-Control:
|
743
|
+
- max-age=0
|
744
|
+
Connection:
|
745
|
+
- Keep-Alive
|
746
|
+
Date:
|
747
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
748
|
+
Pragma:
|
749
|
+
- no-cache
|
750
|
+
Server:
|
751
|
+
- pve-api-daemon/3.0
|
752
|
+
Content-Length:
|
753
|
+
- '84'
|
754
|
+
Content-Type:
|
755
|
+
- application/json;charset=UTF-8
|
756
|
+
Expires:
|
757
|
+
- Wed, 03 Apr 2019 13:32:45 GMT
|
758
|
+
body:
|
759
|
+
encoding: ASCII-8BIT
|
760
|
+
string: '{"data":[{"userid":"root@pam","enable":1,"expire":0,"email":"proxmox@proxmox.com"}]}'
|
761
|
+
http_version:
|
762
|
+
recorded_at: Wed, 03 Apr 2019 13:32:47 GMT
|
646
763
|
recorded_with: VCR 3.0.3
|