1Sys::Virt::Secret(3pm)User Contributed Perl DocumentationSys::Virt::Secret(3pm)
2
3
4

NAME

6       Sys::Virt::Secret - Represent & manage a libvirt secret
7

DESCRIPTION

9       The "Sys::Virt::Secret" module represents a secret managed by the
10       virtual machine monitor.
11

METHODS

13       my $uuid = $sec->get_uuid()
14           Returns a 16 byte long string containing the raw globally unique
15           identifier (UUID) for the secret.
16
17       my $uuid = $sec->get_uuid_string()
18           Returns a printable string representation of the raw UUID, in the
19           format 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX'.
20
21       my $type = $sec->get_usage_type()
22           Returns the usage type of this secret. The usage type determines
23           the format of the unique identifier for this secret.
24
25       my $id = $sec->get_usage_id()
26           Returns the identifier of the object with which the secret is to be
27           used. For secrets with a usage type of volume, the identifier is
28           the fully qualified path.
29
30       my $xml = $sec->get_xml_description()
31           Returns an XML document containing a complete description of the
32           secret's configuration
33
34       $sec->undefine()
35           Remove the configuration associated with a secret previously
36           defined with the "define_secret" method in Sys::Virt.
37
38       $bytes = $sec->get_value()
39           Returns the raw bytes for the value of this secret, or undef if
40           there is no value stored with the secret.
41
42       $sec->set_value($bytes)
43           Sets the value for the secret to be $bytes.
44

CONSTANTS

46       This section documents constants that are used with various APIs
47       described above
48
49   SECRET USAGE TYPE
50       The following constants refer to the different usage types
51
52       Sys::Virt::Secret::USAGE_TYPE_NONE
53           The constant for secrets which are not assigned for use with a
54           particular object
55
56       Sys::Virt::Secret::USAGE_TYPE_VOLUME
57           The constant for secrets which are to be used for storage volume
58           encryption. The usage ID for secrets will refer to the fully
59           qualified volume path.
60
61       Sys::Virt::Secret::USAGE_TYPE_CEPH
62           The constant for secrets which are to be used for authenticating to
63           CEPH storage volumes. The usage ID for secrets will refer to the
64           server name.
65
66       Sys::Virt::Secret::USAGE_TYPE_ISCSI
67           The constant for secrets which are to be used for authenticating to
68           iSCSI storage volumes. The usage ID for secrets will refer to the
69           server name.
70
71       Sys::Virt::Secret::USAGE_TYPE_TLS
72           The constant for secrets which are to be used for authenticating
73           for the TLS environment. The usage ID for the secret can be any
74           name. The UUID for the secret will be used by the hypervisor to
75           fetch the secret value.
76
77       Sys::Virt::Secret::USAGE_TYPE_VTPM
78           The constant for secrets which are to be used for encrypting
79           virtual TPM state. The usage ID for the secret will refer to the
80           TPM path. The UUID for the secret will be used by the hypervisor to
81           fetch the secret value.
82
83   LIST FILTERING
84       The following constants are used to filter object lists
85
86       Sys::Virt::Secret::LIST_EPHEMERAL
87           Include any secrets marked as ephemeral
88
89       Sys::Virt::Secret::LIST_NO_EPHEMERAL
90           Include any secrets not marked as ephemeral
91
92       Sys::Virt::Secret::LIST_PRIVATE
93           Include any secrets marked as private
94
95       Sys::Virt::Secret::LIST_NO_PRIVATE
96           Include any secrets not marked as private
97
98   SECRET DEFINE
99       The following constants can be used to control the behaviour of secret
100       define operations
101
102       Sys::Virt::Secret::DEFINE_VALIDATE
103           Validate the XML document against the XML schema
104
105   EVENT ID CONSTANTS
106       Sys::Virt::Secret::EVENT_ID_LIFECYCLE
107           Secret lifecycle events
108
109       Sys::Virt::Secret::EVENT_ID_VALUE_CHANGED
110           Secret value change events
111
112   LIFECYCLE CHANGE EVENTS
113       The following constants allow secret lifecycle change events to be
114       interpreted. The events contain both a state change, and a reason
115       though the reason is currently unused.
116
117       Sys::Virt::Secret::EVENT_DEFINED
118           Indicates that a persistent configuration has been defined for the
119           secret.
120
121       Sys::Virt::Secret::EVENT_UNDEFINED
122           The persistent configuration has gone away
123

AUTHORS

125       Daniel P. Berrange <berrange@redhat.com>
126
128       Copyright (C) 2006-2009 Red Hat Copyright (C) 2006-2007 Daniel P.
129       Berrange
130

LICENSE

132       This program is free software; you can redistribute it and/or modify it
133       under the terms of either the GNU General Public License as published
134       by the Free Software Foundation (either version 2 of the License, or at
135       your option any later version), or, the Artistic License, as specified
136       in the Perl README file.
137

SEE ALSO

139       Sys::Virt, Sys::Virt::Error, "http://libvirt.org"
140
141
142
143perl v5.38.0                      2023-09-08            Sys::Virt::Secret(3pm)
Impressum