@azure/arm-datafactory 12.0.1-alpha.20240118.1 → 13.0.1-alpha.20240126.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +44 -1
- package/dist/index.js +354 -26
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/credentialOperationsListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/dataFlowDebugSessionQueryByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/dataFlowsListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/datasetsListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/factoriesListByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/factoriesListSample.js.map +1 -1
- package/dist-esm/samples-dev/globalParametersListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/integrationRuntimesListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/linkedServicesListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/managedPrivateEndpointsListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/managedVirtualNetworksListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/operationsListSample.js.map +1 -1
- package/dist-esm/samples-dev/pipelinesListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/privateEndPointConnectionsListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/triggersListByFactorySample.js.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +193 -41
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +16 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +17 -1
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +329 -25
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/operations/changeDataCapture.js.map +1 -1
- package/dist-esm/src/operations/credentialOperations.js.map +1 -1
- package/dist-esm/src/operations/dataFlowDebugSession.js.map +1 -1
- package/dist-esm/src/operations/dataFlows.js.map +1 -1
- package/dist-esm/src/operations/datasets.js.map +1 -1
- package/dist-esm/src/operations/factories.js.map +1 -1
- package/dist-esm/src/operations/globalParameters.js.map +1 -1
- package/dist-esm/src/operations/integrationRuntimes.js.map +1 -1
- package/dist-esm/src/operations/linkedServices.js.map +1 -1
- package/dist-esm/src/operations/managedPrivateEndpoints.js.map +1 -1
- package/dist-esm/src/operations/managedVirtualNetworks.js.map +1 -1
- package/dist-esm/src/operations/operations.js.map +1 -1
- package/dist-esm/src/operations/pipelines.js.map +1 -1
- package/dist-esm/src/operations/privateEndPointConnections.js.map +1 -1
- package/dist-esm/src/operations/triggers.js.map +1 -1
- package/dist-esm/src/pagingHelper.js.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.js.map +1 -1
- package/package.json +2 -2
- package/review/arm-datafactory.api.md +110 -12
- package/src/dataFactoryManagementClient.ts +1 -1
- package/src/models/index.ts +223 -42
- package/src/models/mappers.ts +391 -24
- package/types/arm-datafactory.d.ts +198 -34
|
@@ -1219,7 +1219,7 @@ export declare interface AzureFunctionActivity extends ExecutionActivity {
|
|
|
1219
1219
|
method: AzureFunctionActivityMethod;
|
|
1220
1220
|
/** Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string) */
|
|
1221
1221
|
functionName: any;
|
|
1222
|
-
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type:
|
|
1222
|
+
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: dictionary (or Expression with resultType dictionary). */
|
|
1223
1223
|
headers?: any;
|
|
1224
1224
|
/** Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string). */
|
|
1225
1225
|
body?: any;
|
|
@@ -1244,7 +1244,7 @@ export declare type AzureFunctionActivityMethod = string;
|
|
|
1244
1244
|
export declare interface AzureFunctionLinkedService extends LinkedService {
|
|
1245
1245
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1246
1246
|
type: "AzureFunction";
|
|
1247
|
-
/** The endpoint of the Azure Function App. URL will be in the format https://<accountName>.azurewebsites.net. */
|
|
1247
|
+
/** The endpoint of the Azure Function App. URL will be in the format https://<accountName>.azurewebsites.net. Type: string (or Expression with resultType string). */
|
|
1248
1248
|
functionAppUrl: any;
|
|
1249
1249
|
/** Function or Host key for Azure Function App. */
|
|
1250
1250
|
functionKey?: SecretBaseUnion;
|
|
@@ -1252,7 +1252,7 @@ export declare interface AzureFunctionLinkedService extends LinkedService {
|
|
|
1252
1252
|
encryptedCredential?: string;
|
|
1253
1253
|
/** The credential reference containing authentication information. */
|
|
1254
1254
|
credential?: CredentialReference;
|
|
1255
|
-
/** Allowed token audiences for azure function. */
|
|
1255
|
+
/** Allowed token audiences for azure function. Type: string (or Expression with resultType string). */
|
|
1256
1256
|
resourceId?: any;
|
|
1257
1257
|
/** Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string). */
|
|
1258
1258
|
authentication?: any;
|
|
@@ -1340,7 +1340,7 @@ export declare interface AzureMLExecutePipelineActivity extends ExecutionActivit
|
|
|
1340
1340
|
experimentName?: any;
|
|
1341
1341
|
/** Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object). */
|
|
1342
1342
|
mlPipelineParameters?: any;
|
|
1343
|
-
/** Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object
|
|
1343
|
+
/** Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object). */
|
|
1344
1344
|
dataPathAssignments?: any;
|
|
1345
1345
|
/** The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string). */
|
|
1346
1346
|
mlParentRunId?: any;
|
|
@@ -1666,7 +1666,7 @@ export declare interface AzureSqlSource extends TabularSource {
|
|
|
1666
1666
|
isolationLevel?: any;
|
|
1667
1667
|
/** Which additional types to produce. */
|
|
1668
1668
|
produceAdditionalTypes?: any;
|
|
1669
|
-
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
1669
|
+
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string). */
|
|
1670
1670
|
partitionOption?: any;
|
|
1671
1671
|
/** The settings that will be leveraged for Sql source partitioning. */
|
|
1672
1672
|
partitionSettings?: SqlPartitionSettings;
|
|
@@ -2124,9 +2124,9 @@ export declare interface CloudError {
|
|
|
2124
2124
|
export declare interface CmdkeySetup extends CustomSetupBase {
|
|
2125
2125
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
2126
2126
|
type: "CmdkeySetup";
|
|
2127
|
-
/** The server name of data source access. */
|
|
2127
|
+
/** The server name of data source access. Type: string. */
|
|
2128
2128
|
targetName: any;
|
|
2129
|
-
/** The user name of data source access. */
|
|
2129
|
+
/** The user name of data source access. Type: string. */
|
|
2130
2130
|
userName: any;
|
|
2131
2131
|
/** The password of data source access. */
|
|
2132
2132
|
password: SecretBaseUnion;
|
|
@@ -2393,7 +2393,7 @@ export declare interface CopyComputeScaleProperties {
|
|
|
2393
2393
|
/** A copy activity sink. */
|
|
2394
2394
|
export declare interface CopySink {
|
|
2395
2395
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
2396
|
-
type: "DelimitedTextSink" | "JsonSink" | "OrcSink" | "RestSink" | "AzurePostgreSqlSink" | "AzureMySqlSink" | "AzureDatabricksDeltaLakeSink" | "SapCloudForCustomerSink" | "AzureQueueSink" | "AzureTableSink" | "AvroSink" | "ParquetSink" | "BinarySink" | "BlobSink" | "FileSystemSink" | "DocumentDbCollectionSink" | "CosmosDbSqlApiSink" | "SqlSink" | "SqlServerSink" | "AzureSqlSink" | "SqlMISink" | "SqlDWSink" | "SnowflakeSink" | "OracleSink" | "AzureDataLakeStoreSink" | "AzureBlobFSSink" | "AzureSearchIndexSink" | "OdbcSink" | "InformixSink" | "MicrosoftAccessSink" | "DynamicsSink" | "DynamicsCrmSink" | "CommonDataServiceForAppsSink" | "AzureDataExplorerSink" | "SalesforceSink" | "SalesforceServiceCloudSink" | "MongoDbAtlasSink" | "MongoDbV2Sink" | "CosmosDbMongoDbApiSink" | "LakeHouseTableSink";
|
|
2396
|
+
type: "DelimitedTextSink" | "JsonSink" | "OrcSink" | "RestSink" | "AzurePostgreSqlSink" | "AzureMySqlSink" | "AzureDatabricksDeltaLakeSink" | "SapCloudForCustomerSink" | "AzureQueueSink" | "AzureTableSink" | "AvroSink" | "ParquetSink" | "BinarySink" | "BlobSink" | "FileSystemSink" | "DocumentDbCollectionSink" | "CosmosDbSqlApiSink" | "SqlSink" | "SqlServerSink" | "AzureSqlSink" | "SqlMISink" | "SqlDWSink" | "SnowflakeSink" | "OracleSink" | "AzureDataLakeStoreSink" | "AzureBlobFSSink" | "AzureSearchIndexSink" | "OdbcSink" | "InformixSink" | "MicrosoftAccessSink" | "DynamicsSink" | "DynamicsCrmSink" | "CommonDataServiceForAppsSink" | "AzureDataExplorerSink" | "SalesforceSink" | "SalesforceServiceCloudSink" | "MongoDbAtlasSink" | "MongoDbV2Sink" | "CosmosDbMongoDbApiSink" | "LakeHouseTableSink" | "SalesforceV2Sink" | "SalesforceServiceCloudV2Sink";
|
|
2397
2397
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
2398
2398
|
[property: string]: any;
|
|
2399
2399
|
/** Write batch size. Type: integer (or Expression with resultType integer), minimum: 0. */
|
|
@@ -2410,12 +2410,12 @@ export declare interface CopySink {
|
|
|
2410
2410
|
disableMetricsCollection?: any;
|
|
2411
2411
|
}
|
|
2412
2412
|
|
|
2413
|
-
export declare type CopySinkUnion = CopySink | DelimitedTextSink | JsonSink | OrcSink | RestSink | AzurePostgreSqlSink | AzureMySqlSink | AzureDatabricksDeltaLakeSink | SapCloudForCustomerSink | AzureQueueSink | AzureTableSink | AvroSink | ParquetSink | BinarySink | BlobSink | FileSystemSink | DocumentDbCollectionSink | CosmosDbSqlApiSink | SqlSink | SqlServerSink | AzureSqlSink | SqlMISink | SqlDWSink | SnowflakeSink | OracleSink | AzureDataLakeStoreSink | AzureBlobFSSink | AzureSearchIndexSink | OdbcSink | InformixSink | MicrosoftAccessSink | DynamicsSink | DynamicsCrmSink | CommonDataServiceForAppsSink | AzureDataExplorerSink | SalesforceSink | SalesforceServiceCloudSink | MongoDbAtlasSink | MongoDbV2Sink | CosmosDbMongoDbApiSink | LakeHouseTableSink;
|
|
2413
|
+
export declare type CopySinkUnion = CopySink | DelimitedTextSink | JsonSink | OrcSink | RestSink | AzurePostgreSqlSink | AzureMySqlSink | AzureDatabricksDeltaLakeSink | SapCloudForCustomerSink | AzureQueueSink | AzureTableSink | AvroSink | ParquetSink | BinarySink | BlobSink | FileSystemSink | DocumentDbCollectionSink | CosmosDbSqlApiSink | SqlSink | SqlServerSink | AzureSqlSink | SqlMISink | SqlDWSink | SnowflakeSink | OracleSink | AzureDataLakeStoreSink | AzureBlobFSSink | AzureSearchIndexSink | OdbcSink | InformixSink | MicrosoftAccessSink | DynamicsSink | DynamicsCrmSink | CommonDataServiceForAppsSink | AzureDataExplorerSink | SalesforceSink | SalesforceServiceCloudSink | MongoDbAtlasSink | MongoDbV2Sink | CosmosDbMongoDbApiSink | LakeHouseTableSink | SalesforceV2Sink | SalesforceServiceCloudV2Sink;
|
|
2414
2414
|
|
|
2415
2415
|
/** A copy activity source. */
|
|
2416
2416
|
export declare interface CopySource {
|
|
2417
2417
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
2418
|
-
type: "AvroSource" | "ExcelSource" | "ParquetSource" | "DelimitedTextSource" | "JsonSource" | "XmlSource" | "OrcSource" | "BinarySource" | "TabularSource" | "AzureTableSource" | "BlobSource" | "DocumentDbCollectionSource" | "CosmosDbSqlApiSource" | "DynamicsSource" | "DynamicsCrmSource" | "CommonDataServiceForAppsSource" | "RelationalSource" | "InformixSource" | "MicrosoftAccessSource" | "Db2Source" | "OdbcSource" | "MySqlSource" | "PostgreSqlSource" | "SybaseSource" | "SapBwSource" | "ODataSource" | "SalesforceSource" | "SalesforceServiceCloudSource" | "SapCloudForCustomerSource" | "SapEccSource" | "SapHanaSource" | "SapOpenHubSource" | "SapOdpSource" | "SapTableSource" | "RestSource" | "SqlSource" | "SqlServerSource" | "AmazonRdsForSqlServerSource" | "AzureSqlSource" | "SqlMISource" | "SqlDWSource" | "FileSystemSource" | "HdfsSource" | "AzureMySqlSource" | "AzureDataExplorerSource" | "OracleSource" | "AmazonRdsForOracleSource" | "TeradataSource" | "WebSource" | "CassandraSource" | "MongoDbSource" | "MongoDbAtlasSource" | "MongoDbV2Source" | "CosmosDbMongoDbApiSource" | "Office365Source" | "AzureDataLakeStoreSource" | "AzureBlobFSSource" | "HttpSource" | "AmazonMWSSource" | "AzurePostgreSqlSource" | "ConcurSource" | "CouchbaseSource" | "DrillSource" | "EloquaSource" | "GoogleBigQuerySource" | "GreenplumSource" | "HBaseSource" | "HiveSource" | "HubspotSource" | "ImpalaSource" | "JiraSource" | "MagentoSource" | "MariaDBSource" | "AzureMariaDBSource" | "MarketoSource" | "PaypalSource" | "PhoenixSource" | "PrestoSource" | "QuickBooksSource" | "ServiceNowSource" | "ShopifySource" | "SparkSource" | "SquareSource" | "XeroSource" | "ZohoSource" | "NetezzaSource" | "VerticaSource" | "SalesforceMarketingCloudSource" | "ResponsysSource" | "DynamicsAXSource" | "OracleServiceCloudSource" | "GoogleAdWordsSource" | "AmazonRedshiftSource" | "LakeHouseTableSource" | "SnowflakeSource" | "AzureDatabricksDeltaLakeSource" | "SharePointOnlineListSource";
|
|
2418
|
+
type: "AvroSource" | "ExcelSource" | "ParquetSource" | "DelimitedTextSource" | "JsonSource" | "XmlSource" | "OrcSource" | "BinarySource" | "TabularSource" | "AzureTableSource" | "BlobSource" | "DocumentDbCollectionSource" | "CosmosDbSqlApiSource" | "DynamicsSource" | "DynamicsCrmSource" | "CommonDataServiceForAppsSource" | "RelationalSource" | "InformixSource" | "MicrosoftAccessSource" | "Db2Source" | "OdbcSource" | "MySqlSource" | "PostgreSqlSource" | "SybaseSource" | "SapBwSource" | "ODataSource" | "SalesforceSource" | "SalesforceServiceCloudSource" | "SapCloudForCustomerSource" | "SapEccSource" | "SapHanaSource" | "SapOpenHubSource" | "SapOdpSource" | "SapTableSource" | "RestSource" | "SqlSource" | "SqlServerSource" | "AmazonRdsForSqlServerSource" | "AzureSqlSource" | "SqlMISource" | "SqlDWSource" | "FileSystemSource" | "HdfsSource" | "AzureMySqlSource" | "AzureDataExplorerSource" | "OracleSource" | "AmazonRdsForOracleSource" | "TeradataSource" | "WebSource" | "CassandraSource" | "MongoDbSource" | "MongoDbAtlasSource" | "MongoDbV2Source" | "CosmosDbMongoDbApiSource" | "Office365Source" | "AzureDataLakeStoreSource" | "AzureBlobFSSource" | "HttpSource" | "AmazonMWSSource" | "AzurePostgreSqlSource" | "ConcurSource" | "CouchbaseSource" | "DrillSource" | "EloquaSource" | "GoogleBigQuerySource" | "GreenplumSource" | "HBaseSource" | "HiveSource" | "HubspotSource" | "ImpalaSource" | "JiraSource" | "MagentoSource" | "MariaDBSource" | "AzureMariaDBSource" | "MarketoSource" | "PaypalSource" | "PhoenixSource" | "PrestoSource" | "QuickBooksSource" | "ServiceNowSource" | "ShopifySource" | "SparkSource" | "SquareSource" | "XeroSource" | "ZohoSource" | "NetezzaSource" | "VerticaSource" | "SalesforceMarketingCloudSource" | "ResponsysSource" | "DynamicsAXSource" | "OracleServiceCloudSource" | "GoogleAdWordsSource" | "AmazonRedshiftSource" | "LakeHouseTableSource" | "SnowflakeSource" | "AzureDatabricksDeltaLakeSource" | "SharePointOnlineListSource" | "SalesforceV2Source" | "SalesforceServiceCloudV2Source";
|
|
2419
2419
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
2420
2420
|
[property: string]: any;
|
|
2421
2421
|
/** Source retry count. Type: integer (or Expression with resultType integer). */
|
|
@@ -2428,7 +2428,7 @@ export declare interface CopySource {
|
|
|
2428
2428
|
disableMetricsCollection?: any;
|
|
2429
2429
|
}
|
|
2430
2430
|
|
|
2431
|
-
export declare type CopySourceUnion = CopySource | AvroSource | ExcelSource | ParquetSource | DelimitedTextSource | JsonSource | XmlSource | OrcSource | BinarySource | TabularSourceUnion | BlobSource | DocumentDbCollectionSource | CosmosDbSqlApiSource | DynamicsSource | DynamicsCrmSource | CommonDataServiceForAppsSource | RelationalSource | MicrosoftAccessSource | ODataSource | SalesforceServiceCloudSource | RestSource | FileSystemSource | HdfsSource | AzureDataExplorerSource | OracleSource | AmazonRdsForOracleSource | WebSource | MongoDbSource | MongoDbAtlasSource | MongoDbV2Source | CosmosDbMongoDbApiSource | Office365Source | AzureDataLakeStoreSource | AzureBlobFSSource | HttpSource | LakeHouseTableSource | SnowflakeSource | AzureDatabricksDeltaLakeSource | SharePointOnlineListSource;
|
|
2431
|
+
export declare type CopySourceUnion = CopySource | AvroSource | ExcelSource | ParquetSource | DelimitedTextSource | JsonSource | XmlSource | OrcSource | BinarySource | TabularSourceUnion | BlobSource | DocumentDbCollectionSource | CosmosDbSqlApiSource | DynamicsSource | DynamicsCrmSource | CommonDataServiceForAppsSource | RelationalSource | MicrosoftAccessSource | ODataSource | SalesforceServiceCloudSource | RestSource | FileSystemSource | HdfsSource | AzureDataExplorerSource | OracleSource | AmazonRdsForOracleSource | WebSource | MongoDbSource | MongoDbAtlasSource | MongoDbV2Source | CosmosDbMongoDbApiSource | Office365Source | AzureDataLakeStoreSource | AzureBlobFSSource | HttpSource | LakeHouseTableSource | SnowflakeSource | AzureDatabricksDeltaLakeSource | SharePointOnlineListSource | SalesforceServiceCloudV2Source;
|
|
2432
2432
|
|
|
2433
2433
|
/** A copy activity translator. */
|
|
2434
2434
|
export declare interface CopyTranslator {
|
|
@@ -3336,7 +3336,7 @@ export declare interface DataMapperMapping {
|
|
|
3336
3336
|
/** The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents. */
|
|
3337
3337
|
export declare interface Dataset {
|
|
3338
3338
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3339
|
-
type: "AmazonS3Object" | "Avro" | "Excel" | "Parquet" | "DelimitedText" | "Json" | "Xml" | "Orc" | "Binary" | "AzureBlob" | "AzureTable" | "AzureSqlTable" | "AzureSqlMITable" | "AzureSqlDWTable" | "CassandraTable" | "CustomDataset" | "CosmosDbSqlApiCollection" | "DocumentDbCollection" | "DynamicsEntity" | "DynamicsCrmEntity" | "CommonDataServiceForAppsEntity" | "AzureDataLakeStoreFile" | "AzureBlobFSFile" | "Office365Table" | "FileShare" | "MongoDbCollection" | "MongoDbAtlasCollection" | "MongoDbV2Collection" | "CosmosDbMongoDbApiCollection" | "ODataResource" | "OracleTable" | "AmazonRdsForOracleTable" | "TeradataTable" | "AzureMySqlTable" | "AmazonRedshiftTable" | "Db2Table" | "RelationalTable" | "InformixTable" | "OdbcTable" | "MySqlTable" | "PostgreSqlTable" | "MicrosoftAccessTable" | "SalesforceObject" | "SalesforceServiceCloudObject" | "SybaseTable" | "SapBwCube" | "SapCloudForCustomerResource" | "SapEccResource" | "SapHanaTable" | "SapOpenHubTable" | "SqlServerTable" | "AmazonRdsForSqlServerTable" | "RestResource" | "SapTableResource" | "SapOdpResource" | "WebTable" | "AzureSearchIndex" | "HttpFile" | "AmazonMWSObject" | "AzurePostgreSqlTable" | "ConcurObject" | "CouchbaseTable" | "DrillTable" | "EloquaObject" | "GoogleBigQueryObject" | "GreenplumTable" | "HBaseObject" | "HiveObject" | "HubspotObject" | "ImpalaObject" | "JiraObject" | "MagentoObject" | "MariaDBTable" | "AzureMariaDBTable" | "MarketoObject" | "PaypalObject" | "PhoenixObject" | "PrestoObject" | "QuickBooksObject" | "ServiceNowObject" | "ShopifyObject" | "SparkObject" | "SquareObject" | "XeroObject" | "ZohoObject" | "NetezzaTable" | "VerticaTable" | "SalesforceMarketingCloudObject" | "ResponsysObject" | "DynamicsAXResource" | "OracleServiceCloudObject" | "AzureDataExplorerTable" | "GoogleAdWordsObject" | "SnowflakeTable" | "SharePointOnlineListResource" | "AzureDatabricksDeltaLakeDataset" | "LakeHouseTable";
|
|
3339
|
+
type: "AmazonS3Object" | "Avro" | "Excel" | "Parquet" | "DelimitedText" | "Json" | "Xml" | "Orc" | "Binary" | "AzureBlob" | "AzureTable" | "AzureSqlTable" | "AzureSqlMITable" | "AzureSqlDWTable" | "CassandraTable" | "CustomDataset" | "CosmosDbSqlApiCollection" | "DocumentDbCollection" | "DynamicsEntity" | "DynamicsCrmEntity" | "CommonDataServiceForAppsEntity" | "AzureDataLakeStoreFile" | "AzureBlobFSFile" | "Office365Table" | "FileShare" | "MongoDbCollection" | "MongoDbAtlasCollection" | "MongoDbV2Collection" | "CosmosDbMongoDbApiCollection" | "ODataResource" | "OracleTable" | "AmazonRdsForOracleTable" | "TeradataTable" | "AzureMySqlTable" | "AmazonRedshiftTable" | "Db2Table" | "RelationalTable" | "InformixTable" | "OdbcTable" | "MySqlTable" | "PostgreSqlTable" | "MicrosoftAccessTable" | "SalesforceObject" | "SalesforceServiceCloudObject" | "SybaseTable" | "SapBwCube" | "SapCloudForCustomerResource" | "SapEccResource" | "SapHanaTable" | "SapOpenHubTable" | "SqlServerTable" | "AmazonRdsForSqlServerTable" | "RestResource" | "SapTableResource" | "SapOdpResource" | "WebTable" | "AzureSearchIndex" | "HttpFile" | "AmazonMWSObject" | "AzurePostgreSqlTable" | "ConcurObject" | "CouchbaseTable" | "DrillTable" | "EloquaObject" | "GoogleBigQueryObject" | "GreenplumTable" | "HBaseObject" | "HiveObject" | "HubspotObject" | "ImpalaObject" | "JiraObject" | "MagentoObject" | "MariaDBTable" | "AzureMariaDBTable" | "MarketoObject" | "PaypalObject" | "PhoenixObject" | "PrestoObject" | "QuickBooksObject" | "ServiceNowObject" | "ShopifyObject" | "SparkObject" | "SquareObject" | "XeroObject" | "ZohoObject" | "NetezzaTable" | "VerticaTable" | "SalesforceMarketingCloudObject" | "ResponsysObject" | "DynamicsAXResource" | "OracleServiceCloudObject" | "AzureDataExplorerTable" | "GoogleAdWordsObject" | "SnowflakeTable" | "SharePointOnlineListResource" | "AzureDatabricksDeltaLakeDataset" | "LakeHouseTable" | "SalesforceV2Object" | "SalesforceServiceCloudV2Object";
|
|
3340
3340
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
3341
3341
|
[property: string]: any;
|
|
3342
3342
|
/** Dataset description. */
|
|
@@ -3533,7 +3533,7 @@ export declare interface DatasetStorageFormat {
|
|
|
3533
3533
|
|
|
3534
3534
|
export declare type DatasetStorageFormatUnion = DatasetStorageFormat | TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat;
|
|
3535
3535
|
|
|
3536
|
-
export declare type DatasetUnion = Dataset | AmazonS3Dataset | AvroDataset | ExcelDataset | ParquetDataset | DelimitedTextDataset | JsonDataset | XmlDataset | OrcDataset | BinaryDataset | AzureBlobDataset | AzureTableDataset | AzureSqlTableDataset | AzureSqlMITableDataset | AzureSqlDWTableDataset | CassandraTableDataset | CustomDataset | CosmosDbSqlApiCollectionDataset | DocumentDbCollectionDataset | DynamicsEntityDataset | DynamicsCrmEntityDataset | CommonDataServiceForAppsEntityDataset | AzureDataLakeStoreDataset | AzureBlobFSDataset | Office365Dataset | FileShareDataset | MongoDbCollectionDataset | MongoDbAtlasCollectionDataset | MongoDbV2CollectionDataset | CosmosDbMongoDbApiCollectionDataset | ODataResourceDataset | OracleTableDataset | AmazonRdsForOracleTableDataset | TeradataTableDataset | AzureMySqlTableDataset | AmazonRedshiftTableDataset | Db2TableDataset | RelationalTableDataset | InformixTableDataset | OdbcTableDataset | MySqlTableDataset | PostgreSqlTableDataset | MicrosoftAccessTableDataset | SalesforceObjectDataset | SalesforceServiceCloudObjectDataset | SybaseTableDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SapHanaTableDataset | SapOpenHubTableDataset | SqlServerTableDataset | AmazonRdsForSqlServerTableDataset | RestResourceDataset | SapTableResourceDataset | SapOdpResourceDataset | WebTableDataset | AzureSearchIndexDataset | HttpDataset | AmazonMWSObjectDataset | AzurePostgreSqlTableDataset | ConcurObjectDataset | CouchbaseTableDataset | DrillTableDataset | EloquaObjectDataset | GoogleBigQueryObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HubspotObjectDataset | ImpalaObjectDataset | JiraObjectDataset | MagentoObjectDataset | MariaDBTableDataset | AzureMariaDBTableDataset | MarketoObjectDataset | PaypalObjectDataset | PhoenixObjectDataset | PrestoObjectDataset | QuickBooksObjectDataset | ServiceNowObjectDataset | ShopifyObjectDataset | SparkObjectDataset | SquareObjectDataset | XeroObjectDataset | ZohoObjectDataset | NetezzaTableDataset | VerticaTableDataset | SalesforceMarketingCloudObjectDataset | ResponsysObjectDataset | DynamicsAXResourceDataset | OracleServiceCloudObjectDataset | AzureDataExplorerTableDataset | GoogleAdWordsObjectDataset | SnowflakeDataset | SharePointOnlineListResourceDataset | AzureDatabricksDeltaLakeDataset | LakeHouseTableDataset;
|
|
3536
|
+
export declare type DatasetUnion = Dataset | AmazonS3Dataset | AvroDataset | ExcelDataset | ParquetDataset | DelimitedTextDataset | JsonDataset | XmlDataset | OrcDataset | BinaryDataset | AzureBlobDataset | AzureTableDataset | AzureSqlTableDataset | AzureSqlMITableDataset | AzureSqlDWTableDataset | CassandraTableDataset | CustomDataset | CosmosDbSqlApiCollectionDataset | DocumentDbCollectionDataset | DynamicsEntityDataset | DynamicsCrmEntityDataset | CommonDataServiceForAppsEntityDataset | AzureDataLakeStoreDataset | AzureBlobFSDataset | Office365Dataset | FileShareDataset | MongoDbCollectionDataset | MongoDbAtlasCollectionDataset | MongoDbV2CollectionDataset | CosmosDbMongoDbApiCollectionDataset | ODataResourceDataset | OracleTableDataset | AmazonRdsForOracleTableDataset | TeradataTableDataset | AzureMySqlTableDataset | AmazonRedshiftTableDataset | Db2TableDataset | RelationalTableDataset | InformixTableDataset | OdbcTableDataset | MySqlTableDataset | PostgreSqlTableDataset | MicrosoftAccessTableDataset | SalesforceObjectDataset | SalesforceServiceCloudObjectDataset | SybaseTableDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SapHanaTableDataset | SapOpenHubTableDataset | SqlServerTableDataset | AmazonRdsForSqlServerTableDataset | RestResourceDataset | SapTableResourceDataset | SapOdpResourceDataset | WebTableDataset | AzureSearchIndexDataset | HttpDataset | AmazonMWSObjectDataset | AzurePostgreSqlTableDataset | ConcurObjectDataset | CouchbaseTableDataset | DrillTableDataset | EloquaObjectDataset | GoogleBigQueryObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HubspotObjectDataset | ImpalaObjectDataset | JiraObjectDataset | MagentoObjectDataset | MariaDBTableDataset | AzureMariaDBTableDataset | MarketoObjectDataset | PaypalObjectDataset | PhoenixObjectDataset | PrestoObjectDataset | QuickBooksObjectDataset | ServiceNowObjectDataset | ShopifyObjectDataset | SparkObjectDataset | SquareObjectDataset | XeroObjectDataset | ZohoObjectDataset | NetezzaTableDataset | VerticaTableDataset | SalesforceMarketingCloudObjectDataset | ResponsysObjectDataset | DynamicsAXResourceDataset | OracleServiceCloudObjectDataset | AzureDataExplorerTableDataset | GoogleAdWordsObjectDataset | SnowflakeDataset | SharePointOnlineListResourceDataset | AzureDatabricksDeltaLakeDataset | LakeHouseTableDataset | SalesforceV2ObjectDataset | SalesforceServiceCloudV2ObjectDataset;
|
|
3537
3537
|
|
|
3538
3538
|
/** Linked service for Dataworld. */
|
|
3539
3539
|
export declare interface DataworldLinkedService extends LinkedService {
|
|
@@ -5489,7 +5489,7 @@ export declare interface HDInsightMapReduceActivity extends ExecutionActivity {
|
|
|
5489
5489
|
export declare interface HDInsightOnDemandLinkedService extends LinkedService {
|
|
5490
5490
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
5491
5491
|
type: "HDInsightOnDemand";
|
|
5492
|
-
/** Number of worker/data nodes in the cluster. Suggestion value: 4. Type:
|
|
5492
|
+
/** Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int). */
|
|
5493
5493
|
clusterSize: any;
|
|
5494
5494
|
/** The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string). */
|
|
5495
5495
|
timeToLive: any;
|
|
@@ -5776,7 +5776,7 @@ export declare interface HttpLinkedService extends LinkedService {
|
|
|
5776
5776
|
userName?: any;
|
|
5777
5777
|
/** Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication. */
|
|
5778
5778
|
password?: SecretBaseUnion;
|
|
5779
|
-
/** The additional HTTP headers in the request to RESTful API used for authorization. Type:
|
|
5779
|
+
/** The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type). */
|
|
5780
5780
|
authHeaders?: any;
|
|
5781
5781
|
/** Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string). */
|
|
5782
5782
|
embeddedCertData?: any;
|
|
@@ -7783,6 +7783,22 @@ export declare enum KnownSalesforceSourceReadBehavior {
|
|
|
7783
7783
|
QueryAll = "QueryAll"
|
|
7784
7784
|
}
|
|
7785
7785
|
|
|
7786
|
+
/** Known values of {@link SalesforceV2SinkWriteBehavior} that the service accepts. */
|
|
7787
|
+
export declare enum KnownSalesforceV2SinkWriteBehavior {
|
|
7788
|
+
/** Insert */
|
|
7789
|
+
Insert = "Insert",
|
|
7790
|
+
/** Upsert */
|
|
7791
|
+
Upsert = "Upsert"
|
|
7792
|
+
}
|
|
7793
|
+
|
|
7794
|
+
/** Known values of {@link SalesforceV2SourceReadBehavior} that the service accepts. */
|
|
7795
|
+
export declare enum KnownSalesforceV2SourceReadBehavior {
|
|
7796
|
+
/** Query */
|
|
7797
|
+
Query = "query",
|
|
7798
|
+
/** QueryAll */
|
|
7799
|
+
QueryAll = "queryAll"
|
|
7800
|
+
}
|
|
7801
|
+
|
|
7786
7802
|
/** Known values of {@link SapCloudForCustomerSinkWriteBehavior} that the service accepts. */
|
|
7787
7803
|
export declare enum KnownSapCloudForCustomerSinkWriteBehavior {
|
|
7788
7804
|
/** Insert */
|
|
@@ -8329,7 +8345,7 @@ export declare type LinkedIntegrationRuntimeTypeUnion = LinkedIntegrationRuntime
|
|
|
8329
8345
|
/** The nested object which contains the information and credential which can be used to connect with related store or compute resource. */
|
|
8330
8346
|
export declare interface LinkedService {
|
|
8331
8347
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
8332
|
-
type: "AzureStorage" | "AzureBlobStorage" | "AzureTableStorage" | "AzureSqlDW" | "SqlServer" | "AmazonRdsForSqlServer" | "AzureSqlDatabase" | "AzureSqlMI" | "AzureBatch" | "AzureKeyVault" | "CosmosDb" | "Dynamics" | "DynamicsCrm" | "CommonDataServiceForApps" | "HDInsight" | "FileServer" | "AzureFileStorage" | "AmazonS3Compatible" | "OracleCloudStorage" | "GoogleCloudStorage" | "Oracle" | "AmazonRdsForOracle" | "AzureMySql" | "MySql" | "PostgreSql" | "Sybase" | "Db2" | "Teradata" | "AzureML" | "AzureMLService" | "Odbc" | "Informix" | "MicrosoftAccess" | "Hdfs" | "OData" | "Web" | "Cassandra" | "MongoDb" | "MongoDbAtlas" | "MongoDbV2" | "CosmosDbMongoDbApi" | "AzureDataLakeStore" | "AzureBlobFS" | "Office365" | "Salesforce" | "SalesforceServiceCloud" | "SapCloudForCustomer" | "SapEcc" | "SapOpenHub" | "SapOdp" | "RestService" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "Dataworld" | "AppFigures" | "Asana" | "Twilio" | "GoogleSheets" | "AmazonS3" | "AmazonRedshift" | "CustomDataSource" | "AzureSearch" | "HttpServer" | "FtpServer" | "Sftp" | "SapBW" | "SapHana" | "AmazonMWS" | "AzurePostgreSql" | "Concur" | "Couchbase" | "Drill" | "Eloqua" | "GoogleBigQuery" | "Greenplum" | "HBase" | "Hive" | "Hubspot" | "Impala" | "Jira" | "Magento" | "MariaDB" | "AzureMariaDB" | "Marketo" | "Paypal" | "Phoenix" | "Presto" | "QuickBooks" | "ServiceNow" | "Shopify" | "Spark" | "Square" | "Xero" | "Zoho" | "Vertica" | "Netezza" | "SalesforceMarketingCloud" | "HDInsightOnDemand" | "AzureDataLakeAnalytics" | "AzureDatabricks" | "AzureDatabricksDeltaLake" | "Responsys" | "DynamicsAX" | "OracleServiceCloud" | "GoogleAdWords" | "SapTable" | "AzureDataExplorer" | "AzureFunction" | "Snowflake" | "SharePointOnlineList" | "AzureSynapseArtifacts" | "LakeHouse";
|
|
8348
|
+
type: "AzureStorage" | "AzureBlobStorage" | "AzureTableStorage" | "AzureSqlDW" | "SqlServer" | "AmazonRdsForSqlServer" | "AzureSqlDatabase" | "AzureSqlMI" | "AzureBatch" | "AzureKeyVault" | "CosmosDb" | "Dynamics" | "DynamicsCrm" | "CommonDataServiceForApps" | "HDInsight" | "FileServer" | "AzureFileStorage" | "AmazonS3Compatible" | "OracleCloudStorage" | "GoogleCloudStorage" | "Oracle" | "AmazonRdsForOracle" | "AzureMySql" | "MySql" | "PostgreSql" | "Sybase" | "Db2" | "Teradata" | "AzureML" | "AzureMLService" | "Odbc" | "Informix" | "MicrosoftAccess" | "Hdfs" | "OData" | "Web" | "Cassandra" | "MongoDb" | "MongoDbAtlas" | "MongoDbV2" | "CosmosDbMongoDbApi" | "AzureDataLakeStore" | "AzureBlobFS" | "Office365" | "Salesforce" | "SalesforceServiceCloud" | "SapCloudForCustomer" | "SapEcc" | "SapOpenHub" | "SapOdp" | "RestService" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "Dataworld" | "AppFigures" | "Asana" | "Twilio" | "GoogleSheets" | "AmazonS3" | "AmazonRedshift" | "CustomDataSource" | "AzureSearch" | "HttpServer" | "FtpServer" | "Sftp" | "SapBW" | "SapHana" | "AmazonMWS" | "AzurePostgreSql" | "Concur" | "Couchbase" | "Drill" | "Eloqua" | "GoogleBigQuery" | "Greenplum" | "HBase" | "Hive" | "Hubspot" | "Impala" | "Jira" | "Magento" | "MariaDB" | "AzureMariaDB" | "Marketo" | "Paypal" | "Phoenix" | "Presto" | "QuickBooks" | "ServiceNow" | "Shopify" | "Spark" | "Square" | "Xero" | "Zoho" | "Vertica" | "Netezza" | "SalesforceMarketingCloud" | "HDInsightOnDemand" | "AzureDataLakeAnalytics" | "AzureDatabricks" | "AzureDatabricksDeltaLake" | "Responsys" | "DynamicsAX" | "OracleServiceCloud" | "GoogleAdWords" | "SapTable" | "AzureDataExplorer" | "AzureFunction" | "Snowflake" | "SharePointOnlineList" | "AzureSynapseArtifacts" | "LakeHouse" | "SalesforceV2" | "SalesforceServiceCloudV2";
|
|
8333
8349
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
8334
8350
|
[property: string]: any;
|
|
8335
8351
|
/** The integration runtime reference. */
|
|
@@ -8448,7 +8464,7 @@ export declare interface LinkedServicesListByFactoryOptionalParams extends coreC
|
|
|
8448
8464
|
/** Contains response data for the listByFactory operation. */
|
|
8449
8465
|
export declare type LinkedServicesListByFactoryResponse = LinkedServiceListResponse;
|
|
8450
8466
|
|
|
8451
|
-
export declare type LinkedServiceUnion = LinkedService | AzureStorageLinkedService | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService | FileServerLinkedService | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | AzureMLServiceLinkedService | OdbcLinkedService | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | SapOpenHubLinkedService | SapOdpLinkedService | RestServiceLinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | GoogleSheetsLinkedService | AmazonS3LinkedService | AmazonRedshiftLinkedService | CustomDataSourceLinkedService | AzureSearchLinkedService | HttpLinkedService | FtpServerLinkedService | SftpServerLinkedService | SapBWLinkedService | SapHanaLinkedService | AmazonMWSLinkedService | AzurePostgreSqlLinkedService | ConcurLinkedService | CouchbaseLinkedService | DrillLinkedService | EloquaLinkedService | GoogleBigQueryLinkedService | GreenplumLinkedService | HBaseLinkedService | HiveLinkedService | HubspotLinkedService | ImpalaLinkedService | JiraLinkedService | MagentoLinkedService | MariaDBLinkedService | AzureMariaDBLinkedService | MarketoLinkedService | PaypalLinkedService | PhoenixLinkedService | PrestoLinkedService | QuickBooksLinkedService | ServiceNowLinkedService | ShopifyLinkedService | SparkLinkedService | SquareLinkedService | XeroLinkedService | ZohoLinkedService | VerticaLinkedService | NetezzaLinkedService | SalesforceMarketingCloudLinkedService | HDInsightOnDemandLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDatabricksLinkedService | AzureDatabricksDeltaLakeLinkedService | ResponsysLinkedService | DynamicsAXLinkedService | OracleServiceCloudLinkedService | GoogleAdWordsLinkedService | SapTableLinkedService | AzureDataExplorerLinkedService | AzureFunctionLinkedService | SnowflakeLinkedService | SharePointOnlineListLinkedService | AzureSynapseArtifactsLinkedService | LakeHouseLinkedService;
|
|
8467
|
+
export declare type LinkedServiceUnion = LinkedService | AzureStorageLinkedService | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService | FileServerLinkedService | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | AzureMLServiceLinkedService | OdbcLinkedService | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | SapOpenHubLinkedService | SapOdpLinkedService | RestServiceLinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | GoogleSheetsLinkedService | AmazonS3LinkedService | AmazonRedshiftLinkedService | CustomDataSourceLinkedService | AzureSearchLinkedService | HttpLinkedService | FtpServerLinkedService | SftpServerLinkedService | SapBWLinkedService | SapHanaLinkedService | AmazonMWSLinkedService | AzurePostgreSqlLinkedService | ConcurLinkedService | CouchbaseLinkedService | DrillLinkedService | EloquaLinkedService | GoogleBigQueryLinkedService | GreenplumLinkedService | HBaseLinkedService | HiveLinkedService | HubspotLinkedService | ImpalaLinkedService | JiraLinkedService | MagentoLinkedService | MariaDBLinkedService | AzureMariaDBLinkedService | MarketoLinkedService | PaypalLinkedService | PhoenixLinkedService | PrestoLinkedService | QuickBooksLinkedService | ServiceNowLinkedService | ShopifyLinkedService | SparkLinkedService | SquareLinkedService | XeroLinkedService | ZohoLinkedService | VerticaLinkedService | NetezzaLinkedService | SalesforceMarketingCloudLinkedService | HDInsightOnDemandLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDatabricksLinkedService | AzureDatabricksDeltaLakeLinkedService | ResponsysLinkedService | DynamicsAXLinkedService | OracleServiceCloudLinkedService | GoogleAdWordsLinkedService | SapTableLinkedService | AzureDataExplorerLinkedService | AzureFunctionLinkedService | SnowflakeLinkedService | SharePointOnlineListLinkedService | AzureSynapseArtifactsLinkedService | LakeHouseLinkedService | SalesforceV2LinkedService | SalesforceServiceCloudV2LinkedService;
|
|
8452
8468
|
|
|
8453
8469
|
/** Log location settings. */
|
|
8454
8470
|
export declare interface LogLocationSettings {
|
|
@@ -9047,10 +9063,20 @@ export declare type MappingType = string;
|
|
|
9047
9063
|
export declare interface MariaDBLinkedService extends LinkedService {
|
|
9048
9064
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
9049
9065
|
type: "MariaDB";
|
|
9066
|
+
/** The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. */
|
|
9067
|
+
driverVersion?: any;
|
|
9050
9068
|
/** An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
9051
9069
|
connectionString?: any;
|
|
9070
|
+
/** Server name for connection. Type: string. */
|
|
9071
|
+
server?: any;
|
|
9072
|
+
/** The port for the connection. Type: integer. */
|
|
9073
|
+
port?: any;
|
|
9074
|
+
/** Username for authentication. Type: string. */
|
|
9075
|
+
username?: any;
|
|
9076
|
+
/** Database name for connection. Type: string. */
|
|
9077
|
+
database?: any;
|
|
9052
9078
|
/** The Azure key vault secret reference of password in connection string. */
|
|
9053
|
-
|
|
9079
|
+
password?: AzureKeyVaultSecretReference;
|
|
9054
9080
|
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
9055
9081
|
encryptedCredential?: string;
|
|
9056
9082
|
}
|
|
@@ -9327,8 +9353,22 @@ export declare type MultiplePipelineTriggerUnion = MultiplePipelineTrigger | Sch
|
|
|
9327
9353
|
export declare interface MySqlLinkedService extends LinkedService {
|
|
9328
9354
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
9329
9355
|
type: "MySql";
|
|
9356
|
+
/** The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. */
|
|
9357
|
+
driverVersion?: any;
|
|
9330
9358
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
9331
|
-
connectionString
|
|
9359
|
+
connectionString?: any;
|
|
9360
|
+
/** Server name for connection. Type: string. */
|
|
9361
|
+
server?: any;
|
|
9362
|
+
/** The port for the connection. Type: integer. */
|
|
9363
|
+
port?: any;
|
|
9364
|
+
/** Username for authentication. Type: string. */
|
|
9365
|
+
username?: any;
|
|
9366
|
+
/** Database name for connection. Type: string. */
|
|
9367
|
+
database?: any;
|
|
9368
|
+
/** SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full. */
|
|
9369
|
+
sslMode?: any;
|
|
9370
|
+
/** Use system trust store for connection. Type: integer. 0: enable, 1: disable. */
|
|
9371
|
+
useSystemTrustStore?: any;
|
|
9332
9372
|
/** The Azure key vault secret reference of password in connection string. */
|
|
9333
9373
|
password?: AzureKeyVaultSecretReference;
|
|
9334
9374
|
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
@@ -9472,7 +9512,7 @@ export declare interface ODataLinkedService extends LinkedService {
|
|
|
9472
9512
|
userName?: any;
|
|
9473
9513
|
/** Password of the OData service. */
|
|
9474
9514
|
password?: SecretBaseUnion;
|
|
9475
|
-
/** The additional HTTP headers in the request to RESTful API used for authorization. Type:
|
|
9515
|
+
/** The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type). */
|
|
9476
9516
|
authHeaders?: any;
|
|
9477
9517
|
/** Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string). */
|
|
9478
9518
|
tenant?: any;
|
|
@@ -11089,13 +11129,13 @@ export declare interface RestSink extends CopySink {
|
|
|
11089
11129
|
type: "RestSink";
|
|
11090
11130
|
/** The HTTP method used to call the RESTful API. The default is POST. Type: string (or Expression with resultType string). */
|
|
11091
11131
|
requestMethod?: any;
|
|
11092
|
-
/** The additional HTTP headers in the request to the RESTful API. Type:
|
|
11132
|
+
/** The additional HTTP headers in the request to the RESTful API. Type: key value pairs (value should be string type). */
|
|
11093
11133
|
additionalHeaders?: any;
|
|
11094
11134
|
/** The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:01:40. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
|
|
11095
11135
|
httpRequestTimeout?: any;
|
|
11096
11136
|
/** The time to await before sending next request, in milliseconds */
|
|
11097
11137
|
requestInterval?: any;
|
|
11098
|
-
/** Http Compression Type to Send data in compressed format with Optimal Compression Level, Default is None. And The Only Supported option is Gzip. */
|
|
11138
|
+
/** Http Compression Type to Send data in compressed format with Optimal Compression Level, Default is None. And The Only Supported option is Gzip. Type: string (or Expression with resultType string). */
|
|
11099
11139
|
httpCompressionType?: any;
|
|
11100
11140
|
}
|
|
11101
11141
|
|
|
@@ -11115,7 +11155,7 @@ export declare interface RestSource extends CopySource {
|
|
|
11115
11155
|
httpRequestTimeout?: any;
|
|
11116
11156
|
/** The time to await before sending next page request. */
|
|
11117
11157
|
requestInterval?: any;
|
|
11118
|
-
/** Specifies the additional columns to be added to source data. Type:
|
|
11158
|
+
/** Specifies the additional columns to be added to source data. Type: key value pairs (value should be string type). */
|
|
11119
11159
|
additionalColumns?: any;
|
|
11120
11160
|
}
|
|
11121
11161
|
|
|
@@ -11332,6 +11372,56 @@ export declare interface SalesforceServiceCloudSource extends CopySource {
|
|
|
11332
11372
|
additionalColumns?: any;
|
|
11333
11373
|
}
|
|
11334
11374
|
|
|
11375
|
+
/** Linked service for Salesforce Service Cloud V2. */
|
|
11376
|
+
export declare interface SalesforceServiceCloudV2LinkedService extends LinkedService {
|
|
11377
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
11378
|
+
type: "SalesforceServiceCloudV2";
|
|
11379
|
+
/** The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string). */
|
|
11380
|
+
environmentUrl?: any;
|
|
11381
|
+
/** The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string). */
|
|
11382
|
+
clientId?: any;
|
|
11383
|
+
/** The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. */
|
|
11384
|
+
clientSecret?: SecretBaseUnion;
|
|
11385
|
+
/** The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string). */
|
|
11386
|
+
apiVersion?: any;
|
|
11387
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
11388
|
+
encryptedCredential?: string;
|
|
11389
|
+
}
|
|
11390
|
+
|
|
11391
|
+
/** The Salesforce Service Cloud V2 object dataset. */
|
|
11392
|
+
export declare interface SalesforceServiceCloudV2ObjectDataset extends Dataset {
|
|
11393
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
11394
|
+
type: "SalesforceServiceCloudV2Object";
|
|
11395
|
+
/** The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string). */
|
|
11396
|
+
objectApiName?: any;
|
|
11397
|
+
/** The Salesforce Service Cloud V2 reportId. Type: string (or Expression with resultType string). */
|
|
11398
|
+
reportId?: any;
|
|
11399
|
+
}
|
|
11400
|
+
|
|
11401
|
+
/** A copy activity Salesforce Service Cloud V2 sink. */
|
|
11402
|
+
export declare interface SalesforceServiceCloudV2Sink extends CopySink {
|
|
11403
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
11404
|
+
type: "SalesforceServiceCloudV2Sink";
|
|
11405
|
+
/** The write behavior for the operation. Default is Insert. */
|
|
11406
|
+
writeBehavior?: SalesforceV2SinkWriteBehavior;
|
|
11407
|
+
/** The name of the external ID field for upsert operation. Default value is 'Id' column. Type: string (or Expression with resultType string). */
|
|
11408
|
+
externalIdFieldName?: any;
|
|
11409
|
+
/** The flag indicating whether or not to ignore null values from input dataset (except key fields) during write operation. Default value is false. If set it to true, it means ADF will leave the data in the destination object unchanged when doing upsert/update operation and insert defined default value when doing insert operation, versus ADF will update the data in the destination object to NULL when doing upsert/update operation and insert NULL value when doing insert operation. Type: boolean (or Expression with resultType boolean). */
|
|
11410
|
+
ignoreNullValues?: any;
|
|
11411
|
+
}
|
|
11412
|
+
|
|
11413
|
+
/** A copy activity Salesforce Service Cloud V2 source. */
|
|
11414
|
+
export declare interface SalesforceServiceCloudV2Source extends CopySource {
|
|
11415
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
11416
|
+
type: "SalesforceServiceCloudV2Source";
|
|
11417
|
+
/** Database query. Type: string (or Expression with resultType string). */
|
|
11418
|
+
soqlQuery?: any;
|
|
11419
|
+
/** The read behavior for the operation. Default is query. Allowed values: query/queryAll. Type: string (or Expression with resultType string). */
|
|
11420
|
+
readBehavior?: any;
|
|
11421
|
+
/** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
|
|
11422
|
+
additionalColumns?: any;
|
|
11423
|
+
}
|
|
11424
|
+
|
|
11335
11425
|
/** A copy activity Salesforce sink. */
|
|
11336
11426
|
export declare interface SalesforceSink extends CopySink {
|
|
11337
11427
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -11374,6 +11464,74 @@ export declare interface SalesforceSource extends TabularSource {
|
|
|
11374
11464
|
*/
|
|
11375
11465
|
export declare type SalesforceSourceReadBehavior = string;
|
|
11376
11466
|
|
|
11467
|
+
/** Linked service for Salesforce V2. */
|
|
11468
|
+
export declare interface SalesforceV2LinkedService extends LinkedService {
|
|
11469
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
11470
|
+
type: "SalesforceV2";
|
|
11471
|
+
/** The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string). */
|
|
11472
|
+
environmentUrl?: any;
|
|
11473
|
+
/** The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string). */
|
|
11474
|
+
clientId?: any;
|
|
11475
|
+
/** The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. */
|
|
11476
|
+
clientSecret?: SecretBaseUnion;
|
|
11477
|
+
/** The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string). */
|
|
11478
|
+
apiVersion?: any;
|
|
11479
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
11480
|
+
encryptedCredential?: string;
|
|
11481
|
+
}
|
|
11482
|
+
|
|
11483
|
+
/** The Salesforce V2 object dataset. */
|
|
11484
|
+
export declare interface SalesforceV2ObjectDataset extends Dataset {
|
|
11485
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
11486
|
+
type: "SalesforceV2Object";
|
|
11487
|
+
/** The Salesforce V2 object API name. Type: string (or Expression with resultType string). */
|
|
11488
|
+
objectApiName?: any;
|
|
11489
|
+
/** The Salesforce V2 report Id. Type: string (or Expression with resultType string). */
|
|
11490
|
+
reportId?: any;
|
|
11491
|
+
}
|
|
11492
|
+
|
|
11493
|
+
/** A copy activity Salesforce V2 sink. */
|
|
11494
|
+
export declare interface SalesforceV2Sink extends CopySink {
|
|
11495
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
11496
|
+
type: "SalesforceV2Sink";
|
|
11497
|
+
/** The write behavior for the operation. Default is Insert. */
|
|
11498
|
+
writeBehavior?: SalesforceV2SinkWriteBehavior;
|
|
11499
|
+
/** The name of the external ID field for upsert operation. Default value is 'Id' column. Type: string (or Expression with resultType string). */
|
|
11500
|
+
externalIdFieldName?: any;
|
|
11501
|
+
/** The flag indicating whether or not to ignore null values from input dataset (except key fields) during write operation. Default value is false. If set it to true, it means ADF will leave the data in the destination object unchanged when doing upsert/update operation and insert defined default value when doing insert operation, versus ADF will update the data in the destination object to NULL when doing upsert/update operation and insert NULL value when doing insert operation. Type: boolean (or Expression with resultType boolean). */
|
|
11502
|
+
ignoreNullValues?: any;
|
|
11503
|
+
}
|
|
11504
|
+
|
|
11505
|
+
/**
|
|
11506
|
+
* Defines values for SalesforceV2SinkWriteBehavior. \
|
|
11507
|
+
* {@link KnownSalesforceV2SinkWriteBehavior} can be used interchangeably with SalesforceV2SinkWriteBehavior,
|
|
11508
|
+
* this enum contains the known values that the service supports.
|
|
11509
|
+
* ### Known values supported by the service
|
|
11510
|
+
* **Insert** \
|
|
11511
|
+
* **Upsert**
|
|
11512
|
+
*/
|
|
11513
|
+
export declare type SalesforceV2SinkWriteBehavior = string;
|
|
11514
|
+
|
|
11515
|
+
/** A copy activity Salesforce V2 source. */
|
|
11516
|
+
export declare interface SalesforceV2Source extends TabularSource {
|
|
11517
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
11518
|
+
type: "SalesforceV2Source";
|
|
11519
|
+
/** Database query. Type: string (or Expression with resultType string). */
|
|
11520
|
+
soqlQuery?: any;
|
|
11521
|
+
/** The read behavior for the operation. Default is query. Allowed values: query/queryAll. Type: string (or Expression with resultType string). */
|
|
11522
|
+
readBehavior?: any;
|
|
11523
|
+
}
|
|
11524
|
+
|
|
11525
|
+
/**
|
|
11526
|
+
* Defines values for SalesforceV2SourceReadBehavior. \
|
|
11527
|
+
* {@link KnownSalesforceV2SourceReadBehavior} can be used interchangeably with SalesforceV2SourceReadBehavior,
|
|
11528
|
+
* this enum contains the known values that the service supports.
|
|
11529
|
+
* ### Known values supported by the service
|
|
11530
|
+
* **query** \
|
|
11531
|
+
* **queryAll**
|
|
11532
|
+
*/
|
|
11533
|
+
export declare type SalesforceV2SourceReadBehavior = string;
|
|
11534
|
+
|
|
11377
11535
|
/** The SAP BW cube dataset. */
|
|
11378
11536
|
export declare interface SapBwCubeDataset extends Dataset {
|
|
11379
11537
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -12650,7 +12808,7 @@ export declare interface SqlDWSource extends TabularSource {
|
|
|
12650
12808
|
storedProcedureParameters?: any;
|
|
12651
12809
|
/** Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string). */
|
|
12652
12810
|
isolationLevel?: any;
|
|
12653
|
-
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
12811
|
+
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string). */
|
|
12654
12812
|
partitionOption?: any;
|
|
12655
12813
|
/** The settings that will be leveraged for Sql source partitioning. */
|
|
12656
12814
|
partitionSettings?: SqlPartitionSettings;
|
|
@@ -12692,7 +12850,7 @@ export declare interface SqlMISink extends CopySink {
|
|
|
12692
12850
|
tableOption?: any;
|
|
12693
12851
|
/** Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean). */
|
|
12694
12852
|
sqlWriterUseTableLock?: any;
|
|
12695
|
-
/** White behavior when copying data into azure SQL MI. Type:
|
|
12853
|
+
/** White behavior when copying data into azure SQL MI. Type: string (or Expression with resultType string) */
|
|
12696
12854
|
writeBehavior?: any;
|
|
12697
12855
|
/** SQL upsert settings. */
|
|
12698
12856
|
upsertSettings?: SqlUpsertSettings;
|
|
@@ -12712,7 +12870,7 @@ export declare interface SqlMISource extends TabularSource {
|
|
|
12712
12870
|
isolationLevel?: any;
|
|
12713
12871
|
/** Which additional types to produce. */
|
|
12714
12872
|
produceAdditionalTypes?: any;
|
|
12715
|
-
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
12873
|
+
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string). */
|
|
12716
12874
|
partitionOption?: any;
|
|
12717
12875
|
/** The settings that will be leveraged for Sql source partitioning. */
|
|
12718
12876
|
partitionSettings?: SqlPartitionSettings;
|
|
@@ -12773,7 +12931,7 @@ export declare interface SqlServerSink extends CopySink {
|
|
|
12773
12931
|
tableOption?: any;
|
|
12774
12932
|
/** Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean). */
|
|
12775
12933
|
sqlWriterUseTableLock?: any;
|
|
12776
|
-
/** Write behavior when copying data into sql server. Type:
|
|
12934
|
+
/** Write behavior when copying data into sql server. Type: string (or Expression with resultType string). */
|
|
12777
12935
|
writeBehavior?: any;
|
|
12778
12936
|
/** SQL upsert settings. */
|
|
12779
12937
|
upsertSettings?: SqlUpsertSettings;
|
|
@@ -12793,7 +12951,7 @@ export declare interface SqlServerSource extends TabularSource {
|
|
|
12793
12951
|
isolationLevel?: any;
|
|
12794
12952
|
/** Which additional types to produce. */
|
|
12795
12953
|
produceAdditionalTypes?: any;
|
|
12796
|
-
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
12954
|
+
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string). */
|
|
12797
12955
|
partitionOption?: any;
|
|
12798
12956
|
/** The settings that will be leveraged for Sql source partitioning. */
|
|
12799
12957
|
partitionSettings?: SqlPartitionSettings;
|
|
@@ -12839,7 +12997,7 @@ export declare interface SqlSink extends CopySink {
|
|
|
12839
12997
|
tableOption?: any;
|
|
12840
12998
|
/** Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean). */
|
|
12841
12999
|
sqlWriterUseTableLock?: any;
|
|
12842
|
-
/** Write behavior when copying data into sql. Type:
|
|
13000
|
+
/** Write behavior when copying data into sql. Type: string (or Expression with resultType string). */
|
|
12843
13001
|
writeBehavior?: any;
|
|
12844
13002
|
/** SQL upsert settings. */
|
|
12845
13003
|
upsertSettings?: SqlUpsertSettings;
|
|
@@ -12857,7 +13015,7 @@ export declare interface SqlSource extends TabularSource {
|
|
|
12857
13015
|
storedProcedureParameters?: any;
|
|
12858
13016
|
/** Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string). */
|
|
12859
13017
|
isolationLevel?: any;
|
|
12860
|
-
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
13018
|
+
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string). */
|
|
12861
13019
|
partitionOption?: any;
|
|
12862
13020
|
/** The settings that will be leveraged for Sql source partitioning. */
|
|
12863
13021
|
partitionSettings?: SqlPartitionSettings;
|
|
@@ -13236,6 +13394,8 @@ export declare interface StoreWriteSettings {
|
|
|
13236
13394
|
disableMetricsCollection?: any;
|
|
13237
13395
|
/** The type of copy behavior for copy sink. */
|
|
13238
13396
|
copyBehavior?: any;
|
|
13397
|
+
/** Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects). */
|
|
13398
|
+
metadata?: MetadataItem[];
|
|
13239
13399
|
}
|
|
13240
13400
|
|
|
13241
13401
|
export declare type StoreWriteSettingsUnion = StoreWriteSettings | SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings | LakeHouseWriteSettings;
|
|
@@ -13425,14 +13585,14 @@ export declare interface SynapseSparkJobReference {
|
|
|
13425
13585
|
/** Copy activity sources of tabular type. */
|
|
13426
13586
|
export declare interface TabularSource extends CopySource {
|
|
13427
13587
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
13428
|
-
type: "TabularSource" | "AzureTableSource" | "InformixSource" | "Db2Source" | "OdbcSource" | "MySqlSource" | "PostgreSqlSource" | "SybaseSource" | "SapBwSource" | "SalesforceSource" | "SapCloudForCustomerSource" | "SapEccSource" | "SapHanaSource" | "SapOpenHubSource" | "SapOdpSource" | "SapTableSource" | "SqlSource" | "SqlServerSource" | "AmazonRdsForSqlServerSource" | "AzureSqlSource" | "SqlMISource" | "SqlDWSource" | "AzureMySqlSource" | "TeradataSource" | "CassandraSource" | "AmazonMWSSource" | "AzurePostgreSqlSource" | "ConcurSource" | "CouchbaseSource" | "DrillSource" | "EloquaSource" | "GoogleBigQuerySource" | "GreenplumSource" | "HBaseSource" | "HiveSource" | "HubspotSource" | "ImpalaSource" | "JiraSource" | "MagentoSource" | "MariaDBSource" | "AzureMariaDBSource" | "MarketoSource" | "PaypalSource" | "PhoenixSource" | "PrestoSource" | "QuickBooksSource" | "ServiceNowSource" | "ShopifySource" | "SparkSource" | "SquareSource" | "XeroSource" | "ZohoSource" | "NetezzaSource" | "VerticaSource" | "SalesforceMarketingCloudSource" | "ResponsysSource" | "DynamicsAXSource" | "OracleServiceCloudSource" | "GoogleAdWordsSource" | "AmazonRedshiftSource";
|
|
13588
|
+
type: "TabularSource" | "AzureTableSource" | "InformixSource" | "Db2Source" | "OdbcSource" | "MySqlSource" | "PostgreSqlSource" | "SybaseSource" | "SapBwSource" | "SalesforceSource" | "SapCloudForCustomerSource" | "SapEccSource" | "SapHanaSource" | "SapOpenHubSource" | "SapOdpSource" | "SapTableSource" | "SqlSource" | "SqlServerSource" | "AmazonRdsForSqlServerSource" | "AzureSqlSource" | "SqlMISource" | "SqlDWSource" | "AzureMySqlSource" | "TeradataSource" | "CassandraSource" | "AmazonMWSSource" | "AzurePostgreSqlSource" | "ConcurSource" | "CouchbaseSource" | "DrillSource" | "EloquaSource" | "GoogleBigQuerySource" | "GreenplumSource" | "HBaseSource" | "HiveSource" | "HubspotSource" | "ImpalaSource" | "JiraSource" | "MagentoSource" | "MariaDBSource" | "AzureMariaDBSource" | "MarketoSource" | "PaypalSource" | "PhoenixSource" | "PrestoSource" | "QuickBooksSource" | "ServiceNowSource" | "ShopifySource" | "SparkSource" | "SquareSource" | "XeroSource" | "ZohoSource" | "NetezzaSource" | "VerticaSource" | "SalesforceMarketingCloudSource" | "ResponsysSource" | "DynamicsAXSource" | "OracleServiceCloudSource" | "GoogleAdWordsSource" | "AmazonRedshiftSource" | "SalesforceV2Source";
|
|
13429
13589
|
/** Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
|
|
13430
13590
|
queryTimeout?: any;
|
|
13431
13591
|
/** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
|
|
13432
13592
|
additionalColumns?: any;
|
|
13433
13593
|
}
|
|
13434
13594
|
|
|
13435
|
-
export declare type TabularSourceUnion = TabularSource | AzureTableSource | InformixSource | Db2Source | OdbcSource | MySqlSource | PostgreSqlSource | SybaseSource | SapBwSource | SalesforceSource | SapCloudForCustomerSource | SapEccSource | SapHanaSource | SapOpenHubSource | SapOdpSource | SapTableSource | SqlSource | SqlServerSource | AmazonRdsForSqlServerSource | AzureSqlSource | SqlMISource | SqlDWSource | AzureMySqlSource | TeradataSource | CassandraSource | AmazonMWSSource | AzurePostgreSqlSource | ConcurSource | CouchbaseSource | DrillSource | EloquaSource | GoogleBigQuerySource | GreenplumSource | HBaseSource | HiveSource | HubspotSource | ImpalaSource | JiraSource | MagentoSource | MariaDBSource | AzureMariaDBSource | MarketoSource | PaypalSource | PhoenixSource | PrestoSource | QuickBooksSource | ServiceNowSource | ShopifySource | SparkSource | SquareSource | XeroSource | ZohoSource | NetezzaSource | VerticaSource | SalesforceMarketingCloudSource | ResponsysSource | DynamicsAXSource | OracleServiceCloudSource | GoogleAdWordsSource | AmazonRedshiftSource;
|
|
13595
|
+
export declare type TabularSourceUnion = TabularSource | AzureTableSource | InformixSource | Db2Source | OdbcSource | MySqlSource | PostgreSqlSource | SybaseSource | SapBwSource | SalesforceSource | SapCloudForCustomerSource | SapEccSource | SapHanaSource | SapOpenHubSource | SapOdpSource | SapTableSource | SqlSource | SqlServerSource | AmazonRdsForSqlServerSource | AzureSqlSource | SqlMISource | SqlDWSource | AzureMySqlSource | TeradataSource | CassandraSource | AmazonMWSSource | AzurePostgreSqlSource | ConcurSource | CouchbaseSource | DrillSource | EloquaSource | GoogleBigQuerySource | GreenplumSource | HBaseSource | HiveSource | HubspotSource | ImpalaSource | JiraSource | MagentoSource | MariaDBSource | AzureMariaDBSource | MarketoSource | PaypalSource | PhoenixSource | PrestoSource | QuickBooksSource | ServiceNowSource | ShopifySource | SparkSource | SquareSource | XeroSource | ZohoSource | NetezzaSource | VerticaSource | SalesforceMarketingCloudSource | ResponsysSource | DynamicsAXSource | OracleServiceCloudSource | GoogleAdWordsSource | AmazonRedshiftSource | SalesforceV2Source;
|
|
13436
13596
|
|
|
13437
13597
|
/** A copy activity tabular translator. */
|
|
13438
13598
|
export declare interface TabularTranslator extends CopyTranslator {
|
|
@@ -14261,7 +14421,7 @@ export declare interface WebActivity extends ExecutionActivity {
|
|
|
14261
14421
|
method: WebActivityMethod;
|
|
14262
14422
|
/** Web activity target endpoint and path. Type: string (or Expression with resultType string). */
|
|
14263
14423
|
url: any;
|
|
14264
|
-
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type:
|
|
14424
|
+
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: dictionary (or Expression with resultType dictionary). */
|
|
14265
14425
|
headers?: any;
|
|
14266
14426
|
/** Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string). */
|
|
14267
14427
|
body?: any;
|
|
@@ -14269,6 +14429,10 @@ export declare interface WebActivity extends ExecutionActivity {
|
|
|
14269
14429
|
authentication?: WebActivityAuthentication;
|
|
14270
14430
|
/** When set to true, Certificate validation will be disabled. */
|
|
14271
14431
|
disableCertValidation?: boolean;
|
|
14432
|
+
/** Timeout for the HTTP request to get a response. Format is in TimeSpan (hh:mm:ss). This value is the timeout to get a response, not the activity timeout. The default value is 00:01:00 (1 minute). The range is from 1 to 10 minutes */
|
|
14433
|
+
httpRequestTimeout?: any;
|
|
14434
|
+
/** Option to disable invoking HTTP GET on location given in response header of a HTTP 202 Response. If set true, it stops invoking HTTP GET on http location given in response header. If set false then continues to invoke HTTP GET call on location given in http response headers. */
|
|
14435
|
+
turnOffAsync?: boolean;
|
|
14272
14436
|
/** List of datasets passed to web endpoint. */
|
|
14273
14437
|
datasets?: DatasetReference[];
|
|
14274
14438
|
/** List of linked services passed to web endpoint. */
|
|
@@ -14356,7 +14520,7 @@ export declare interface WebHookActivity extends ControlActivity {
|
|
|
14356
14520
|
url: any;
|
|
14357
14521
|
/** The timeout within which the webhook should be called back. If there is no value specified, it defaults to 10 minutes. Type: string. Pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
|
|
14358
14522
|
timeout?: string;
|
|
14359
|
-
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type:
|
|
14523
|
+
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: dictionary (or Expression with resultType dictionary). */
|
|
14360
14524
|
headers?: any;
|
|
14361
14525
|
/** Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string). */
|
|
14362
14526
|
body?: any;
|