summaryrefslogtreecommitdiff
path: root/introspection/nm-settings-connection.xml
blob: 6c4e995a2e409f61da5fbe48b2b0bb4520a8d8e1 (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?xml version="1.0" encoding="UTF-8" ?>

<node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">

    <interface name="org.freedesktop.NetworkManager.Settings.Connection">
        <tp:docstring>
            Represents a single network connection configuration.
        </tp:docstring>

        <method name="Update">
          <tp:docstring>
            Update the connection with new settings and properties (replacing
            all previous settings and properties) and save the connection to
            disk.  Secrets may be part of the update request, and will be either
            stored in persistent storage or sent to a Secret Agent for storage,
            depending on the flags associated with each secret.
          </tp:docstring>
          <arg name="properties" type="a{sa{sv}}" direction="in">
            <tp:docstring>
              New connection settings, properties, and (optionally) secrets.
            </tp:docstring>
          </arg>
        </method>

        <method name="UpdateUnsaved">
          <tp:docstring>
            Update the connection with new settings and properties (replacing
            all previous settings and properties) but do not immediately save
            the connection to disk.  Secrets may be part of the update request
            and may sent to a Secret Agent for storage, depending on the
            flags associated with each secret.

            Use the 'Save' method to save these changes to disk. Note
            that unsaved changes will be lost if the connection is
            reloaded from disk (either automatically on file change or
            due to an explicit ReloadConnections call).
          </tp:docstring>
          <arg name="properties" type="a{sa{sv}}" direction="in">
            <tp:docstring>
              New connection settings, properties, and (optionally) secrets.
            </tp:docstring>
          </arg>
        </method>

        <method name="Delete">
          <tp:docstring>
            Delete the connection.
          </tp:docstring>
        </method>

        <method name="GetSettings">
            <tp:docstring>
                Get the settings maps describing this network configuration.
                This will never include any secrets required for connection
                to the network, as those are often protected.  Secrets must
                be requested separately using the GetSecrets() call.
            </tp:docstring>
            <arg name="settings" type="a{sa{sv}}" direction="out" tp:type="String_String_Variant_Map_Map">
                <tp:docstring>
                    The nested settings maps describing this object.
                </tp:docstring>
            </arg>
        </method>

        <method name="GetSecrets">
            <tp:docstring>
                Get the secrets belonging to this network configuration.  Only
                secrets from persistent storage or a Secret Agent running in
                the requestor's session will be returned.  The user will never
                be prompted for secrets as a result of this request.
            </tp:docstring>
            <arg name="setting_name" type="s" direction="in">
                <tp:docstring>
                    Name of the setting to return secrets for.  If empty, all
                    all secrets will be returned.
                </tp:docstring>
            </arg>

            <arg name="secrets" type="a{sa{sv}}" direction="out" tp:type="String_String_Variant_Map_Map">
                <tp:docstring>
                    Nested settings maps containing secrets.
                </tp:docstring>
            </arg>
        </method>

        <method name="Save">
            <tp:docstring>
                Saves a "dirty" connection (that had previously been
                updated with UpdateUnsaved) to persistent storage.
            </tp:docstring>
        </method>

        <signal name="Updated">
            <tp:docstring>
                Emitted when any settings or permissions change.  When handling
                this signal, clients should re-read the connection using the
                GetSettings method to get the changes and to ensure the client
                still has permission to access the connection.
            </tp:docstring>
        </signal>

        <signal name="Removed">
            <tp:docstring>
                Emitted when this connection is no longer available.  This
                happens when the connection is deleted or if it is no longer
                accessible by any of the system's logged-in users.  After
                receipt of this signal, the object no longer exists.  Also
                see the Settings.ConnectionRemoved signal.
            </tp:docstring>
        </signal>

        <property name="Unsaved" type="b" access="read">
            <tp:docstring>
                If set, indicates that the in-memory state of the
                connection does not match the on-disk state. This flag
                will be set when UpdateUnsaved() is called or when any
                connection details change, and cleared when the connection
                is saved to disk via Save() or from internal operations.
            </tp:docstring>
        </property>

        <signal name="PropertiesChanged">
            <arg name="properties" type="a{sv}" tp:type="String_Variant_Map">
                <tp:docstring>
                    A dictionary mapping property names to variant boxed values.
                </tp:docstring>
            </arg>
        </signal>

    </interface>

</node>