-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
activeDirectoryConnectors.json
222 lines (222 loc) · 7.01 KB
/
activeDirectoryConnectors.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
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
{
"swagger": "2.0",
"info": {
"version": "2022-03-01-preview",
"title": "AzureArcDataManagementClient",
"description": "The AzureArcData management API provides a RESTful set of web APIs to manage Azure Data Services on Azure Arc Resources."
},
"paths": {},
"definitions": {
"ActiveDirectoryConnectorListResult": {
"description": "A list of active directory connectors",
"type": "object",
"properties": {
"value": {
"description": "Array of results.",
"type": "array",
"items": {
"$ref": "#/definitions/ActiveDirectoryConnectorResource"
},
"readOnly": true
},
"nextLink": {
"description": "Link to retrieve next page of results.",
"type": "string",
"readOnly": true
}
}
},
"ActiveDirectoryConnectorResource": {
"type": "object",
"description": "Active directory connector resource",
"allOf": [
{
"$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/ProxyResource"
}
],
"properties": {
"properties": {
"$ref": "#/definitions/ActiveDirectoryConnectorProperties",
"description": "null",
"x-ms-client-flatten": false
}
},
"required": [
"properties"
]
},
"ActiveDirectoryConnectorProperties": {
"type": "object",
"description": "The properties of an Active Directory connector resource",
"properties": {
"provisioningState": {
"type": "string",
"description": "The provisioning state of the Active Directory connector resource.",
"readOnly": true
},
"spec": {
"$ref": "#/definitions/ActiveDirectoryConnectorSpec",
"description": "null",
"x-ms-client-flatten": false
},
"status": {
"$ref": "#/definitions/ActiveDirectoryConnectorStatus",
"description": "null",
"x-ms-client-flatten": false
}
},
"required": [
"spec"
]
},
"ActiveDirectoryConnectorSpec": {
"description": "The specifications of the AD Kubernetes resource.",
"type": "object",
"properties": {
"activeDirectory": {
"$ref": "#/definitions/ActiveDirectoryConnectorDomainDetails",
"description": "null",
"x-ms-client-flatten": false
},
"dns": {
"$ref": "#/definitions/ActiveDirectoryConnectorDNSDetails",
"description": "null",
"x-ms-client-flatten": false
}
},
"required": [
"activeDirectory",
"dns"
]
},
"ActiveDirectoryConnectorDomainDetails": {
"type": "object",
"description": "Active Directory domain details",
"properties": {
"realm": {
"type": "string",
"description": "Name (uppercase) of the Active Directory domain that this AD connector will be associated with."
},
"netbiosDomainName": {
"type": "string",
"description": "NETBIOS name of the Active Directory domain."
},
"domainControllers": {
"$ref": "#/definitions/ActiveDirectoryDomainControllers",
"description": "null",
"x-ms-client-flatten": false
}
},
"required": [
"realm",
"domainControllers"
]
},
"ActiveDirectoryConnectorDNSDetails": {
"type": "object",
"description": "DNS server details",
"properties": {
"domainName": {
"type": "string",
"description": "DNS domain name for which DNS lookups should be forwarded to the Active Directory DNS servers."
},
"nameserverIPAddresses": {
"type": "array",
"description": "List of Active Directory DNS server IP addresses.",
"items": {
"type": "string",
"minimum": 1
}
},
"replicas": {
"type": "integer",
"description": "Replica count for DNS proxy service. Default value is 1.",
"default": 1,
"format": "int64"
},
"preferK8sDnsForPtrLookups": {
"type": "boolean",
"description": "Flag indicating whether to prefer Kubernetes DNS server response over AD DNS server response for IP address lookups.",
"default": true
}
},
"required": [
"nameserverIPAddresses"
]
},
"ActiveDirectoryDomainControllers": {
"type": "object",
"description": "Details about the Active Directory domain controllers associated with this AD connector instance",
"properties": {
"primaryDomainController": {
"$ref": "#/definitions/ActiveDirectoryDomainController",
"description": "Information about the Primary Domain Controller (PDC) in the AD domain.",
"x-ms-client-flatten": false
},
"secondaryDomainControllers": {
"$ref": "#/definitions/ActiveDirectorySecondaryDomainControllers",
"description": "null",
"x-ms-client-flatten": false
}
}
},
"ActiveDirectoryDomainController": {
"type": "object",
"description": "Information about a domain controller in the AD domain.",
"properties": {
"hostname": {
"type": "string",
"description": "Fully-qualified domain name of a domain controller in the AD domain."
}
},
"required": [
"hostname"
]
},
"ActiveDirectorySecondaryDomainControllers": {
"type": "array",
"description": "Information about the secondary domain controllers in the AD domain.",
"items": {
"$ref": "#/definitions/ActiveDirectoryDomainController",
"description": "List of the fully-qualified domain names of the secondary domain controllers in the AD domain.",
"x-ms-client-flatten": false
},
"x-ms-identifiers": [
"hostname"
]
},
"ActiveDirectoryConnectorStatus": {
"type": "object",
"description": "The status of the Kubernetes custom resource.",
"properties": {
"lastUpdateTime": {
"type": "string",
"description": "The time that the custom resource was last updated."
},
"observedGeneration": {
"type": "integer",
"format": "int64",
"description": "The version of the replicaSet associated with the AD connector custom resource."
},
"state": {
"type": "string",
"description": "The state of the AD connector custom resource."
}
},
"additionalProperties": {
"type": "object"
}
}
},
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"description": "Azure Active Directory OAuth2 Flow",
"flow": "implicit",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
}
}