-
Notifications
You must be signed in to change notification settings - Fork 11
/
Secret.cs
46 lines (31 loc) · 892 Bytes
/
Secret.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* Copyright (C)
* Arnaud Champion <[email protected]>
* Jaromír Červenka <[email protected]>
*
* See COPYING.LIB for the License of this software
*/
namespace Libvirt
{
/// <summary>
/// The Secret class expose all libvirt secret related functions
/// </summary>
public class Secret
{
// TODO virSecretDefineXML
// TODO virSecretFree
// TODO virSecretGetConnect
// TODO virSecretGetUUID
// TODO virSecretGetUUIDString
// TODO virSecretGetUsageID
// TODO virSecretGetUsageType
// TODO virSecretGetValue
// TODO virSecretGetXMLDesc
// TODO virSecretLookupByUUID
// TODO virSecretLookupByUUIDString
// TODO virSecretLookupByUsage
// TODO virSecretRef
// TODO virSecretSetValue
// TODO virSecretUndefine
}
}