-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathconfiguration_execution.json
121 lines (121 loc) · 2.45 KB
/
configuration_execution.json
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
{
"$udmi_version": "1.5.2",
"title": "Execution Configuration",
"description": "Parameters for configuring the execution run of a UDMI tool",
"$section": "Tool Configuration",
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"registry_id": {
"type": "string"
},
"cloud_region": {
"type": "string"
},
"site_name": {
"type": "string"
},
"update_topic": {
"type": "string"
},
"feed_name": {
"type": "string"
},
"reflect_region": {
"type": "string"
},
"site_model": {
"type": "string"
},
"src_file": {
"type": "string"
},
"registry_suffix": {
"type": "string"
},
"shard_count": {
"type": "integer"
},
"shard_index": {
"type": "integer"
},
"device_id": {
"type": "string"
},
"iot_provider": {
"$ref": "file:common.json#/definitions/iot_provider"
},
"reflector_endpoint": {
"$ref": "file:configuration_endpoint.json"
},
"device_endpoint": {
"$ref": "file:configuration_endpoint.json"
},
"project_id": {
"type": "string"
},
"user_name": {
"type": "string"
},
"udmi_namespace": {
"type": "string"
},
"bridge_host": {
"type": "string"
},
"key_file": {
"type": "string"
},
"serial_no": {
"type": "string"
},
"log_level": {
"type": "string"
},
"min_stage": {
"type": "string"
},
"udmi_version": {
"type": "string",
"description": "Semantic tagged version of udmis install"
},
"udmi_commit": {
"type": "string",
"description": "Commit hash of this udmis install"
},
"udmi_ref": {
"type": "string",
"description": "Complete reference of udmis install"
},
"udmi_timever": {
"type": "string",
"description": "Timestamp version id of udmis install"
},
"enforce_version": {
"type": "boolean"
},
"udmi_root": {
"type": "string"
},
"update_to": {
"type": "string",
"description": "Optional version for a udmis update trigger"
},
"alt_project": {
"type": "string"
},
"alt_registry": {
"type": "string"
},
"block_unknown": {
"type": "boolean"
},
"sequences": {
"type": "array",
"items": {
"type": "string"
}
}
}
}