-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsettings.schema.json
More file actions
172 lines (172 loc) · 6.64 KB
/
settings.schema.json
File metadata and controls
172 lines (172 loc) · 6.64 KB
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Intune Hydration Kit Settings",
"description": "Configuration schema for Intune Hydration Kit settings file",
"type": "object",
"required": ["tenant", "authentication", "options", "imports"],
"properties": {
"tenant": {
"type": "object",
"description": "Target tenant configuration",
"required": ["tenantId"],
"properties": {
"tenantId": {
"type": "string",
"pattern": "^[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}$",
"description": "Azure AD tenant ID (GUID format)"
},
"tenantName": {
"type": ["string", "null"],
"description": "Tenant name for display purposes (e.g., contoso.onmicrosoft.com)"
}
}
},
"authentication": {
"type": "object",
"description": "Authentication configuration",
"required": ["mode"],
"properties": {
"mode": {
"type": "string",
"enum": ["interactive", "clientSecret"],
"description": "Authentication mode: interactive (browser) or clientSecret (service principal)"
},
"clientId": {
"type": ["string", "null"],
"description": "Application (client) ID for service principal authentication"
},
"clientSecret": {
"type": ["string", "null"],
"description": "Client secret for service principal authentication"
},
"environment": {
"type": "string",
"enum": ["Global", "USGov", "USGovDoD", "Germany", "China"],
"default": "Global",
"description": "Azure cloud environment"
}
}
},
"options": {
"type": "object",
"description": "Execution options",
"properties": {
"dryRun": {
"type": "boolean",
"default": false,
"description": "Run in dry-run mode (no changes made)"
},
"create": {
"type": "boolean",
"default": true,
"description": "Enable creation of configurations"
},
"delete": {
"type": "boolean",
"default": false,
"description": "Enable deletion of kit-created configurations"
},
"force": {
"type": "boolean",
"default": false,
"description": "Skip confirmation prompts"
},
"verbose": {
"type": "boolean",
"default": false,
"description": "Enable verbose logging output"
}
}
},
"imports": {
"type": "object",
"description": "Resource types to import",
"properties": {
"openIntuneBaseline": {
"type": "boolean",
"default": true,
"description": "Import OpenIntuneBaseline policies"
},
"complianceTemplates": {
"type": "boolean",
"default": true,
"description": "Import compliance policy templates"
},
"appProtection": {
"type": "boolean",
"default": true,
"description": "Import app protection (MAM) policies"
},
"notificationTemplates": {
"type": "boolean",
"default": true,
"description": "Import notification templates"
},
"enrollmentProfiles": {
"type": "boolean",
"default": true,
"description": "Import enrollment profiles (Autopilot, ESP)"
},
"dynamicGroups": {
"type": "boolean",
"default": true,
"description": "Import dynamic Azure AD groups"
},
"staticGroups": {
"type": "boolean",
"default": true,
"description": "Import static (assigned) groups and the Autopilot device preparation group"
},
"deviceFilters": {
"type": "boolean",
"default": true,
"description": "Import device filters"
},
"conditionalAccess": {
"type": "boolean",
"default": true,
"description": "Import Conditional Access starter pack policies"
},
"mobileApps": {
"type": "boolean",
"default": true,
"description": "Import mobile app templates"
}
}
},
"platforms": {
"type": "array",
"description": "Filter imports by platform. Affects: ComplianceTemplates, DeviceFilters, AppProtection, MobileApps, EnrollmentProfiles, OpenIntuneBaseline. Cross-platform resources (DynamicGroups, StaticGroups, ConditionalAccess, NotificationTemplates) are not filtered.",
"items": {
"type": "string",
"enum": ["Windows", "macOS", "iOS", "Android", "Linux", "All"]
},
"default": ["All"],
"examples": [
["All"],
["Windows"],
["Windows", "macOS"],
["iOS", "Android"]
]
},
"reporting": {
"type": "object",
"description": "Reporting configuration",
"properties": {
"outputPath": {
"type": ["string", "null"],
"description": "Output directory for reports"
},
"formats": {
"type": "array",
"items": {
"type": "string",
"enum": ["markdown", "json"]
},
"default": ["markdown"],
"description": "Report formats to generate"
}
}
}
}
}