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
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,7 @@ IMDS
importdevices
Inbuild
indic
Informix
Ingestor
ingressed
inkrecognizer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1323,6 +1323,58 @@
}
}
},
"InformixTableDataset": {
"x-ms-discriminator-value": "InformixTable",
"description": "The Informix table dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
"typeProperties": {
"description": "Informix table dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/InformixTableDatasetTypeProperties"
}
}
},
"InformixTableDatasetTypeProperties": {
"description": "Informix table dataset properties.",
"properties": {
"tableName": {
"type": "object",
"description": "The Informix table name. Type: string (or Expression with resultType string)."
}
}
},
"MicrosoftAccessTableDataset": {
"x-ms-discriminator-value": "MicrosoftAccessTable",
"description": "The Microsoft Access table dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
"typeProperties": {
"description": "Microsoft Access table dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/MicrosoftAccessTableDatasetTypeProperties"
}
}
},
"MicrosoftAccessTableDatasetTypeProperties": {
"description": "Microsoft Access table dataset properties.",
"properties": {
"tableName": {
"type": "object",
"description": "The Microsoft Access table name. Type: string (or Expression with resultType string)."
}
}
},
"SalesforceObjectDataset": {
"x-ms-discriminator-value": "SalesforceObject",
"description": "The Salesforce object dataset.",
Expand All @@ -1349,6 +1401,32 @@
}
}
},
"SalesforceServiceCloudObjectDataset": {
"x-ms-discriminator-value": "SalesforceServiceCloudObject",
"description": "The Salesforce Service Cloud object dataset.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Dataset"
}
],
"properties": {
"typeProperties": {
"description": "Salesforce Service Cloud object dataset properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/SalesforceServiceCloudObjectDatasetTypeProperties"
}
}
},
"SalesforceServiceCloudObjectDatasetTypeProperties": {
"description": "Salesforce Service Cloud object dataset properties.",
"properties": {
"objectApiName": {
"type": "object",
"description": "The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string)."
}
}
},
"SapCloudForCustomerResourceDataset": {
"x-ms-discriminator-value": "SapCloudForCustomerResource",
"description": "The path of the SAP Cloud for Customer OData entity.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1295,6 +1295,110 @@
"connectionString"
]
},
"InformixLinkedService": {
"x-ms-discriminator-value": "Informix",
"description": "Informix linked service.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "Informix linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/InformixLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"InformixLinkedServiceTypeProperties": {
"description": "Informix linked service properties.",
"properties": {
"connectionString": {
"description": "The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference.",
"type": "object"
},
"authenticationType": {
"type": "object",
"description": "Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string)."
},
"credential": {
"description": "The access credential portion of the connection string specified in driver-specific property-value format.",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"userName": {
"type": "object",
"description": "User name for Basic authentication. Type: string (or Expression with resultType string)."
},
"password": {
"description": "Password for Basic authentication.",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"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)."
}
},
"required": [
"connectionString"
]
},
"MicrosoftAccessLinkedService": {
"x-ms-discriminator-value": "MicrosoftAccess",
"description": "Microsoft Access linked service.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "Microsoft Access linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/MicrosoftAccessLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"MicrosoftAccessLinkedServiceTypeProperties": {
"description": "Microsoft Access linked service properties.",
"properties": {
"connectionString": {
"description": "The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference.",
"type": "object"
},
"authenticationType": {
"type": "object",
"description": "Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string)."
},
"credential": {
"description": "The access credential portion of the connection string specified in driver-specific property-value format.",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"userName": {
"type": "object",
"description": "User name for Basic authentication. Type: string (or Expression with resultType string)."
},
"password": {
"description": "Password for Basic authentication.",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"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)."
}
},
"required": [
"connectionString"
]
},
"HdfsLinkedService": {
"x-ms-discriminator-value": "Hdfs",
"description": "Hadoop Distributed File System (HDFS) linked service.",
Expand Down Expand Up @@ -1951,6 +2055,55 @@
}
}
},
"SalesforceServiceCloudLinkedService": {
"x-ms-discriminator-value": "SalesforceServiceCloud",
"description": "Linked service for Salesforce Service Cloud.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LinkedService"
}
],
"properties": {
"typeProperties": {
"description": "Salesforce Service Cloud linked service properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/SalesforceServiceCloudLinkedServiceTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"SalesforceServiceCloudLinkedServiceTypeProperties": {
"description": "Salesforce Service Cloud linked service properties.",
"properties": {
"environmentUrl": {
"type": "object",
"description": "The URL of Salesforce Service Cloud instance. Default is 'https://login.salesforce.com'. To copy data from sandbox, specify 'https://test.salesforce.com'. To copy data from custom domain, specify, for example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string)."
},
"username": {
"type": "object",
"description": "The username for Basic authentication of the Salesforce instance. Type: string (or Expression with resultType string)."
},
"password": {
"description": "The password for Basic authentication of the Salesforce instance.",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"securityToken": {
"description": "The security token is required to remotely access Salesforce instance.",
"$ref": "../datafactory.json#/definitions/SecretBase"
},
"extendedProperties": {
"type": "object",
"description": "Extended properties appended to the connection string. Type: string (or Expression with resultType string)."
},
"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)."
}
}
},
"SapCloudForCustomerLinkedService": {
"x-ms-discriminator-value": "SapCloudForCustomer",
"description": "Linked service for SAP Cloud for Customer.",
Expand Down
Loading