secret_conf.h 2.2 KB
Newer Older
1 2 3
/*
 * secret_conf.h: internal <secret> XML handling API
 *
4
 * Copyright (C) 2009-2010, 2013-2014, 2016 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
17
 * License along with this library.  If not, see
O
Osier Yang 已提交
18
 * <http://www.gnu.org/licenses/>.
19 20 21 22 23
 *
 * Red Hat Author: Miloslav Trmač <mitr@redhat.com>
 */

#ifndef __VIR_SECRET_CONF_H__
24
# define __VIR_SECRET_CONF_H__
25

26
# include "internal.h"
27
# include "virutil.h"
28

29
VIR_ENUM_DECL(virSecretUsage)
30 31 32 33

typedef struct _virSecretDef virSecretDef;
typedef virSecretDef *virSecretDefPtr;
struct _virSecretDef {
34 35
    bool isephemeral;
    bool isprivate;
36
    unsigned char uuid[VIR_UUID_BUFLEN];
37
    char *description;          /* May be NULL */
38
    int usage_type;  /* virSecretUsageType */
39 40
    union {
        char *volume;               /* May be NULL */
S
Sage Weil 已提交
41
        char *ceph;
42
        char *target;
J
John Ferlan 已提交
43
        char *name;
44 45 46
    } usage;
};

47 48
const char *virSecretUsageIDForDef(virSecretDefPtr def);

49
void virSecretDefFree(virSecretDefPtr def);
50 51
virSecretDefPtr virSecretDefParseString(const char *xml);
virSecretDefPtr virSecretDefParseFile(const char *filename);
E
Eric Blake 已提交
52
char *virSecretDefFormat(const virSecretDef *def);
53

O
Osier Yang 已提交
54 55 56 57 58 59 60 61 62 63 64 65
# define VIR_CONNECT_LIST_SECRETS_FILTERS_EPHEMERAL       \
                (VIR_CONNECT_LIST_SECRETS_EPHEMERAL     | \
                 VIR_CONNECT_LIST_SECRETS_NO_EPHEMERAL)

# define VIR_CONNECT_LIST_SECRETS_FILTERS_PRIVATE       \
                (VIR_CONNECT_LIST_SECRETS_PRIVATE     | \
                 VIR_CONNECT_LIST_SECRETS_NO_PRIVATE)

# define VIR_CONNECT_LIST_SECRETS_FILTERS_ALL                  \
                (VIR_CONNECT_LIST_SECRETS_FILTERS_EPHEMERAL  | \
                 VIR_CONNECT_LIST_SECRETS_FILTERS_PRIVATE)

66

67
#endif