Skip to content

Commit

Permalink
Active Directory connector automatic mode properties (Azure#18588)
Browse files Browse the repository at this point in the history
* Active Directory connector automatic mode properties

* fixed capitalization

* adding new property to examples
  • Loading branch information
sasank-chaganty authored and FredericHeem committed May 16, 2022
1 parent d557782 commit 49810b9
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
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

0 comments on commit 49810b9

Please sign in to comment.