Miloslav Trmač
9dc3b99345
Secret manipulation API docs refresh & wire up python generator
Sample session:
>>> import libvirt
>>> c = libvirt.open('qemu:///session')
>>> c.listSecrets()
['12247729-47d2-a783-88ce-b329d4781cd3', 'reee', 'abc']
>>> s = c.secretDefineXML("<secret ephemeral='no' private='no'>\n<description>Something for use</description>\n<volume>/foo/bar</volume>\n</secret>\n")
>>> s.UUIDString()
'340c2dfb-811b-eda8-da9e-25ccd7bfd650'
>>> s.XMLDesc()
"<secret ephemeral='no' private='no'>\n <uuid>340c2dfb-811b-eda8-da9e-25ccd7bfd650</uuid>\n <description>Something for use</description>\n <volume>/foo/bar</volume>\n</secret>\n"
>>> s.setValue('abc\0xx\xffx')
0
>>> s.value()
'abc\x00xx\xffx'
>>> s.undefine()
0
* python/generator.py: Add rules for virSecret APIs
* python/libvir.c, python/libvirt-python-api.xml: Manual impl of
virSecretSetValue, virSecretGetValue$ and virConnectListSecrets APIs
* python/libvirt_wrap.h, python/types.c: Wrapper for virSecret objects
* docs/libvirt-api.xml, docs/libvirt-refs.xml,
docs/html/libvirt-virterror.html, docs/html/libvirt-libvirt.html,
docs/devhelp/libvirt-virterror.html, docs/devhelp/libvirt-libvirt.html:
Re-generate with 'make api'
2009-09-01 18:27:06 +01:00
..
2009-07-16 15:06:42 +02:00
2009-09-01 18:27:06 +01:00
2009-07-16 15:06:42 +02:00
2009-09-01 18:27:06 +01:00
2009-09-01 17:38:52 +01:00
2008-02-20 15:52:40 +00:00
2008-10-17 10:03:15 +00:00
2006-01-23 22:55:41 +00:00
2006-01-23 22:55:41 +00:00
2009-06-29 11:09:17 +00:00
2009-06-09 11:42:41 +00:00
2009-06-09 11:42:41 +00:00
2009-04-15 20:42:50 +00:00
2009-08-02 12:05:33 +02:00
2009-08-14 12:01:27 +01:00
2009-08-14 12:01:27 +01:00
2009-06-09 11:42:41 +00:00
2008-04-23 17:08:31 +00:00
2005-12-21 16:59:34 +00:00
2005-12-21 16:59:34 +00:00
2008-07-22 09:52:31 +00:00
2008-04-23 17:08:31 +00:00
2009-06-09 11:42:41 +00:00
2008-04-23 17:08:31 +00:00
2009-06-09 11:42:41 +00:00
2008-04-23 17:08:31 +00:00
2009-06-09 11:42:41 +00:00
2008-04-23 17:08:31 +00:00
2009-06-09 11:42:41 +00:00
2008-05-08 11:52:21 +00:00
2009-06-09 11:42:41 +00:00
2008-09-18 09:00:10 +00:00
2009-07-15 11:46:52 +02:00
2009-07-15 11:46:52 +02:00
2008-02-05 19:27:37 +00:00
2008-04-25 16:23:51 +00:00
2008-07-22 09:52:31 +00:00
2008-04-23 17:08:31 +00:00
2009-06-09 11:42:41 +00:00
2008-05-15 06:12:32 +00:00
2009-06-09 11:42:41 +00:00
2008-04-23 17:08:31 +00:00
2009-07-24 16:17:06 +02:00
2009-07-24 10:57:39 +02:00
2009-07-01 14:27:24 +00:00
2009-07-01 14:27:24 +00:00
2009-07-01 14:27:24 +00:00
2009-04-17 15:34:53 +00:00
2009-07-01 21:24:47 +00:00
2009-07-01 21:24:47 +00:00
2009-07-01 14:27:24 +00:00
2009-01-27 14:49:09 +00:00
2009-08-19 17:02:45 +01:00
2009-08-19 17:02:45 +01:00
2009-07-01 14:27:24 +00:00
2008-04-23 17:08:31 +00:00
2009-07-01 14:27:24 +00:00
2009-01-27 14:49:09 +00:00
2009-07-01 14:27:24 +00:00
2009-01-27 14:49:09 +00:00
2009-07-01 14:27:24 +00:00
2009-04-21 13:39:40 +00:00
2009-07-01 14:27:24 +00:00
2009-05-21 14:20:21 +00:00
2008-07-22 09:52:31 +00:00
2008-04-23 17:08:31 +00:00
2008-04-28 08:29:35 +00:00
2008-07-22 09:52:31 +00:00
2008-04-23 17:08:31 +00:00
2008-04-23 17:08:31 +00:00
2008-04-23 17:08:31 +00:00
2009-09-01 17:38:52 +01:00
2008-04-23 17:08:31 +00:00
2009-09-01 17:38:52 +01:00
2008-04-23 17:08:31 +00:00
2009-09-01 17:38:52 +01:00
2009-07-24 22:16:51 +02:00
2009-09-01 17:38:52 +01:00
2009-02-25 20:02:14 +00:00
2009-09-01 17:38:52 +01:00
2008-04-23 17:08:31 +00:00
2009-09-01 17:38:52 +01:00
2009-09-01 17:38:52 +01:00
2009-09-01 17:38:52 +01:00
2009-05-29 12:27:45 +00:00
2008-04-23 17:08:31 +00:00
2008-12-15 10:24:54 +00:00
2009-06-09 11:42:41 +00:00
2009-04-02 12:01:11 +00:00
2009-06-29 11:09:17 +00:00
2009-06-29 11:09:17 +00:00
2009-07-01 14:27:24 +00:00
2009-07-01 14:27:24 +00:00
2009-04-24 14:04:54 +00:00
2009-04-24 14:04:54 +00:00
2008-05-15 06:12:32 +00:00
2009-06-29 11:09:17 +00:00
2009-06-09 11:42:41 +00:00
2009-06-09 11:42:41 +00:00
2009-04-02 12:01:11 +00:00
2009-07-29 23:28:50 +02:00
2009-07-29 23:28:50 +02:00
2009-07-16 15:06:42 +02:00
2006-01-23 22:55:41 +00:00
2006-01-20 15:49:04 +00:00
2009-09-01 18:27:06 +01:00
2009-04-15 20:42:50 +00:00
2009-04-15 20:42:50 +00:00
2009-04-15 20:42:50 +00:00
2009-04-15 20:42:50 +00:00
2008-04-23 17:08:31 +00:00
2008-04-23 17:08:31 +00:00
2008-04-23 17:08:31 +00:00
2008-04-23 17:08:31 +00:00
2008-04-23 17:08:31 +00:00
2008-04-23 17:08:31 +00:00
2009-04-15 20:42:50 +00:00
2009-04-15 20:42:50 +00:00
2009-09-01 18:27:06 +01:00
2008-05-06 23:23:55 +00:00
2006-02-09 17:45:11 +00:00
2005-12-07 09:33:00 +00:00
2009-08-06 15:58:38 +02:00
2009-08-06 15:58:38 +02:00
2006-02-09 17:45:11 +00:00
2008-04-23 17:08:31 +00:00
2009-07-16 23:11:55 +02:00
2008-04-25 16:23:51 +00:00
2009-08-05 16:00:41 +02:00
2009-08-05 16:00:41 +02:00
2009-07-29 09:04:21 +01:00
2006-01-23 13:24:07 +00:00
2006-01-23 13:24:07 +00:00
2009-04-15 20:42:50 +00:00
2007-07-12 15:47:19 +00:00
2009-06-09 11:42:41 +00:00
2008-04-23 17:08:31 +00:00
2009-01-12 21:09:09 +00:00
2009-01-12 21:09:09 +00:00
2009-06-09 11:42:41 +00:00
2009-03-04 13:17:44 +00:00
2008-04-24 09:44:00 +00:00
2008-04-25 16:23:51 +00:00
2009-09-01 17:38:52 +01:00
2009-09-01 17:38:52 +01:00
2009-07-01 14:27:24 +00:00
2008-12-04 14:51:57 +00:00
2005-12-05 11:16:07 +00:00
2008-07-11 16:41:27 +00:00
2006-08-16 16:36:39 +00:00
2009-07-16 15:06:42 +02:00
2009-07-16 15:06:42 +02:00
2009-06-22 17:19:30 +00:00
2008-07-11 16:41:27 +00:00
2009-06-22 17:19:30 +00:00
2009-06-22 17:19:30 +00:00
2009-06-09 11:42:41 +00:00
2008-11-28 12:03:20 +00:00
2009-08-11 15:39:28 +01:00
2007-11-28 11:54:47 +00:00
2007-11-28 11:54:47 +00:00
2007-11-28 11:54:47 +00:00
2009-06-09 11:42:41 +00:00
2008-09-18 09:00:10 +00:00