Skip to content

Commit

Permalink
Fix bug For Github Issues (#24226)
Browse files Browse the repository at this point in the history
* Fix Bug For Github Issues

* fix

* fix
  • Loading branch information
Jingshu923 authored Jun 12, 2023
1 parent ad1400c commit d22b479
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 40 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1897,6 +1897,11 @@
"x-ms-format": "dfe-string",
"description": "Azure ML Service workspace name. Type: string (or Expression with resultType string)."
},
"authentication": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string)."
},
"servicePrincipalId": {
"type": "object",
"x-ms-format": "dfe-string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2271,16 +2271,9 @@
"description": "Database query. Type: string (or Expression with resultType string)."
},
"readBehavior": {
"description": "The read behavior for the operation. Default is Query.",
"type": "string",
"enum": [
"Query",
"QueryAll"
],
"x-ms-enum": {
"name": "SalesforceSourceReadBehavior",
"modelAsString": true
}
"description": "The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string).",
"type": "object",
"x-ms-format": "dfe-string"
}
}
},
Expand All @@ -2299,23 +2292,28 @@
"description": "Database query. Type: string (or Expression with resultType string)."
},
"readBehavior": {
"description": "The read behavior for the operation. Default is Query.",
"type": "string",
"enum": [
"Query",
"QueryAll"
],
"x-ms-enum": {
"name": "SalesforceSourceReadBehavior",
"modelAsString": true
}
"description": "The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string).",
"type": "object",
"x-ms-format": "dfe-string"
},
"additionalColumns": {
"type": "object",
"description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)."
}
}
},
"SalesforceSourceReadBehavior": {
"description": "The Salesforce read behavior for the operation",
"type": "string",
"enum": [
"Query",
"QueryAll"
],
"x-ms-enum": {
"name": "SalesforceSourceReadBehavior",
"modelAsString": true
}
},
"SapCloudForCustomerSource": {
"description": "A copy activity source for SAP Cloud for Customer source.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1616,6 +1616,10 @@
"encryptedCredential": {
"type": "object",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)."
},
"authentication": {
"type": "object",
"description": "Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string)."
}
},
"required": [
Expand Down Expand Up @@ -1659,6 +1663,10 @@
"type": "object",
"description": "Azure ML Service workspace name. Type: string (or Expression with resultType string)."
},
"authentication": {
"type": "object",
"description": "Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string)."
},
"servicePrincipalId": {
"type": "object",
"description": "The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string)."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1925,16 +1925,8 @@
"description": "Database query. Type: string (or Expression with resultType string)."
},
"readBehavior": {
"description": "The read behavior for the operation. Default is Query.",
"type": "string",
"enum": [
"Query",
"QueryAll"
],
"x-ms-enum": {
"name": "SalesforceSourceReadBehavior",
"modelAsString": true
}
"description": "The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string).",
"type": "object"
}
}
},
Expand All @@ -1952,23 +1944,27 @@
"description": "Database query. Type: string (or Expression with resultType string)."
},
"readBehavior": {
"description": "The read behavior for the operation. Default is Query.",
"type": "string",
"enum": [
"Query",
"QueryAll"
],
"x-ms-enum": {
"name": "SalesforceSourceReadBehavior",
"modelAsString": true
}
"description": "The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string).",
"type": "object"
},
"additionalColumns": {
"type": "object",
"description": "Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects)."
}
}
},
"SalesforceSourceReadBehavior": {
"description": "The Salesforce read behavior for the operation",
"type": "string",
"enum": [
"Query",
"QueryAll"
],
"x-ms-enum": {
"name": "SalesforceSourceReadBehavior",
"modelAsString": true
}
},
"SapCloudForCustomerSource": {
"description": "A copy activity source for SAP Cloud for Customer source.",
"type": "object",
Expand Down

0 comments on commit d22b479

Please sign in to comment.