Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@
"type": "object",
"description": "The properties of an Active Directory connector resource",
"properties": {
"domainServiceAccountLoginInformation": {
"$ref": "./common.json#/definitions/BasicLoginInformation",
"description": "Username and password for domain service account authentication."
},
"provisioningState": {
"type": "string",
"description": "The provisioning state of the Active Directory connector resource.",
Expand Down Expand Up @@ -101,6 +105,23 @@
"type": "string",
"description": "NETBIOS name of the Active Directory domain."
},
"serviceAccountProvisioning": {
"type": "string",
"enum": [
"automatic",
"manual"
],
"x-ms-enum": {
"name": "accountProvisioningMode",
"modelAsString": true
},
"default": "manual",
"description": "The service account provisioning mode for this Active Directory connector."
},
"ouDistinguishedName": {
"type": "string",
"description": "The distinguished name of the Active Directory Organizational Unit."
},
"domainControllers": {
"$ref": "#/definitions/ActiveDirectoryDomainControllers",
"description": "null",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"spec": {
"activeDirectory": {
"realm": "CONTOSO.LOCAL",
"serviceAccountProvisioning": "manual",
"domainControllers": {
"primaryDomainController": {
"hostname": "dc1.contoso.local"
Expand Down Expand Up @@ -43,6 +44,7 @@
"spec": {
"activeDirectory": {
"realm": "CONTOSO.LOCAL",
"serviceAccountProvisioning": "manual",
"domainControllers": {
"primaryDomainController": {
"hostname": "dc1.contoso.local"
Expand Down Expand Up @@ -88,6 +90,7 @@
"spec": {
"activeDirectory": {
"realm": "CONTOSO.LOCAL",
"serviceAccountProvisioning": "manual",
"domainControllers": {
"primaryDomainController": {
"hostname": "dc1.contoso.local"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"spec": {
"activeDirectory": {
"realm": "CONTOSO.LOCAL",
"serviceAccountProvisioning": "manual",
"domainControllers": {
"primaryDomainController": {
"hostname": "dc1.contoso.local"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"spec": {
"activeDirectory": {
"realm": "CONTOSO.LOCAL",
"serviceAccountProvisioning": "manual",
"domainControllers": {
"primaryDomainController": {
"hostname": "dc1.contoso.local"
Expand Down Expand Up @@ -57,6 +58,7 @@
"spec": {
"activeDirectory": {
"realm": "CONTOSO.LOCAL",
"serviceAccountProvisioning": "manual",
"domainControllers": {
"primaryDomainController": {
"hostname": "dc4.contoso.local"
Expand Down