Skip to content

Commit

Permalink
[DataFactory]Support ‘domain’ Property In Dynamics Family (Azure#29709)
Browse files Browse the repository at this point in the history
* Support ‘domain’ Property In Dynamics Family

* add
  • Loading branch information
Jingshu918 authored and zaowang-ms committed Jul 22, 2024
1 parent eabdd97 commit 69b76bb
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,12 @@
"authenticationType": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string)."
"description": "The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string)."
},
"domain": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string)."
},
"username": {
"type": "object",
Expand Down Expand Up @@ -1086,7 +1091,8 @@
"enum": [
"Office365",
"Ifd",
"AADServicePrincipal"
"AADServicePrincipal",
"Active Directory"
],
"x-ms-enum": {
"name": "DynamicsAuthenticationType",
Expand Down Expand Up @@ -1145,7 +1151,12 @@
"authenticationType": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string)."
"description": "The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string)."
},
"domain": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string)."
},
"username": {
"type": "object",
Expand Down Expand Up @@ -1248,7 +1259,12 @@
"authenticationType": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string)."
"description": "The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string)."
},
"domain": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string)."
},
"username": {
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,11 @@
},
"authenticationType": {
"type": "object",
"description": "The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string)."
"description": "The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string)."
},
"domain": {
"type": "object",
"description": "The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string)."
},
"username": {
"type": "object",
Expand Down Expand Up @@ -970,7 +974,8 @@
"enum": [
"Office365",
"Ifd",
"AADServicePrincipal"
"AADServicePrincipal",
"Active Directory"
],
"x-ms-enum": {
"name": "DynamicsAuthenticationType",
Expand Down Expand Up @@ -1023,7 +1028,11 @@
},
"authenticationType": {
"type": "object",
"description": "The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string)."
"description": "The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string)."
},
"domain": {
"type": "object",
"description": "The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string)."
},
"username": {
"type": "object",
Expand Down Expand Up @@ -1117,7 +1126,11 @@
},
"authenticationType": {
"type": "object",
"description": "The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string)."
"description": "The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string)."
},
"domain": {
"type": "object",
"description": "The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string)."
},
"username": {
"type": "object",
Expand Down

0 comments on commit 69b76bb

Please sign in to comment.