File: catalog_format_v8.markdown

package info (click to toggle)
puppetdb 8.8.1-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 19,692 kB
  • sloc: javascript: 23,285; ruby: 5,620; sh: 3,457; python: 389; xml: 114; makefile: 38
file content (259 lines) | stat: -rw-r--r-- 8,935 bytes parent folder | download | duplicates (3)
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
---
title: "Catalog wire format, version 8"
layout: default
canonical: "/puppetdb/latest/api/wire_format/catalog_format_v8.html"
---

# Catalog wire format - v8

[containment]: https://puppet.com/docs/puppet/latest/lang_containment.html
[relationship]: https://puppet.com/docs/puppet/latest/lang_relationships.html
[chain]: https://puppet.com/docs/puppet/latest/lang_relationships.html#syntax-chaining-arrows
[metaparameters]: https://puppet.com/docs/puppet/latest/lang_relationships.html#syntax-relationship-metaparameters
[require]: https://puppet.com/docs/puppet/latest/lang_relationships.html#syntax-the-require-function
[resource_ref]: https://puppet.com/docs/puppet/latest/lang_data_resource_reference.html
[numbers]: https://puppet.com/docs/puppet/latest/lang_data_number.html
[undef]: https://puppet.com/docs/puppet/latest/lang_data_undef.html
[namevar]: https://puppet.com/docs/puppet/latest/lang_resources.html#namenamevar
[resource]: https://puppet.com/docs/puppet/latest/lang_resources.html
[title]: https://puppet.com/docs/puppet/latest/lang_resources.html#title
[type]: https://puppet.com/docs/puppet/latest/lang_resources.html#type
[attributes]: https://puppet.com/docs/puppet/latest/lang_resources.html#attributes

PuppetDB receives catalogs from Puppet Servers in the following wire format.
This format is subtly different from the internal format used by Puppet, so
catalogs are converted by the
[PuppetDB catalog terminus](../../connect_puppet_server.markdown) before they are
sent.

## Catalog interchange format

### Version

This is **version 8** of the catalog interchange format.

### Encoding

The entire catalog is serialized as JSON, which requires strict UTF-8 encoding.
Unless otherwise noted, `null` is not allowed anywhere in the catalog.

### Main data type: Catalog

     {
      "certname": <string>,
      "version": <string>,
      "environment": <string>,
      "transaction_uuid": <string>,
      "catalog_uuid": <string>,
      "code_id": <string>,
      "producer_timestamp": <datetime>,
      "edges":
          [<edge>, <edge>, ...],
      "resources":
          [<resource>, <resource>, ...]
     }

#### `certname`

String. The name of the node for which the catalog was compiled.

#### `version`

