-
Notifications
You must be signed in to change notification settings - Fork 2
/
EiffelMetaPropertyV3.go
88 lines (73 loc) · 3.26 KB
/
EiffelMetaPropertyV3.go
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
// Copyright Axis Communications AB.
//
// For a full list of individual contributors, please see the commit history.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Code generated by eventgen. DO NOT EDIT.
package eiffelevents
type MetaV3 struct {
// Mandatory fields
ID string `json:"id"`
Time int64 `json:"time"`
Type string `json:"type"`
Version string `json:"version"`
// Optional fields
SchemaURI string `json:"schemaUri,omitempty"`
Security MetaV3Security `json:"security,omitempty"`
Source MetaV3Source `json:"source,omitempty"`
Tags []string `json:"tags,omitempty"`
}
type MetaV3Security struct {
// Mandatory fields
AuthorIdentity string `json:"authorIdentity"`
// Optional fields
IntegrityProtection MetaV3SecurityIntegrityProtection `json:"integrityProtection,omitempty"`
SequenceProtection []MetaV3SecuritySequenceProtection `json:"sequenceProtection,omitempty"`
}
type MetaV3SecurityIntegrityProtection struct {
// Mandatory fields
Alg MetaV3SecurityIntegrityProtectionAlg `json:"alg"`
Signature string `json:"signature"`
// Optional fields
PublicKey string `json:"publicKey,omitempty"`
}
type MetaV3SecurityIntegrityProtectionAlg string
const (
MetaV3SecurityIntegrityProtectionAlg_HS256 MetaV3SecurityIntegrityProtectionAlg = "HS256"
MetaV3SecurityIntegrityProtectionAlg_HS384 MetaV3SecurityIntegrityProtectionAlg = "HS384"
MetaV3SecurityIntegrityProtectionAlg_HS512 MetaV3SecurityIntegrityProtectionAlg = "HS512"
MetaV3SecurityIntegrityProtectionAlg_RS256 MetaV3SecurityIntegrityProtectionAlg = "RS256"
MetaV3SecurityIntegrityProtectionAlg_RS384 MetaV3SecurityIntegrityProtectionAlg = "RS384"
MetaV3SecurityIntegrityProtectionAlg_RS512 MetaV3SecurityIntegrityProtectionAlg = "RS512"
MetaV3SecurityIntegrityProtectionAlg_ES256 MetaV3SecurityIntegrityProtectionAlg = "ES256"
MetaV3SecurityIntegrityProtectionAlg_ES384 MetaV3SecurityIntegrityProtectionAlg = "ES384"
MetaV3SecurityIntegrityProtectionAlg_ES512 MetaV3SecurityIntegrityProtectionAlg = "ES512"
MetaV3SecurityIntegrityProtectionAlg_PS256 MetaV3SecurityIntegrityProtectionAlg = "PS256"
MetaV3SecurityIntegrityProtectionAlg_PS384 MetaV3SecurityIntegrityProtectionAlg = "PS384"
MetaV3SecurityIntegrityProtectionAlg_PS512 MetaV3SecurityIntegrityProtectionAlg = "PS512"
)
type MetaV3SecuritySequenceProtection struct {
// Mandatory fields
Position int64 `json:"position"`
SequenceName string `json:"sequenceName"`
// Optional fields
}
type MetaV3Source struct {
// Mandatory fields
// Optional fields
DomainID string `json:"domainId,omitempty"`
Host string `json:"host,omitempty"`
Name string `json:"name,omitempty"`
Serializer string `json:"serializer,omitempty"`
URI string `json:"uri,omitempty"`
}