secret_conf.h 1.9 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
#pragma once
22

23 24
#include "internal.h"
#include "virutil.h"
25 26 27 28

typedef struct _virSecretDef virSecretDef;
typedef virSecretDef *virSecretDefPtr;
struct _virSecretDef {
29 30
    bool isephemeral;
    bool isprivate;
31
    unsigned char uuid[VIR_UUID_BUFLEN];
32
    char *description;          /* May be NULL */
33
    int usage_type;  /* virSecretUsageType */
34
    char *usage_id; /* May be NULL */
35 36 37
};

void virSecretDefFree(virSecretDefPtr def);
38 39
VIR_DEFINE_AUTOPTR_FUNC(virSecretDef, virSecretDefFree);

40 41
virSecretDefPtr virSecretDefParseString(const char *xml);
virSecretDefPtr virSecretDefParseFile(const char *filename);
E
Eric Blake 已提交
42
char *virSecretDefFormat(const virSecretDef *def);
43

44
#define VIR_CONNECT_LIST_SECRETS_FILTERS_EPHEMERAL \
O
Osier Yang 已提交
45 46 47
                (VIR_CONNECT_LIST_SECRETS_EPHEMERAL     | \
                 VIR_CONNECT_LIST_SECRETS_NO_EPHEMERAL)

48
#define VIR_CONNECT_LIST_SECRETS_FILTERS_PRIVATE \
O
Osier Yang 已提交
49 50 51
                (VIR_CONNECT_LIST_SECRETS_PRIVATE     | \
                 VIR_CONNECT_LIST_SECRETS_NO_PRIVATE)

52
#define VIR_CONNECT_LIST_SECRETS_FILTERS_ALL \
O
Osier Yang 已提交
53 54
                (VIR_CONNECT_LIST_SECRETS_FILTERS_EPHEMERAL  | \
                 VIR_CONNECT_LIST_SECRETS_FILTERS_PRIVATE)