String. An arbitrary string that uniquely identifies this specific catalog
across time for a single node. This is controlled by Puppet's
[`config_version` setting](https://puppet.com/docs/puppet/latest/configuration.html#configversion)
and is usually the seconds elapsed since the epoch.

#### `environment`

String. The environment associated to the node when the catalog was compiled.

#### `edges`

List of [`<edge>` objects](#data-type-edge). **Every** [relationship][] between
any two resources in the catalog, which may have been made with
[chaining arrows][chain], [metaparameters][], or
[the `require` function][require].

  > **Notes:**
  > * "Autorequire" relationships are not currently encoded in the catalog. *
  >This key is significantly different from its equivalent in Puppet's internal
  >catalog format, which only encodes containment edges.

#### `resources`

List of [`<resource>` objects](#data-type-resource). Contains **every** resource
in the catalog.

#### `transaction_uuid`

String. A string used to match the catalog with the corresponding report that
was issued during the same Puppet run. When running a Puppet agent off a cached
catalog use `catalog_uuid` instead to match reports with a catalog.

#### `catalog_uuid`

String. A string used to match reports with the corresponding catalog that was
used during the same Puppet run. This field may be `null`.

#### `code_id`

String. A string used to match the catalog with the Puppet code which generated
the catalog. This field may be `null`.

#### `producer_timestamp`

DateTime. The time of catalog submission from the Puppet Server to PuppetDB.
This field is currently populated by the Puppet Server.

### Data type: `<string>`

A JSON string. Because the catalog is UTF-8, these must also be UTF-8.

### Data type: `<integer>`

A JSON integer.

### Data type: `<boolean>`

A JSON Boolean.

### Data type: `<datetime>`

A JSON string representing a date and time (with time zone), formatted based on
the recommendations in ISO 8601. For example, for a UTC time, the string would
be formatted as `YYYY-MM-DDThh:mm:ss.sssZ`. For non-UTC time, the `Z` may be
replaced with `±hh:mm` to represent the specific timezone.

### Data type: `<edge>`

A JSON object of the following form, which represents a [relationship][] between
two resources:

    {"source": <resource-spec>,
     "target": <resource-spec>,
     "relationship": <relationship>}

All edges are normalized so that the "source" resource is managed **before** the
"target" resource. To do this, the Puppet language's "require" and "subscribe"
[relationship types][relationship] are munged into "required-by" and
"subscription-of" when they are converted into edges.

The keys of an edge are `source`, `target`, and `relationship`, all of which are
required.

#### `source`

A [`<resource-spec>`](#data-type-resource-spec). The resource which should be managed **first**.

#### `target`

A [`<resource-spec>`](#data-type-resource-spec). The resource which should be managed **second**.

#### `relationship`

A [`<relationship>`](#data-type-relationship). The way the two resources are related.

### Data type: `<resource-spec>`

(Synonym: `<resource-hash>`.)

The JSON representation of a [resource reference][resource_ref] (single-resource
kind). An object of the following form:

    {"type": <string>,
     "title": <string>}

The resource named by a resource-spec **must** exist in the catalog's
`"resources"` list. Note also that the title must be the resource's actual
[title][], rather than an alias or [name/namevar][namevar].

### Data type: `<relationship>`

One of the following exact strings, when used in the `relationship` key of an
[`<edge>` object](#data-type-edge):

* `contains`
* `before`
* `required-by`
* `notifies`
* `subscription-of`

**Note:** Regardless of the relationship type, the "source" resource is always
managed **before** the "target" resource. This means that, functionally
speaking, `required-by` is a synonym of `before` and `subscription-of` is a
synonym of `notifies`. In this catalog format, the different relationship types
preserve information about the _origin_ of the relationship.


String            | Relationship Type        | Origin of Relationship
------------------|--------------------------|-----------------------
`contains`        | [containment][]          | Class or defined type [containment][]
`before`          | ordering                 | `before` metaparam on source, or `->` chaining arrow
`required-by`     | ordering                 | `require` metaparam on target, or `require` function
`notifies`        | ordering w/ notification | `notify` metaparam on source, or `~>` chaining arrow
`subscription-of` | ordering w/ notification | `subscribe` metaparam on target


### Data type: `<resource>`

A JSON object of the following form, which represents a
[Puppet resource][resource]:

    {"type": <string>,
     "title": <string>,
     "aliases": [<string>, <string>, ...],
     "exported": <boolean>,
     "file": <string>,
     "line": <string>,
     "tags": [<string>, <string>, ...],
     "parameters": {<string>: <JSON object>,
                    <string>: <JSON object>,
                    ...}
    }

The eight keys in a resource object are `type`, `title`, `aliases`, `exported`,
`file`, `line`, `tags`, and `parameters`. All of them are **required.**

#### `type`

String. The [type][] of the resource, **capitalized.** (For example, `File`,
`Service`, `Class`, `Apache::Vhost`.) Note that every segment must be
capitalized if the type includes a namespace separator (`::`).

#### `title`

String. The [title][] of the resource.

#### `aliases`

List of strings. Includes **every** alias for the resource, including the value
of its [name/namevar][namevar] and any extra names added with the `"alias"`
metaparameter.

#### `exported`

Boolean. Indicates whether or not this is an exported resource.

#### `file`

String. The manifest file in which the resource definition is located.

#### `line`

Positive integer. The line (of the containing manifest file) at which the
resource definition can be found.

#### `tags`

List of strings. Includes every tag the resource has. This is a normalized
superset of the value of the resource's `tag` attribute.

#### `parameters`

JSON object. Includes all of the resource's [attributes][] and their associated
values. The value of an attribute may be any JSON data type, but Puppet will
only provide Booleans, strings, arrays, and hashes.
[Resource references][resource_ref] and [numbers][] in attributes are converted
to strings before being inserted into the catalog. Attributes with [undef][]
values are not added to the catalog.