@azure/arm-datafactory 11.1.1-alpha.20231113.1 → 12.0.0-alpha.20231121.1
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 +273 -8
- package/dist/index.js +2077 -727
- 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/changeDataCaptureCreateOrUpdateSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.js +75 -0
- package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.js +55 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.js.map +1 -0
- package/dist-esm/src/dataFactoryManagementClient.d.ts +2 -1
- package/dist-esm/src/dataFactoryManagementClient.d.ts.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +3 -2
- package/dist-esm/src/dataFactoryManagementClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +787 -361
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +58 -22
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +36 -1
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +1063 -141
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.d.ts +2 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -1
- package/dist-esm/src/models/parameters.js +20 -1
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/changeDataCapture.d.ts +87 -0
- package/dist-esm/src/operations/changeDataCapture.d.ts.map +1 -0
- package/dist-esm/src/operations/changeDataCapture.js +350 -0
- package/dist-esm/src/operations/changeDataCapture.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +1 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -1
- package/dist-esm/src/operations/index.js +1 -0
- package/dist-esm/src/operations/index.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/changeDataCapture.d.ts +62 -0
- package/dist-esm/src/operationsInterfaces/changeDataCapture.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/changeDataCapture.js +9 -0
- package/dist-esm/src/operationsInterfaces/changeDataCapture.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -1
- package/dist-esm/src/operationsInterfaces/index.js +1 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.js +1 -1
- package/package.json +8 -6
- package/review/arm-datafactory.api.md +480 -150
- package/src/dataFactoryManagementClient.ts +7 -3
- package/src/models/index.ts +848 -364
- package/src/models/mappers.ts +1176 -155
- package/src/models/parameters.ts +23 -1
- package/src/operations/changeDataCapture.ts +472 -0
- package/src/operations/index.ts +1 -0
- package/src/operationsInterfaces/changeDataCapture.ts +118 -0
- package/src/operationsInterfaces/index.ts +1 -0
- package/types/arm-datafactory.d.ts +862 -327
|
@@ -3,25 +3,25 @@ export type FactoryRepoConfigurationUnion = FactoryRepoConfiguration | FactoryVs
|
|
|
3
3
|
export type IntegrationRuntimeUnion = IntegrationRuntime | ManagedIntegrationRuntime | SelfHostedIntegrationRuntime;
|
|
4
4
|
export type IntegrationRuntimeStatusUnion = IntegrationRuntimeStatus | ManagedIntegrationRuntimeStatus | SelfHostedIntegrationRuntimeStatus;
|
|
5
5
|
export type SsisObjectMetadataUnion = SsisObjectMetadata | SsisFolder | SsisProject | SsisPackage | SsisEnvironment;
|
|
6
|
-
export 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;
|
|
7
|
-
export 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;
|
|
6
|
+
export 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;
|
|
7
|
+
export 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;
|
|
8
8
|
export type ActivityUnion = Activity | ControlActivityUnion | ExecutionActivityUnion | ExecuteWranglingDataflowActivity;
|
|
9
9
|
export type TriggerUnion = Trigger | MultiplePipelineTriggerUnion | TumblingWindowTrigger | RerunTumblingWindowTrigger | ChainingTrigger;
|
|
10
10
|
export type DataFlowUnion = DataFlow | MappingDataFlow | Flowlet | WranglingDataFlow;
|
|
11
11
|
export type CredentialUnion = Credential | ManagedIdentityCredential | ServicePrincipalCredential;
|
|
12
12
|
export type SecretBaseUnion = SecretBase | SecureString | AzureKeyVaultSecretReference;
|
|
13
|
-
export type DatasetLocationUnion = DatasetLocation | AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation;
|
|
13
|
+
export type DatasetLocationUnion = DatasetLocation | AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation | LakeHouseLocation;
|
|
14
14
|
export type DatasetStorageFormatUnion = DatasetStorageFormat | TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat;
|
|
15
15
|
export type CustomSetupBaseUnion = CustomSetupBase | CmdkeySetup | EnvironmentVariableSetup | ComponentSetup | AzPowerShellSetup;
|
|
16
16
|
export type LinkedIntegrationRuntimeTypeUnion = LinkedIntegrationRuntimeType | LinkedIntegrationRuntimeKeyAuthorization | LinkedIntegrationRuntimeRbacAuthorization;
|
|
17
17
|
export type WebLinkedServiceTypePropertiesUnion = WebLinkedServiceTypeProperties | WebAnonymousAuthentication | WebBasicAuthentication | WebClientCertificateAuthentication;
|
|
18
|
-
export type StoreReadSettingsUnion = StoreReadSettings | AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings;
|
|
19
|
-
export type StoreWriteSettingsUnion = StoreWriteSettings | SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings;
|
|
20
|
-
export type FormatReadSettingsUnion = FormatReadSettings | DelimitedTextReadSettings | JsonReadSettings | XmlReadSettings | BinaryReadSettings;
|
|
18
|
+
export type StoreReadSettingsUnion = StoreReadSettings | AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings | LakeHouseReadSettings;
|
|
19
|
+
export type StoreWriteSettingsUnion = StoreWriteSettings | SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings | LakeHouseWriteSettings;
|
|
20
|
+
export type FormatReadSettingsUnion = FormatReadSettings | ParquetReadSettings | DelimitedTextReadSettings | JsonReadSettings | XmlReadSettings | BinaryReadSettings;
|
|
21
21
|
export type CompressionReadSettingsUnion = CompressionReadSettings | ZipDeflateReadSettings | TarReadSettings | TarGZipReadSettings;
|
|
22
22
|
export type FormatWriteSettingsUnion = FormatWriteSettings | AvroWriteSettings | OrcWriteSettings | ParquetWriteSettings | DelimitedTextWriteSettings | JsonWriteSettings;
|
|
23
|
-
export 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 | SnowflakeSource | AzureDatabricksDeltaLakeSource | SharePointOnlineListSource;
|
|
24
|
-
export 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;
|
|
23
|
+
export 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;
|
|
24
|
+
export 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;
|
|
25
25
|
export type ExportSettingsUnion = ExportSettings | SnowflakeExportCopyCommand | AzureDatabricksDeltaLakeExportCommand;
|
|
26
26
|
export type ImportSettingsUnion = ImportSettings | AzureDatabricksDeltaLakeImportCommand | SnowflakeImportCopyCommand;
|
|
27
27
|
export type CopyTranslatorUnion = CopyTranslator | TabularTranslator;
|
|
@@ -685,7 +685,7 @@ export interface LinkedServiceListResponse {
|
|
|
685
685
|
/** The nested object which contains the information and credential which can be used to connect with related store or compute resource. */
|
|
686
686
|
export interface LinkedService {
|
|
687
687
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
688
|
-
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";
|
|
688
|
+
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";
|
|
689
689
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
690
690
|
[property: string]: any;
|
|
691
691
|
/** The integration runtime reference. */
|
|
@@ -727,7 +727,7 @@ export interface DatasetListResponse {
|
|
|
727
727
|
/** The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents. */
|
|
728
728
|
export interface Dataset {
|
|
729
729
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
730
|
-
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";
|
|
730
|
+
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";
|
|
731
731
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
732
732
|
[property: string]: any;
|
|
733
733
|
/** Dataset description. */
|
|
@@ -780,6 +780,10 @@ export interface Activity {
|
|
|
780
780
|
name: string;
|
|
781
781
|
/** Activity description. */
|
|
782
782
|
description?: string;
|
|
783
|
+
/** Activity state. This is an optional property and if not provided, the state will be Active by default. */
|
|
784
|
+
state?: ActivityState;
|
|
785
|
+
/** Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default. */
|
|
786
|
+
onInactiveMarkAs?: ActivityOnInactiveMarkAs;
|
|
783
787
|
/** Activity depends on condition. */
|
|
784
788
|
dependsOn?: ActivityDependency[];
|
|
785
789
|
/** Activity user properties. */
|
|
@@ -1481,6 +1485,135 @@ export interface GlobalParameterListResponse {
|
|
|
1481
1485
|
/** The link to the next page of results, if any remaining results exist. */
|
|
1482
1486
|
nextLink?: string;
|
|
1483
1487
|
}
|
|
1488
|
+
/** A list of change data capture resources. */
|
|
1489
|
+
export interface ChangeDataCaptureListResponse {
|
|
1490
|
+
/** Lists all resources of type change data capture. */
|
|
1491
|
+
value: ChangeDataCaptureResource[];
|
|
1492
|
+
/** The link to the next page of results, if any remaining results exist. */
|
|
1493
|
+
nextLink?: string;
|
|
1494
|
+
}
|
|
1495
|
+
/** The folder that this CDC is in. If not specified, CDC will appear at the root level. */
|
|
1496
|
+
export interface ChangeDataCaptureFolder {
|
|
1497
|
+
/** The name of the folder that this CDC is in. */
|
|
1498
|
+
name?: string;
|
|
1499
|
+
}
|
|
1500
|
+
/** A object which contains list of tables and connection details for a source connection. */
|
|
1501
|
+
export interface MapperSourceConnectionsInfo {
|
|
1502
|
+
/** List of source tables for a source connection. */
|
|
1503
|
+
sourceEntities?: MapperTable[];
|
|
1504
|
+
/** Source connection details. */
|
|
1505
|
+
connection?: MapperConnection;
|
|
1506
|
+
}
|
|
1507
|
+
/** CDC table details. */
|
|
1508
|
+
export interface MapperTable {
|
|
1509
|
+
/** Name of the table. */
|
|
1510
|
+
name?: string;
|
|
1511
|
+
/** List of columns for the source table. */
|
|
1512
|
+
schema?: MapperTableSchema[];
|
|
1513
|
+
/** List of name/value pairs for connection properties. */
|
|
1514
|
+
dslConnectorProperties?: MapperDslConnectorProperties[];
|
|
1515
|
+
}
|
|
1516
|
+
/** Schema of a CDC table in terms of column names and their corresponding data types. */
|
|
1517
|
+
export interface MapperTableSchema {
|
|
1518
|
+
/** Name of the column. */
|
|
1519
|
+
name?: string;
|
|
1520
|
+
/** Data type of the column. */
|
|
1521
|
+
dataType?: string;
|
|
1522
|
+
}
|
|
1523
|
+
/** Connector properties of a CDC table in terms of name / value pairs. */
|
|
1524
|
+
export interface MapperDslConnectorProperties {
|
|
1525
|
+
/** Name of the property. */
|
|
1526
|
+
name?: string;
|
|
1527
|
+
/** Value of the property. */
|
|
1528
|
+
value?: any;
|
|
1529
|
+
}
|
|
1530
|
+
/** Source connection details. */
|
|
1531
|
+
export interface MapperConnection {
|
|
1532
|
+
/** Linked service reference. */
|
|
1533
|
+
linkedService?: LinkedServiceReference;
|
|
1534
|
+
/** Type of the linked service e.g.: AzureBlobFS. */
|
|
1535
|
+
linkedServiceType?: string;
|
|
1536
|
+
/** Type of connection via linked service or dataset. */
|
|
1537
|
+
type: ConnectionType;
|
|
1538
|
+
/** A boolean indicating whether linked service is of type inline dataset. Currently only inline datasets are supported. */
|
|
1539
|
+
isInlineDataset?: boolean;
|
|
1540
|
+
/** List of name/value pairs for connection properties. */
|
|
1541
|
+
commonDslConnectorProperties?: MapperDslConnectorProperties[];
|
|
1542
|
+
}
|
|
1543
|
+
/** A object which contains list of tables and connection details for a target connection. */
|
|
1544
|
+
export interface MapperTargetConnectionsInfo {
|
|
1545
|
+
/** List of source tables for a target connection. */
|
|
1546
|
+
targetEntities?: MapperTable[];
|
|
1547
|
+
/** Source connection details. */
|
|
1548
|
+
connection?: MapperConnection;
|
|
1549
|
+
/** List of table mappings. */
|
|
1550
|
+
dataMapperMappings?: DataMapperMapping[];
|
|
1551
|
+
/** List of relationship info among the tables. */
|
|
1552
|
+
relationships?: any[];
|
|
1553
|
+
}
|
|
1554
|
+
/** Source and target table mapping details. */
|
|
1555
|
+
export interface DataMapperMapping {
|
|
1556
|
+
/** Name of the target table */
|
|
1557
|
+
targetEntityName?: string;
|
|
1558
|
+
/** Name of the source table */
|
|
1559
|
+
sourceEntityName?: string;
|
|
1560
|
+
/** The connection reference for the source connection. */
|
|
1561
|
+
sourceConnectionReference?: MapperConnectionReference;
|
|
1562
|
+
/** This holds the user provided attribute mapping information. */
|
|
1563
|
+
attributeMappingInfo?: MapperAttributeMappings;
|
|
1564
|
+
/** This holds the source denormalization information used while joining multiple sources. */
|
|
1565
|
+
sourceDenormalizeInfo?: any;
|
|
1566
|
+
}
|
|
1567
|
+
/** Source or target connection reference details. */
|
|
1568
|
+
export interface MapperConnectionReference {
|
|
1569
|
+
/** Name of the connection */
|
|
1570
|
+
connectionName?: string;
|
|
1571
|
+
/** Type of connection via linked service or dataset. */
|
|
1572
|
+
type?: ConnectionType;
|
|
1573
|
+
}
|
|
1574
|
+
/** Attribute mapping details. */
|
|
1575
|
+
export interface MapperAttributeMappings {
|
|
1576
|
+
/** List of attribute mappings. */
|
|
1577
|
+
attributeMappings?: MapperAttributeMapping[];
|
|
1578
|
+
}
|
|
1579
|
+
/** Source and target column mapping details. */
|
|
1580
|
+
export interface MapperAttributeMapping {
|
|
1581
|
+
/** Name of the target column. */
|
|
1582
|
+
name?: string;
|
|
1583
|
+
/** Type of the CDC attribute mapping. Note: 'Advanced' mapping type is also saved as 'Derived'. */
|
|
1584
|
+
type?: MappingType;
|
|
1585
|
+
/** Name of the function used for 'Aggregate' and 'Derived' (except 'Advanced') type mapping. */
|
|
1586
|
+
functionName?: string;
|
|
1587
|
+
/** Expression used for 'Aggregate' and 'Derived' type mapping. */
|
|
1588
|
+
expression?: string;
|
|
1589
|
+
/** Reference of the source column used in the mapping. It is used for 'Direct' mapping type only. */
|
|
1590
|
+
attributeReference?: MapperAttributeReference;
|
|
1591
|
+
/** List of references for source columns. It is used for 'Derived' and 'Aggregate' type mappings only. */
|
|
1592
|
+
attributeReferences?: MapperAttributeReference[];
|
|
1593
|
+
}
|
|
1594
|
+
/** Attribute reference details for the referred column. */
|
|
1595
|
+
export interface MapperAttributeReference {
|
|
1596
|
+
/** Name of the column. */
|
|
1597
|
+
name?: string;
|
|
1598
|
+
/** Name of the table. */
|
|
1599
|
+
entity?: string;
|
|
1600
|
+
/** The connection reference for the connection. */
|
|
1601
|
+
entityConnectionReference?: MapperConnectionReference;
|
|
1602
|
+
}
|
|
1603
|
+
/** CDC Policy. */
|
|
1604
|
+
export interface MapperPolicy {
|
|
1605
|
+
/** Mode of running the CDC: batch vs continuous. */
|
|
1606
|
+
mode?: string;
|
|
1607
|
+
/** Defines the frequency and interval for running the CDC for batch mode. */
|
|
1608
|
+
recurrence?: MapperPolicyRecurrence;
|
|
1609
|
+
}
|
|
1610
|
+
/** CDC policy recurrence details. */
|
|
1611
|
+
export interface MapperPolicyRecurrence {
|
|
1612
|
+
/** Frequency of period in terms of 'Hour', 'Minute' or 'Second'. */
|
|
1613
|
+
frequency?: FrequencyType;
|
|
1614
|
+
/** Actual interval value as per chosen frequency. */
|
|
1615
|
+
interval?: number;
|
|
1616
|
+
}
|
|
1484
1617
|
/** Azure Data Factory expression definition. */
|
|
1485
1618
|
export interface Expression {
|
|
1486
1619
|
/** Expression type. */
|
|
@@ -1583,7 +1716,7 @@ export interface Transformation {
|
|
|
1583
1716
|
/** Dataset location. */
|
|
1584
1717
|
export interface DatasetLocation {
|
|
1585
1718
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1586
|
-
type: "AzureBlobStorageLocation" | "AzureBlobFSLocation" | "AzureDataLakeStoreLocation" | "AmazonS3Location" | "FileServerLocation" | "AzureFileStorageLocation" | "AmazonS3CompatibleLocation" | "OracleCloudStorageLocation" | "GoogleCloudStorageLocation" | "FtpServerLocation" | "SftpLocation" | "HttpServerLocation" | "HdfsLocation";
|
|
1719
|
+
type: "AzureBlobStorageLocation" | "AzureBlobFSLocation" | "AzureDataLakeStoreLocation" | "AmazonS3Location" | "FileServerLocation" | "AzureFileStorageLocation" | "AmazonS3CompatibleLocation" | "OracleCloudStorageLocation" | "GoogleCloudStorageLocation" | "FtpServerLocation" | "SftpLocation" | "HttpServerLocation" | "HdfsLocation" | "LakeHouseLocation";
|
|
1587
1720
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
1588
1721
|
[property: string]: any;
|
|
1589
1722
|
/** Specify the folder path of dataset. Type: string (or Expression with resultType string) */
|
|
@@ -1660,6 +1793,14 @@ export interface IntegrationRuntimeDataFlowProperties {
|
|
|
1660
1793
|
timeToLive?: number;
|
|
1661
1794
|
/** Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true. */
|
|
1662
1795
|
cleanup?: boolean;
|
|
1796
|
+
/** Custom properties are used to tune the data flow runtime performance. */
|
|
1797
|
+
customProperties?: IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem[];
|
|
1798
|
+
}
|
|
1799
|
+
export interface IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem {
|
|
1800
|
+
/** Name of custom property. */
|
|
1801
|
+
name?: string;
|
|
1802
|
+
/** Value of custom property. */
|
|
1803
|
+
value?: string;
|
|
1663
1804
|
}
|
|
1664
1805
|
/** VNet properties for managed integration runtime. */
|
|
1665
1806
|
export interface IntegrationRuntimeVNetProperties {
|
|
@@ -1689,6 +1830,10 @@ export interface PipelineExternalComputeScaleProperties {
|
|
|
1689
1830
|
[property: string]: any;
|
|
1690
1831
|
/** Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity. */
|
|
1691
1832
|
timeToLive?: number;
|
|
1833
|
+
/** Number of the pipeline nodes, which should be greater than 0 and less than 11. */
|
|
1834
|
+
numberOfPipelineNodes?: number;
|
|
1835
|
+
/** Number of the the external nodes, which should be greater than 0 and less than 11. */
|
|
1836
|
+
numberOfExternalNodes?: number;
|
|
1692
1837
|
}
|
|
1693
1838
|
/** SSIS properties for managed integration runtime. */
|
|
1694
1839
|
export interface IntegrationRuntimeSsisProperties {
|
|
@@ -1933,7 +2078,7 @@ export interface SsisVariable {
|
|
|
1933
2078
|
}
|
|
1934
2079
|
/** Sql always encrypted properties. */
|
|
1935
2080
|
export interface SqlAlwaysEncryptedProperties {
|
|
1936
|
-
/** Sql always encrypted AKV authentication type. Type: string
|
|
2081
|
+
/** Sql always encrypted AKV authentication type. Type: string. */
|
|
1937
2082
|
alwaysEncryptedAkvAuthType: SqlAlwaysEncryptedAkvAuthType;
|
|
1938
2083
|
/** The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string). */
|
|
1939
2084
|
servicePrincipalId?: any;
|
|
@@ -1978,7 +2123,7 @@ export interface ActivityPolicy {
|
|
|
1978
2123
|
/** Connector read setting. */
|
|
1979
2124
|
export interface StoreReadSettings {
|
|
1980
2125
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1981
|
-
type: "AzureBlobStorageReadSettings" | "AzureBlobFSReadSettings" | "AzureDataLakeStoreReadSettings" | "AmazonS3ReadSettings" | "FileServerReadSettings" | "AzureFileStorageReadSettings" | "AmazonS3CompatibleReadSettings" | "OracleCloudStorageReadSettings" | "GoogleCloudStorageReadSettings" | "FtpReadSettings" | "SftpReadSettings" | "HttpReadSettings" | "HdfsReadSettings";
|
|
2126
|
+
type: "AzureBlobStorageReadSettings" | "AzureBlobFSReadSettings" | "AzureDataLakeStoreReadSettings" | "AmazonS3ReadSettings" | "FileServerReadSettings" | "AzureFileStorageReadSettings" | "AmazonS3CompatibleReadSettings" | "OracleCloudStorageReadSettings" | "GoogleCloudStorageReadSettings" | "FtpReadSettings" | "SftpReadSettings" | "HttpReadSettings" | "HdfsReadSettings" | "LakeHouseReadSettings";
|
|
1982
2127
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
1983
2128
|
[property: string]: any;
|
|
1984
2129
|
/** The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). */
|
|
@@ -1989,7 +2134,7 @@ export interface StoreReadSettings {
|
|
|
1989
2134
|
/** Connector write settings. */
|
|
1990
2135
|
export interface StoreWriteSettings {
|
|
1991
2136
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1992
|
-
type: "SftpWriteSettings" | "AzureBlobStorageWriteSettings" | "AzureBlobFSWriteSettings" | "AzureDataLakeStoreWriteSettings" | "FileServerWriteSettings" | "AzureFileStorageWriteSettings";
|
|
2137
|
+
type: "SftpWriteSettings" | "AzureBlobStorageWriteSettings" | "AzureBlobFSWriteSettings" | "AzureDataLakeStoreWriteSettings" | "FileServerWriteSettings" | "AzureFileStorageWriteSettings" | "LakeHouseWriteSettings";
|
|
1993
2138
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
1994
2139
|
[property: string]: any;
|
|
1995
2140
|
/** The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). */
|
|
@@ -2011,7 +2156,7 @@ export interface DistcpSettings {
|
|
|
2011
2156
|
/** Format read settings. */
|
|
2012
2157
|
export interface FormatReadSettings {
|
|
2013
2158
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
2014
|
-
type: "DelimitedTextReadSettings" | "JsonReadSettings" | "XmlReadSettings" | "BinaryReadSettings";
|
|
2159
|
+
type: "ParquetReadSettings" | "DelimitedTextReadSettings" | "JsonReadSettings" | "XmlReadSettings" | "BinaryReadSettings";
|
|
2015
2160
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
2016
2161
|
[property: string]: any;
|
|
2017
2162
|
}
|
|
@@ -2032,7 +2177,7 @@ export interface FormatWriteSettings {
|
|
|
2032
2177
|
/** A copy activity source. */
|
|
2033
2178
|
export interface CopySource {
|
|
2034
2179
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
2035
|
-
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" | "SnowflakeSource" | "AzureDatabricksDeltaLakeSource" | "SharePointOnlineListSource";
|
|
2180
|
+
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";
|
|
2036
2181
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
2037
2182
|
[property: string]: any;
|
|
2038
2183
|
/** Source retry count. Type: integer (or Expression with resultType integer). */
|
|
@@ -2047,7 +2192,7 @@ export interface CopySource {
|
|
|
2047
2192
|
/** A copy activity sink. */
|
|
2048
2193
|
export interface CopySink {
|
|
2049
2194
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
2050
|
-
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";
|
|
2195
|
+
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";
|
|
2051
2196
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
2052
2197
|
[property: string]: any;
|
|
2053
2198
|
/** Write batch size. Type: integer (or Expression with resultType integer), minimum: 0. */
|
|
@@ -2195,6 +2340,11 @@ export interface MongoDbCursorMethodsProperties {
|
|
|
2195
2340
|
/** Specifies the maximum number of documents the server returns. limit() is analogous to the LIMIT statement in a SQL database. Type: integer (or Expression with resultType integer). */
|
|
2196
2341
|
limit?: any;
|
|
2197
2342
|
}
|
|
2343
|
+
/** The columns to be read out from the Office 365 table. */
|
|
2344
|
+
export interface OutputColumn {
|
|
2345
|
+
/** Name of the table column. Type: string. */
|
|
2346
|
+
name?: string;
|
|
2347
|
+
}
|
|
2198
2348
|
/** The settings that will be leveraged for Netezza source partitioning. */
|
|
2199
2349
|
export interface NetezzaPartitionSettings {
|
|
2200
2350
|
/** The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string). */
|
|
@@ -2338,9 +2488,9 @@ export interface SsisPackageLocation {
|
|
|
2338
2488
|
}
|
|
2339
2489
|
/** SSIS access credential. */
|
|
2340
2490
|
export interface SsisAccessCredential {
|
|
2341
|
-
/** Domain for windows authentication. */
|
|
2491
|
+
/** Domain for windows authentication. Type: string (or Expression with resultType string). */
|
|
2342
2492
|
domain: any;
|
|
2343
|
-
/** UseName for windows authentication. */
|
|
2493
|
+
/** UseName for windows authentication. Type: string (or Expression with resultType string). */
|
|
2344
2494
|
userName: any;
|
|
2345
2495
|
/** Password for windows authentication. */
|
|
2346
2496
|
password: SecretBaseUnion;
|
|
@@ -2358,9 +2508,9 @@ export interface SsisChildPackage {
|
|
|
2358
2508
|
}
|
|
2359
2509
|
/** SSIS package execution credential. */
|
|
2360
2510
|
export interface SsisExecutionCredential {
|
|
2361
|
-
/** Domain for windows authentication. */
|
|
2511
|
+
/** Domain for windows authentication. Type: string (or Expression with resultType string). */
|
|
2362
2512
|
domain: any;
|
|
2363
|
-
/** UseName for windows authentication. */
|
|
2513
|
+
/** UseName for windows authentication. Type: string (or Expression with resultType string). */
|
|
2364
2514
|
userName: any;
|
|
2365
2515
|
/** Password for windows authentication. */
|
|
2366
2516
|
password: SecureString;
|
|
@@ -2433,6 +2583,13 @@ export interface AzureMLWebServiceFile {
|
|
|
2433
2583
|
/** Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located. */
|
|
2434
2584
|
linkedServiceName: LinkedServiceReference;
|
|
2435
2585
|
}
|
|
2586
|
+
/** Execution policy for an activity that supports secure input and output. */
|
|
2587
|
+
export interface SecureInputOutputPolicy {
|
|
2588
|
+
/** When set to true, Input from activity is considered as secure and will not be logged to monitoring. */
|
|
2589
|
+
secureInput?: boolean;
|
|
2590
|
+
/** When set to true, Output from activity is considered as secure and will not be logged to monitoring. */
|
|
2591
|
+
secureOutput?: boolean;
|
|
2592
|
+
}
|
|
2436
2593
|
/** Execute data flow activity properties. */
|
|
2437
2594
|
export interface ExecuteDataFlowActivityTypeProperties {
|
|
2438
2595
|
/** Data flow reference. */
|
|
@@ -2481,7 +2638,7 @@ export interface ScriptActivityParameter {
|
|
|
2481
2638
|
name?: any;
|
|
2482
2639
|
/** The type of the parameter. */
|
|
2483
2640
|
type?: ScriptActivityParameterType;
|
|
2484
|
-
/** The value of the parameter. */
|
|
2641
|
+
/** The value of the parameter. Type: string (or Expression with resultType string). */
|
|
2485
2642
|
value?: any;
|
|
2486
2643
|
/** The direction of the parameter. */
|
|
2487
2644
|
direction?: ScriptActivityParameterDirection;
|
|
@@ -2516,13 +2673,6 @@ export interface NotebookParameter {
|
|
|
2516
2673
|
/** Notebook parameter type. */
|
|
2517
2674
|
type?: NotebookParameterType;
|
|
2518
2675
|
}
|
|
2519
|
-
/** Synapse spark job reference type. */
|
|
2520
|
-
export interface SynapseSparkJobReference {
|
|
2521
|
-
/** Synapse spark job reference type. */
|
|
2522
|
-
type: SparkJobReferenceType;
|
|
2523
|
-
/** Reference spark job name. Expression with resultType string. */
|
|
2524
|
-
referenceName: any;
|
|
2525
|
-
}
|
|
2526
2676
|
/** Spark configuration reference. */
|
|
2527
2677
|
export interface SparkConfigurationParametrizationReference {
|
|
2528
2678
|
/** Spark configuration reference type. */
|
|
@@ -2530,6 +2680,13 @@ export interface SparkConfigurationParametrizationReference {
|
|
|
2530
2680
|
/** Reference spark configuration name. Type: string (or Expression with resultType string). */
|
|
2531
2681
|
referenceName: any;
|
|
2532
2682
|
}
|
|
2683
|
+
/** Synapse spark job reference type. */
|
|
2684
|
+
export interface SynapseSparkJobReference {
|
|
2685
|
+
/** Synapse spark job reference type. */
|
|
2686
|
+
type: SparkJobReferenceType;
|
|
2687
|
+
/** Reference spark job name. Expression with resultType string. */
|
|
2688
|
+
referenceName: any;
|
|
2689
|
+
}
|
|
2533
2690
|
/** The workflow trigger recurrence. */
|
|
2534
2691
|
export interface ScheduleTriggerRecurrence {
|
|
2535
2692
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
@@ -2668,6 +2825,8 @@ export interface SelfHostedIntegrationRuntime extends IntegrationRuntime {
|
|
|
2668
2825
|
type: "SelfHosted";
|
|
2669
2826
|
/** The base definition of a linked integration runtime. */
|
|
2670
2827
|
linkedInfo?: LinkedIntegrationRuntimeTypeUnion;
|
|
2828
|
+
/** An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay. */
|
|
2829
|
+
selfContainedInteractiveAuthoringEnabled?: boolean;
|
|
2671
2830
|
}
|
|
2672
2831
|
/** Integration runtime resource type. */
|
|
2673
2832
|
export interface IntegrationRuntimeResource extends SubResource {
|
|
@@ -2760,6 +2919,25 @@ export interface GlobalParameterResource extends SubResource {
|
|
|
2760
2919
|
[propertyName: string]: GlobalParameterSpecification;
|
|
2761
2920
|
};
|
|
2762
2921
|
}
|
|
2922
|
+
/** Change data capture resource type. */
|
|
2923
|
+
export interface ChangeDataCaptureResource extends SubResource {
|
|
2924
|
+
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
2925
|
+
[property: string]: any;
|
|
2926
|
+
/** The folder that this CDC is in. If not specified, CDC will appear at the root level. */
|
|
2927
|
+
folder?: ChangeDataCaptureFolder;
|
|
2928
|
+
/** The description of the change data capture. */
|
|
2929
|
+
description?: string;
|
|
2930
|
+
/** List of sources connections that can be used as sources in the CDC. */
|
|
2931
|
+
sourceConnectionsInfo: MapperSourceConnectionsInfo[];
|
|
2932
|
+
/** List of target connections that can be used as sources in the CDC. */
|
|
2933
|
+
targetConnectionsInfo: MapperTargetConnectionsInfo[];
|
|
2934
|
+
/** CDC policy */
|
|
2935
|
+
policy: MapperPolicy;
|
|
2936
|
+
/** A boolean to determine if the vnet configuration needs to be overwritten. */
|
|
2937
|
+
allowVNetOverride?: boolean;
|
|
2938
|
+
/** Status of the CDC as to if it is running or stopped. */
|
|
2939
|
+
status?: string;
|
|
2940
|
+
}
|
|
2763
2941
|
/** Credential resource type. */
|
|
2764
2942
|
export interface CredentialResource extends SubResource {
|
|
2765
2943
|
/** Properties of credentials. */
|
|
@@ -2870,6 +3048,11 @@ export interface SelfHostedIntegrationRuntimeStatus extends IntegrationRuntimeSt
|
|
|
2870
3048
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
2871
3049
|
*/
|
|
2872
3050
|
readonly autoUpdateETA?: Date;
|
|
3051
|
+
/**
|
|
3052
|
+
* An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
|
|
3053
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
3054
|
+
*/
|
|
3055
|
+
readonly selfContainedInteractiveAuthoringEnabled?: boolean;
|
|
2873
3056
|
}
|
|
2874
3057
|
/** Ssis folder. */
|
|
2875
3058
|
export interface SsisFolder extends SsisObjectMetadata {
|
|
@@ -2923,7 +3106,7 @@ export interface AzureStorageLinkedService extends LinkedService {
|
|
|
2923
3106
|
sasUri?: any;
|
|
2924
3107
|
/** The Azure key vault secret reference of sasToken in sas uri. */
|
|
2925
3108
|
sasToken?: AzureKeyVaultSecretReference;
|
|
2926
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3109
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
2927
3110
|
encryptedCredential?: string;
|
|
2928
3111
|
}
|
|
2929
3112
|
/** The azure blob storage linked service. */
|
|
@@ -2939,7 +3122,7 @@ export interface AzureBlobStorageLinkedService extends LinkedService {
|
|
|
2939
3122
|
/** The Azure key vault secret reference of sasToken in sas uri. */
|
|
2940
3123
|
sasToken?: AzureKeyVaultSecretReference;
|
|
2941
3124
|
/** Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property. */
|
|
2942
|
-
serviceEndpoint?:
|
|
3125
|
+
serviceEndpoint?: any;
|
|
2943
3126
|
/** The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string). */
|
|
2944
3127
|
servicePrincipalId?: any;
|
|
2945
3128
|
/** The key of the service principal used to authenticate against Azure SQL Data Warehouse. */
|
|
@@ -2949,8 +3132,8 @@ export interface AzureBlobStorageLinkedService extends LinkedService {
|
|
|
2949
3132
|
/** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
|
|
2950
3133
|
azureCloudType?: any;
|
|
2951
3134
|
/** Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string). */
|
|
2952
|
-
accountKind?:
|
|
2953
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3135
|
+
accountKind?: any;
|
|
3136
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
2954
3137
|
encryptedCredential?: string;
|
|
2955
3138
|
/** The credential reference containing authentication information. */
|
|
2956
3139
|
credential?: CredentialReference;
|
|
@@ -2971,7 +3154,7 @@ export interface AzureTableStorageLinkedService extends LinkedService {
|
|
|
2971
3154
|
sasUri?: any;
|
|
2972
3155
|
/** The Azure key vault secret reference of sasToken in sas uri. */
|
|
2973
3156
|
sasToken?: AzureKeyVaultSecretReference;
|
|
2974
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3157
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
2975
3158
|
encryptedCredential?: string;
|
|
2976
3159
|
}
|
|
2977
3160
|
/** Azure SQL Data Warehouse linked service. */
|
|
@@ -2990,8 +3173,8 @@ export interface AzureSqlDWLinkedService extends LinkedService {
|
|
|
2990
3173
|
tenant?: any;
|
|
2991
3174
|
/** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
|
|
2992
3175
|
azureCloudType?: any;
|
|
2993
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
2994
|
-
encryptedCredential?:
|
|
3176
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3177
|
+
encryptedCredential?: string;
|
|
2995
3178
|
/** The credential reference containing authentication information. */
|
|
2996
3179
|
credential?: CredentialReference;
|
|
2997
3180
|
}
|
|
@@ -3005,8 +3188,8 @@ export interface SqlServerLinkedService extends LinkedService {
|
|
|
3005
3188
|
userName?: any;
|
|
3006
3189
|
/** The on-premises Windows authentication password. */
|
|
3007
3190
|
password?: SecretBaseUnion;
|
|
3008
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3009
|
-
encryptedCredential?:
|
|
3191
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3192
|
+
encryptedCredential?: string;
|
|
3010
3193
|
/** Sql always encrypted properties. */
|
|
3011
3194
|
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
3012
3195
|
}
|
|
@@ -3020,8 +3203,8 @@ export interface AmazonRdsForSqlServerLinkedService extends LinkedService {
|
|
|
3020
3203
|
userName?: any;
|
|
3021
3204
|
/** The on-premises Windows authentication password. */
|
|
3022
3205
|
password?: SecretBaseUnion;
|
|
3023
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3024
|
-
encryptedCredential?:
|
|
3206
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3207
|
+
encryptedCredential?: string;
|
|
3025
3208
|
/** Sql always encrypted properties. */
|
|
3026
3209
|
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
3027
3210
|
}
|
|
@@ -3041,8 +3224,8 @@ export interface AzureSqlDatabaseLinkedService extends LinkedService {
|
|
|
3041
3224
|
tenant?: any;
|
|
3042
3225
|
/** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
|
|
3043
3226
|
azureCloudType?: any;
|
|
3044
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3045
|
-
encryptedCredential?:
|
|
3227
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3228
|
+
encryptedCredential?: string;
|
|
3046
3229
|
/** Sql always encrypted properties. */
|
|
3047
3230
|
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
3048
3231
|
/** The credential reference containing authentication information. */
|
|
@@ -3064,8 +3247,8 @@ export interface AzureSqlMILinkedService extends LinkedService {
|
|
|
3064
3247
|
tenant?: any;
|
|
3065
3248
|
/** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
|
|
3066
3249
|
azureCloudType?: any;
|
|
3067
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3068
|
-
encryptedCredential?:
|
|
3250
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3251
|
+
encryptedCredential?: string;
|
|
3069
3252
|
/** Sql always encrypted properties. */
|
|
3070
3253
|
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
3071
3254
|
/** The credential reference containing authentication information. */
|
|
@@ -3085,8 +3268,8 @@ export interface AzureBatchLinkedService extends LinkedService {
|
|
|
3085
3268
|
poolName: any;
|
|
3086
3269
|
/** The Azure Storage linked service reference. */
|
|
3087
3270
|
linkedServiceName: LinkedServiceReference;
|
|
3088
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3089
|
-
encryptedCredential?:
|
|
3271
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3272
|
+
encryptedCredential?: string;
|
|
3090
3273
|
/** The credential reference containing authentication information. */
|
|
3091
3274
|
credential?: CredentialReference;
|
|
3092
3275
|
}
|
|
@@ -3113,18 +3296,18 @@ export interface CosmosDbLinkedService extends LinkedService {
|
|
|
3113
3296
|
accountKey?: SecretBaseUnion;
|
|
3114
3297
|
/** The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string). */
|
|
3115
3298
|
servicePrincipalId?: any;
|
|
3116
|
-
/** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string
|
|
3117
|
-
servicePrincipalCredentialType?:
|
|
3299
|
+
/** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string. */
|
|
3300
|
+
servicePrincipalCredentialType?: any;
|
|
3118
3301
|
/** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
|
|
3119
3302
|
servicePrincipalCredential?: SecretBaseUnion;
|
|
3120
3303
|
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
3121
3304
|
tenant?: any;
|
|
3122
3305
|
/** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
|
|
3123
3306
|
azureCloudType?: any;
|
|
3124
|
-
/** The connection mode used to access CosmosDB account. Type: string
|
|
3307
|
+
/** The connection mode used to access CosmosDB account. Type: string. */
|
|
3125
3308
|
connectionMode?: CosmosDbConnectionMode;
|
|
3126
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3127
|
-
encryptedCredential?:
|
|
3309
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3310
|
+
encryptedCredential?: string;
|
|
3128
3311
|
/** The credential reference containing authentication information. */
|
|
3129
3312
|
credential?: CredentialReference;
|
|
3130
3313
|
}
|
|
@@ -3154,8 +3337,8 @@ export interface DynamicsLinkedService extends LinkedService {
|
|
|
3154
3337
|
servicePrincipalCredentialType?: any;
|
|
3155
3338
|
/** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
|
|
3156
3339
|
servicePrincipalCredential?: SecretBaseUnion;
|
|
3157
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3158
|
-
encryptedCredential?:
|
|
3340
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3341
|
+
encryptedCredential?: string;
|
|
3159
3342
|
/** The credential reference containing authentication information. */
|
|
3160
3343
|
credential?: CredentialReference;
|
|
3161
3344
|
}
|
|
@@ -3185,8 +3368,8 @@ export interface DynamicsCrmLinkedService extends LinkedService {
|
|
|
3185
3368
|
servicePrincipalCredentialType?: any;
|
|
3186
3369
|
/** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
|
|
3187
3370
|
servicePrincipalCredential?: SecretBaseUnion;
|
|
3188
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3189
|
-
encryptedCredential?:
|
|
3371
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3372
|
+
encryptedCredential?: string;
|
|
3190
3373
|
}
|
|
3191
3374
|
/** Common Data Service for Apps linked service. */
|
|
3192
3375
|
export interface CommonDataServiceForAppsLinkedService extends LinkedService {
|
|
@@ -3214,8 +3397,8 @@ export interface CommonDataServiceForAppsLinkedService extends LinkedService {
|
|
|
3214
3397
|
servicePrincipalCredentialType?: any;
|
|
3215
3398
|
/** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
|
|
3216
3399
|
servicePrincipalCredential?: SecretBaseUnion;
|
|
3217
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3218
|
-
encryptedCredential?:
|
|
3400
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3401
|
+
encryptedCredential?: string;
|
|
3219
3402
|
}
|
|
3220
3403
|
/** HDInsight linked service. */
|
|
3221
3404
|
export interface HDInsightLinkedService extends LinkedService {
|
|
@@ -3231,8 +3414,8 @@ export interface HDInsightLinkedService extends LinkedService {
|
|
|
3231
3414
|
linkedServiceName?: LinkedServiceReference;
|
|
3232
3415
|
/** A reference to the Azure SQL linked service that points to the HCatalog database. */
|
|
3233
3416
|
hcatalogLinkedServiceName?: LinkedServiceReference;
|
|
3234
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3235
|
-
encryptedCredential?:
|
|
3417
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3418
|
+
encryptedCredential?: string;
|
|
3236
3419
|
/** Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean. */
|
|
3237
3420
|
isEspEnabled?: any;
|
|
3238
3421
|
/** Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string). */
|
|
@@ -3248,8 +3431,8 @@ export interface FileServerLinkedService extends LinkedService {
|
|
|
3248
3431
|
userId?: any;
|
|
3249
3432
|
/** Password to logon the server. */
|
|
3250
3433
|
password?: SecretBaseUnion;
|
|
3251
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3252
|
-
encryptedCredential?:
|
|
3434
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3435
|
+
encryptedCredential?: string;
|
|
3253
3436
|
}
|
|
3254
3437
|
/** Azure File Storage linked service. */
|
|
3255
3438
|
export interface AzureFileStorageLinkedService extends LinkedService {
|
|
@@ -3273,8 +3456,8 @@ export interface AzureFileStorageLinkedService extends LinkedService {
|
|
|
3273
3456
|
fileShare?: any;
|
|
3274
3457
|
/** The azure file share snapshot version. Type: string (or Expression with resultType string). */
|
|
3275
3458
|
snapshot?: any;
|
|
3276
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3277
|
-
encryptedCredential?:
|
|
3459
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3460
|
+
encryptedCredential?: string;
|
|
3278
3461
|
}
|
|
3279
3462
|
/** Linked service for Amazon S3 Compatible. */
|
|
3280
3463
|
export interface AmazonS3CompatibleLinkedService extends LinkedService {
|
|
@@ -3288,8 +3471,8 @@ export interface AmazonS3CompatibleLinkedService extends LinkedService {
|
|
|
3288
3471
|
serviceUrl?: any;
|
|
3289
3472
|
/** If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean). */
|
|
3290
3473
|
forcePathStyle?: any;
|
|
3291
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3292
|
-
encryptedCredential?:
|
|
3474
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3475
|
+
encryptedCredential?: string;
|
|
3293
3476
|
}
|
|
3294
3477
|
/** Linked service for Oracle Cloud Storage. */
|
|
3295
3478
|
export interface OracleCloudStorageLinkedService extends LinkedService {
|
|
@@ -3301,8 +3484,8 @@ export interface OracleCloudStorageLinkedService extends LinkedService {
|
|
|
3301
3484
|
secretAccessKey?: SecretBaseUnion;
|
|
3302
3485
|
/** This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string). */
|
|
3303
3486
|
serviceUrl?: any;
|
|
3304
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3305
|
-
encryptedCredential?:
|
|
3487
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3488
|
+
encryptedCredential?: string;
|
|
3306
3489
|
}
|
|
3307
3490
|
/** Linked service for Google Cloud Storage. */
|
|
3308
3491
|
export interface GoogleCloudStorageLinkedService extends LinkedService {
|
|
@@ -3314,8 +3497,8 @@ export interface GoogleCloudStorageLinkedService extends LinkedService {
|
|
|
3314
3497
|
secretAccessKey?: SecretBaseUnion;
|
|
3315
3498
|
/** This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string). */
|
|
3316
3499
|
serviceUrl?: any;
|
|
3317
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3318
|
-
encryptedCredential?:
|
|
3500
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3501
|
+
encryptedCredential?: string;
|
|
3319
3502
|
}
|
|
3320
3503
|
/** Oracle database. */
|
|
3321
3504
|
export interface OracleLinkedService extends LinkedService {
|
|
@@ -3325,8 +3508,8 @@ export interface OracleLinkedService extends LinkedService {
|
|
|
3325
3508
|
connectionString: any;
|
|
3326
3509
|
/** The Azure key vault secret reference of password in connection string. */
|
|
3327
3510
|
password?: AzureKeyVaultSecretReference;
|
|
3328
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3329
|
-
encryptedCredential?:
|
|
3511
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3512
|
+
encryptedCredential?: string;
|
|
3330
3513
|
}
|
|
3331
3514
|
/** AmazonRdsForOracle database. */
|
|
3332
3515
|
export interface AmazonRdsForOracleLinkedService extends LinkedService {
|
|
@@ -3336,8 +3519,8 @@ export interface AmazonRdsForOracleLinkedService extends LinkedService {
|
|
|
3336
3519
|
connectionString: any;
|
|
3337
3520
|
/** The Azure key vault secret reference of password in connection string. */
|
|
3338
3521
|
password?: SecretBaseUnion;
|
|
3339
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3340
|
-
encryptedCredential?:
|
|
3522
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3523
|
+
encryptedCredential?: string;
|
|
3341
3524
|
}
|
|
3342
3525
|
/** Azure MySQL database linked service. */
|
|
3343
3526
|
export interface AzureMySqlLinkedService extends LinkedService {
|
|
@@ -3347,30 +3530,30 @@ export interface AzureMySqlLinkedService extends LinkedService {
|
|
|
3347
3530
|
connectionString: any;
|
|
3348
3531
|
/** The Azure key vault secret reference of password in connection string. */
|
|
3349
3532
|
password?: AzureKeyVaultSecretReference;
|
|
3350
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3351
|
-
encryptedCredential?:
|
|
3533
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3534
|
+
encryptedCredential?: string;
|
|
3352
3535
|
}
|
|
3353
3536
|
/** Linked service for MySQL data source. */
|
|
3354
3537
|
export interface MySqlLinkedService extends LinkedService {
|
|
3355
3538
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3356
3539
|
type: "MySql";
|
|
3357
|
-
/** The connection string. */
|
|
3540
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3358
3541
|
connectionString: any;
|
|
3359
3542
|
/** The Azure key vault secret reference of password in connection string. */
|
|
3360
3543
|
password?: AzureKeyVaultSecretReference;
|
|
3361
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3362
|
-
encryptedCredential?:
|
|
3544
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3545
|
+
encryptedCredential?: string;
|
|
3363
3546
|
}
|
|
3364
3547
|
/** Linked service for PostgreSQL data source. */
|
|
3365
3548
|
export interface PostgreSqlLinkedService extends LinkedService {
|
|
3366
3549
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3367
3550
|
type: "PostgreSql";
|
|
3368
|
-
/** The connection string. */
|
|
3551
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3369
3552
|
connectionString: any;
|
|
3370
3553
|
/** The Azure key vault secret reference of password in connection string. */
|
|
3371
3554
|
password?: AzureKeyVaultSecretReference;
|
|
3372
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3373
|
-
encryptedCredential?:
|
|
3555
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3556
|
+
encryptedCredential?: string;
|
|
3374
3557
|
}
|
|
3375
3558
|
/** Linked service for Sybase data source. */
|
|
3376
3559
|
export interface SybaseLinkedService extends LinkedService {
|
|
@@ -3388,8 +3571,8 @@ export interface SybaseLinkedService extends LinkedService {
|
|
|
3388
3571
|
username?: any;
|
|
3389
3572
|
/** Password for authentication. */
|
|
3390
3573
|
password?: SecretBaseUnion;
|
|
3391
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3392
|
-
encryptedCredential?:
|
|
3574
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3575
|
+
encryptedCredential?: string;
|
|
3393
3576
|
}
|
|
3394
3577
|
/** Linked service for DB2 data source. */
|
|
3395
3578
|
export interface Db2LinkedService extends LinkedService {
|
|
@@ -3411,8 +3594,8 @@ export interface Db2LinkedService extends LinkedService {
|
|
|
3411
3594
|
packageCollection?: any;
|
|
3412
3595
|
/** Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string). */
|
|
3413
3596
|
certificateCommonName?: any;
|
|
3414
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string
|
|
3415
|
-
encryptedCredential?:
|
|
3597
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string. */
|
|
3598
|
+
encryptedCredential?: string;
|
|
3416
3599
|
}
|
|
3417
3600
|
/** Linked service for Teradata data source. */
|
|
3418
3601
|
export interface TeradataLinkedService extends LinkedService {
|
|
@@ -3428,8 +3611,8 @@ export interface TeradataLinkedService extends LinkedService {
|
|
|
3428
3611
|
username?: any;
|
|
3429
3612
|
/** Password for authentication. */
|
|
3430
3613
|
password?: SecretBaseUnion;
|
|
3431
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3432
|
-
encryptedCredential?:
|
|
3614
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3615
|
+
encryptedCredential?: string;
|
|
3433
3616
|
}
|
|
3434
3617
|
/** Azure ML Studio Web Service linked service. */
|
|
3435
3618
|
export interface AzureMLLinkedService extends LinkedService {
|
|
@@ -3447,8 +3630,8 @@ export interface AzureMLLinkedService extends LinkedService {
|
|
|
3447
3630
|
servicePrincipalKey?: SecretBaseUnion;
|
|
3448
3631
|
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
3449
3632
|
tenant?: any;
|
|
3450
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3451
|
-
encryptedCredential?:
|
|
3633
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3634
|
+
encryptedCredential?: string;
|
|
3452
3635
|
/** Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string). */
|
|
3453
3636
|
authentication?: any;
|
|
3454
3637
|
}
|
|
@@ -3462,20 +3645,22 @@ export interface AzureMLServiceLinkedService extends LinkedService {
|
|
|
3462
3645
|
resourceGroupName: any;
|
|
3463
3646
|
/** Azure ML Service workspace name. Type: string (or Expression with resultType string). */
|
|
3464
3647
|
mlWorkspaceName: any;
|
|
3648
|
+
/** Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string). */
|
|
3649
|
+
authentication?: any;
|
|
3465
3650
|
/** 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). */
|
|
3466
3651
|
servicePrincipalId?: any;
|
|
3467
3652
|
/** The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. */
|
|
3468
3653
|
servicePrincipalKey?: SecretBaseUnion;
|
|
3469
3654
|
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
3470
3655
|
tenant?: any;
|
|
3471
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3472
|
-
encryptedCredential?:
|
|
3656
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3657
|
+
encryptedCredential?: string;
|
|
3473
3658
|
}
|
|
3474
3659
|
/** Open Database Connectivity (ODBC) linked service. */
|
|
3475
3660
|
export interface OdbcLinkedService extends LinkedService {
|
|
3476
3661
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3477
3662
|
type: "Odbc";
|
|
3478
|
-
/** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3663
|
+
/** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string. */
|
|
3479
3664
|
connectionString: any;
|
|
3480
3665
|
/** Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string). */
|
|
3481
3666
|
authenticationType?: any;
|
|
@@ -3485,14 +3670,14 @@ export interface OdbcLinkedService extends LinkedService {
|
|
|
3485
3670
|
userName?: any;
|
|
3486
3671
|
/** Password for Basic authentication. */
|
|
3487
3672
|
password?: SecretBaseUnion;
|
|
3488
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3489
|
-
encryptedCredential?:
|
|
3673
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3674
|
+
encryptedCredential?: string;
|
|
3490
3675
|
}
|
|
3491
3676
|
/** Informix linked service. */
|
|
3492
3677
|
export interface InformixLinkedService extends LinkedService {
|
|
3493
3678
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3494
3679
|
type: "Informix";
|
|
3495
|
-
/** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3680
|
+
/** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string. */
|
|
3496
3681
|
connectionString: any;
|
|
3497
3682
|
/** 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). */
|
|
3498
3683
|
authenticationType?: any;
|
|
@@ -3502,14 +3687,14 @@ export interface InformixLinkedService extends LinkedService {
|
|
|
3502
3687
|
userName?: any;
|
|
3503
3688
|
/** Password for Basic authentication. */
|
|
3504
3689
|
password?: SecretBaseUnion;
|
|
3505
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3506
|
-
encryptedCredential?:
|
|
3690
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3691
|
+
encryptedCredential?: string;
|
|
3507
3692
|
}
|
|
3508
3693
|
/** Microsoft Access linked service. */
|
|
3509
3694
|
export interface MicrosoftAccessLinkedService extends LinkedService {
|
|
3510
3695
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3511
3696
|
type: "MicrosoftAccess";
|
|
3512
|
-
/** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3697
|
+
/** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string. */
|
|
3513
3698
|
connectionString: any;
|
|
3514
3699
|
/** 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). */
|
|
3515
3700
|
authenticationType?: any;
|
|
@@ -3519,8 +3704,8 @@ export interface MicrosoftAccessLinkedService extends LinkedService {
|
|
|
3519
3704
|
userName?: any;
|
|
3520
3705
|
/** Password for Basic authentication. */
|
|
3521
3706
|
password?: SecretBaseUnion;
|
|
3522
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3523
|
-
encryptedCredential?:
|
|
3707
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3708
|
+
encryptedCredential?: string;
|
|
3524
3709
|
}
|
|
3525
3710
|
/** Hadoop Distributed File System (HDFS) linked service. */
|
|
3526
3711
|
export interface HdfsLinkedService extends LinkedService {
|
|
@@ -3530,8 +3715,8 @@ export interface HdfsLinkedService extends LinkedService {
|
|
|
3530
3715
|
url: any;
|
|
3531
3716
|
/** Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string). */
|
|
3532
3717
|
authenticationType?: any;
|
|
3533
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3534
|
-
encryptedCredential?:
|
|
3718
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3719
|
+
encryptedCredential?: string;
|
|
3535
3720
|
/** User name for Windows authentication. Type: string (or Expression with resultType string). */
|
|
3536
3721
|
userName?: any;
|
|
3537
3722
|
/** Password for Windows authentication. */
|
|
@@ -3567,8 +3752,8 @@ export interface ODataLinkedService extends LinkedService {
|
|
|
3567
3752
|
servicePrincipalEmbeddedCert?: SecretBaseUnion;
|
|
3568
3753
|
/** Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string). */
|
|
3569
3754
|
servicePrincipalEmbeddedCertPassword?: SecretBaseUnion;
|
|
3570
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3571
|
-
encryptedCredential?:
|
|
3755
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3756
|
+
encryptedCredential?: string;
|
|
3572
3757
|
}
|
|
3573
3758
|
/** Web linked service. */
|
|
3574
3759
|
export interface WebLinkedService extends LinkedService {
|
|
@@ -3591,8 +3776,8 @@ export interface CassandraLinkedService extends LinkedService {
|
|
|
3591
3776
|
username?: any;
|
|
3592
3777
|
/** Password for authentication. */
|
|
3593
3778
|
password?: SecretBaseUnion;
|
|
3594
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3595
|
-
encryptedCredential?:
|
|
3779
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3780
|
+
encryptedCredential?: string;
|
|
3596
3781
|
}
|
|
3597
3782
|
/** Linked service for MongoDb data source. */
|
|
3598
3783
|
export interface MongoDbLinkedService extends LinkedService {
|
|
@@ -3616,8 +3801,8 @@ export interface MongoDbLinkedService extends LinkedService {
|
|
|
3616
3801
|
enableSsl?: any;
|
|
3617
3802
|
/** Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean). */
|
|
3618
3803
|
allowSelfSignedServerCert?: any;
|
|
3619
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3620
|
-
encryptedCredential?:
|
|
3804
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3805
|
+
encryptedCredential?: string;
|
|
3621
3806
|
}
|
|
3622
3807
|
/** Linked service for MongoDB Atlas data source. */
|
|
3623
3808
|
export interface MongoDbAtlasLinkedService extends LinkedService {
|
|
@@ -3627,6 +3812,8 @@ export interface MongoDbAtlasLinkedService extends LinkedService {
|
|
|
3627
3812
|
connectionString: any;
|
|
3628
3813
|
/** The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string). */
|
|
3629
3814
|
database: any;
|
|
3815
|
+
/** The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string). */
|
|
3816
|
+
driverVersion?: any;
|
|
3630
3817
|
}
|
|
3631
3818
|
/** Linked service for MongoDB data source. */
|
|
3632
3819
|
export interface MongoDbV2LinkedService extends LinkedService {
|
|
@@ -3668,8 +3855,8 @@ export interface AzureDataLakeStoreLinkedService extends LinkedService {
|
|
|
3668
3855
|
subscriptionId?: any;
|
|
3669
3856
|
/** Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string). */
|
|
3670
3857
|
resourceGroupName?: any;
|
|
3671
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3672
|
-
encryptedCredential?:
|
|
3858
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3859
|
+
encryptedCredential?: string;
|
|
3673
3860
|
/** The credential reference containing authentication information. */
|
|
3674
3861
|
credential?: CredentialReference;
|
|
3675
3862
|
}
|
|
@@ -3689,8 +3876,8 @@ export interface AzureBlobFSLinkedService extends LinkedService {
|
|
|
3689
3876
|
tenant?: any;
|
|
3690
3877
|
/** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
|
|
3691
3878
|
azureCloudType?: any;
|
|
3692
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3693
|
-
encryptedCredential?:
|
|
3879
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3880
|
+
encryptedCredential?: string;
|
|
3694
3881
|
/** The credential reference containing authentication information. */
|
|
3695
3882
|
credential?: CredentialReference;
|
|
3696
3883
|
/** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string). */
|
|
@@ -3714,8 +3901,8 @@ export interface Office365LinkedService extends LinkedService {
|
|
|
3714
3901
|
servicePrincipalId: any;
|
|
3715
3902
|
/** Specify the application's key. */
|
|
3716
3903
|
servicePrincipalKey: SecretBaseUnion;
|
|
3717
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3718
|
-
encryptedCredential?:
|
|
3904
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3905
|
+
encryptedCredential?: string;
|
|
3719
3906
|
}
|
|
3720
3907
|
/** Linked service for Salesforce. */
|
|
3721
3908
|
export interface SalesforceLinkedService extends LinkedService {
|
|
@@ -3731,8 +3918,8 @@ export interface SalesforceLinkedService extends LinkedService {
|
|
|
3731
3918
|
securityToken?: SecretBaseUnion;
|
|
3732
3919
|
/** The Salesforce API version used in ADF. Type: string (or Expression with resultType string). */
|
|
3733
3920
|
apiVersion?: any;
|
|
3734
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3735
|
-
encryptedCredential?:
|
|
3921
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3922
|
+
encryptedCredential?: string;
|
|
3736
3923
|
}
|
|
3737
3924
|
/** Linked service for Salesforce Service Cloud. */
|
|
3738
3925
|
export interface SalesforceServiceCloudLinkedService extends LinkedService {
|
|
@@ -3750,8 +3937,8 @@ export interface SalesforceServiceCloudLinkedService extends LinkedService {
|
|
|
3750
3937
|
apiVersion?: any;
|
|
3751
3938
|
/** Extended properties appended to the connection string. Type: string (or Expression with resultType string). */
|
|
3752
3939
|
extendedProperties?: any;
|
|
3753
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3754
|
-
encryptedCredential?:
|
|
3940
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3941
|
+
encryptedCredential?: string;
|
|
3755
3942
|
}
|
|
3756
3943
|
/** Linked service for SAP Cloud for Customer. */
|
|
3757
3944
|
export interface SapCloudForCustomerLinkedService extends LinkedService {
|
|
@@ -3763,20 +3950,20 @@ export interface SapCloudForCustomerLinkedService extends LinkedService {
|
|
|
3763
3950
|
username?: any;
|
|
3764
3951
|
/** The password for Basic authentication. */
|
|
3765
3952
|
password?: SecretBaseUnion;
|
|
3766
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string
|
|
3767
|
-
encryptedCredential?:
|
|
3953
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string. */
|
|
3954
|
+
encryptedCredential?: string;
|
|
3768
3955
|
}
|
|
3769
3956
|
/** Linked service for SAP ERP Central Component(SAP ECC). */
|
|
3770
3957
|
export interface SapEccLinkedService extends LinkedService {
|
|
3771
3958
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3772
3959
|
type: "SapEcc";
|
|
3773
3960
|
/** The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string). */
|
|
3774
|
-
url:
|
|
3961
|
+
url: any;
|
|
3775
3962
|
/** The username for Basic authentication. Type: string (or Expression with resultType string). */
|
|
3776
|
-
username?:
|
|
3963
|
+
username?: any;
|
|
3777
3964
|
/** The password for Basic authentication. */
|
|
3778
3965
|
password?: SecretBaseUnion;
|
|
3779
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string
|
|
3966
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string. */
|
|
3780
3967
|
encryptedCredential?: string;
|
|
3781
3968
|
}
|
|
3782
3969
|
/** SAP Business Warehouse Open Hub Destination Linked Service. */
|
|
@@ -3803,8 +3990,8 @@ export interface SapOpenHubLinkedService extends LinkedService {
|
|
|
3803
3990
|
messageServerService?: any;
|
|
3804
3991
|
/** The Logon Group for the SAP System. Type: string (or Expression with resultType string). */
|
|
3805
3992
|
logonGroup?: any;
|
|
3806
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3807
|
-
encryptedCredential?:
|
|
3993
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3994
|
+
encryptedCredential?: string;
|
|
3808
3995
|
}
|
|
3809
3996
|
/** SAP ODP Linked Service. */
|
|
3810
3997
|
export interface SapOdpLinkedService extends LinkedService {
|
|
@@ -3844,37 +4031,37 @@ export interface SapOdpLinkedService extends LinkedService {
|
|
|
3844
4031
|
logonGroup?: any;
|
|
3845
4032
|
/** The subscriber name. Type: string (or Expression with resultType string). */
|
|
3846
4033
|
subscriberName?: any;
|
|
3847
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3848
|
-
encryptedCredential?:
|
|
4034
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4035
|
+
encryptedCredential?: string;
|
|
3849
4036
|
}
|
|
3850
4037
|
/** Rest Service linked service. */
|
|
3851
4038
|
export interface RestServiceLinkedService extends LinkedService {
|
|
3852
4039
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3853
4040
|
type: "RestService";
|
|
3854
|
-
/** The base URL of the REST service. */
|
|
4041
|
+
/** The base URL of the REST service. Type: string (or Expression with resultType string). */
|
|
3855
4042
|
url: any;
|
|
3856
4043
|
/** Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean). */
|
|
3857
4044
|
enableServerCertificateValidation?: any;
|
|
3858
4045
|
/** Type of authentication used to connect to the REST service. */
|
|
3859
4046
|
authenticationType: RestServiceAuthenticationType;
|
|
3860
|
-
/** The user name used in Basic authentication type. */
|
|
4047
|
+
/** The user name used in Basic authentication type. Type: string (or Expression with resultType string). */
|
|
3861
4048
|
userName?: any;
|
|
3862
4049
|
/** The password used in Basic authentication type. */
|
|
3863
4050
|
password?: SecretBaseUnion;
|
|
3864
4051
|
/** The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object). */
|
|
3865
4052
|
authHeaders?: any;
|
|
3866
|
-
/** The application's client ID used in AadServicePrincipal authentication type. */
|
|
4053
|
+
/** The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string). */
|
|
3867
4054
|
servicePrincipalId?: any;
|
|
3868
4055
|
/** The application's key used in AadServicePrincipal authentication type. */
|
|
3869
4056
|
servicePrincipalKey?: SecretBaseUnion;
|
|
3870
|
-
/** The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. */
|
|
4057
|
+
/** The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string). */
|
|
3871
4058
|
tenant?: any;
|
|
3872
4059
|
/** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
|
|
3873
4060
|
azureCloudType?: any;
|
|
3874
|
-
/** The resource you are requesting authorization to use. */
|
|
4061
|
+
/** The resource you are requesting authorization to use. Type: string (or Expression with resultType string). */
|
|
3875
4062
|
aadResourceId?: any;
|
|
3876
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3877
|
-
encryptedCredential?:
|
|
4063
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4064
|
+
encryptedCredential?: string;
|
|
3878
4065
|
/** The credential reference containing authentication information. */
|
|
3879
4066
|
credential?: CredentialReference;
|
|
3880
4067
|
/** The client ID associated with your application. Type: string (or Expression with resultType string). */
|
|
@@ -3902,8 +4089,8 @@ export interface TeamDeskLinkedService extends LinkedService {
|
|
|
3902
4089
|
password?: SecretBaseUnion;
|
|
3903
4090
|
/** The api token for the TeamDesk source. */
|
|
3904
4091
|
apiToken?: SecretBaseUnion;
|
|
3905
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3906
|
-
encryptedCredential?:
|
|
4092
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4093
|
+
encryptedCredential?: string;
|
|
3907
4094
|
}
|
|
3908
4095
|
/** Linked service for Quickbase. */
|
|
3909
4096
|
export interface QuickbaseLinkedService extends LinkedService {
|
|
@@ -3913,8 +4100,8 @@ export interface QuickbaseLinkedService extends LinkedService {
|
|
|
3913
4100
|
url: any;
|
|
3914
4101
|
/** The user token for the Quickbase source. */
|
|
3915
4102
|
userToken: SecretBaseUnion;
|
|
3916
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3917
|
-
encryptedCredential?:
|
|
4103
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4104
|
+
encryptedCredential?: string;
|
|
3918
4105
|
}
|
|
3919
4106
|
/** Linked service for Smartsheet. */
|
|
3920
4107
|
export interface SmartsheetLinkedService extends LinkedService {
|
|
@@ -3922,8 +4109,8 @@ export interface SmartsheetLinkedService extends LinkedService {
|
|
|
3922
4109
|
type: "Smartsheet";
|
|
3923
4110
|
/** The api token for the Smartsheet source. */
|
|
3924
4111
|
apiToken: SecretBaseUnion;
|
|
3925
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3926
|
-
encryptedCredential?:
|
|
4112
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4113
|
+
encryptedCredential?: string;
|
|
3927
4114
|
}
|
|
3928
4115
|
/** Linked service for Zendesk. */
|
|
3929
4116
|
export interface ZendeskLinkedService extends LinkedService {
|
|
@@ -3939,8 +4126,8 @@ export interface ZendeskLinkedService extends LinkedService {
|
|
|
3939
4126
|
password?: SecretBaseUnion;
|
|
3940
4127
|
/** The api token for the Zendesk source. */
|
|
3941
4128
|
apiToken?: SecretBaseUnion;
|
|
3942
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3943
|
-
encryptedCredential?:
|
|
4129
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4130
|
+
encryptedCredential?: string;
|
|
3944
4131
|
}
|
|
3945
4132
|
/** Linked service for Dataworld. */
|
|
3946
4133
|
export interface DataworldLinkedService extends LinkedService {
|
|
@@ -3948,14 +4135,14 @@ export interface DataworldLinkedService extends LinkedService {
|
|
|
3948
4135
|
type: "Dataworld";
|
|
3949
4136
|
/** The api token for the Dataworld source. */
|
|
3950
4137
|
apiToken: SecretBaseUnion;
|
|
3951
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3952
|
-
encryptedCredential?:
|
|
4138
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4139
|
+
encryptedCredential?: string;
|
|
3953
4140
|
}
|
|
3954
4141
|
/** Linked service for AppFigures. */
|
|
3955
4142
|
export interface AppFiguresLinkedService extends LinkedService {
|
|
3956
4143
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3957
4144
|
type: "AppFigures";
|
|
3958
|
-
/** The username of the Appfigures source. */
|
|
4145
|
+
/** The username of the Appfigures source. Type: string (or Expression with resultType string). */
|
|
3959
4146
|
userName: any;
|
|
3960
4147
|
/** The password of the AppFigures source. */
|
|
3961
4148
|
password: SecretBaseUnion;
|
|
@@ -3968,14 +4155,14 @@ export interface AsanaLinkedService extends LinkedService {
|
|
|
3968
4155
|
type: "Asana";
|
|
3969
4156
|
/** The api token for the Asana source. */
|
|
3970
4157
|
apiToken: SecretBaseUnion;
|
|
3971
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3972
|
-
encryptedCredential?:
|
|
4158
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4159
|
+
encryptedCredential?: string;
|
|
3973
4160
|
}
|
|
3974
4161
|
/** Linked service for Twilio. */
|
|
3975
4162
|
export interface TwilioLinkedService extends LinkedService {
|
|
3976
4163
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3977
4164
|
type: "Twilio";
|
|
3978
|
-
/** The Account SID of Twilio service. */
|
|
4165
|
+
/** The Account SID of Twilio service. Type: string (or Expression with resultType string). */
|
|
3979
4166
|
userName: any;
|
|
3980
4167
|
/** The auth token of Twilio service. */
|
|
3981
4168
|
password: SecretBaseUnion;
|
|
@@ -3986,8 +4173,8 @@ export interface GoogleSheetsLinkedService extends LinkedService {
|
|
|
3986
4173
|
type: "GoogleSheets";
|
|
3987
4174
|
/** The api token for the GoogleSheets source. */
|
|
3988
4175
|
apiToken: SecretBaseUnion;
|
|
3989
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
3990
|
-
encryptedCredential?:
|
|
4176
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4177
|
+
encryptedCredential?: string;
|
|
3991
4178
|
}
|
|
3992
4179
|
/** Linked service for Amazon S3. */
|
|
3993
4180
|
export interface AmazonS3LinkedService extends LinkedService {
|
|
@@ -4003,8 +4190,8 @@ export interface AmazonS3LinkedService extends LinkedService {
|
|
|
4003
4190
|
serviceUrl?: any;
|
|
4004
4191
|
/** The session token for the S3 temporary security credential. */
|
|
4005
4192
|
sessionToken?: SecretBaseUnion;
|
|
4006
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4007
|
-
encryptedCredential?:
|
|
4193
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4194
|
+
encryptedCredential?: string;
|
|
4008
4195
|
}
|
|
4009
4196
|
/** Linked service for Amazon Redshift. */
|
|
4010
4197
|
export interface AmazonRedshiftLinkedService extends LinkedService {
|
|
@@ -4020,8 +4207,8 @@ export interface AmazonRedshiftLinkedService extends LinkedService {
|
|
|
4020
4207
|
database: any;
|
|
4021
4208
|
/** The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer). */
|
|
4022
4209
|
port?: any;
|
|
4023
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4024
|
-
encryptedCredential?:
|
|
4210
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4211
|
+
encryptedCredential?: string;
|
|
4025
4212
|
}
|
|
4026
4213
|
/** Custom linked service. */
|
|
4027
4214
|
export interface CustomDataSourceLinkedService extends LinkedService {
|
|
@@ -4038,8 +4225,8 @@ export interface AzureSearchLinkedService extends LinkedService {
|
|
|
4038
4225
|
url: any;
|
|
4039
4226
|
/** Admin Key for Azure Search service */
|
|
4040
4227
|
key?: SecretBaseUnion;
|
|
4041
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4042
|
-
encryptedCredential?:
|
|
4228
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4229
|
+
encryptedCredential?: string;
|
|
4043
4230
|
}
|
|
4044
4231
|
/** Linked service for an HTTP source. */
|
|
4045
4232
|
export interface HttpLinkedService extends LinkedService {
|
|
@@ -4059,8 +4246,8 @@ export interface HttpLinkedService extends LinkedService {
|
|
|
4059
4246
|
embeddedCertData?: any;
|
|
4060
4247
|
/** Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string). */
|
|
4061
4248
|
certThumbprint?: any;
|
|
4062
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4063
|
-
encryptedCredential?:
|
|
4249
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4250
|
+
encryptedCredential?: string;
|
|
4064
4251
|
/** If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean). */
|
|
4065
4252
|
enableServerCertificateValidation?: any;
|
|
4066
4253
|
}
|
|
@@ -4078,8 +4265,8 @@ export interface FtpServerLinkedService extends LinkedService {
|
|
|
4078
4265
|
userName?: any;
|
|
4079
4266
|
/** Password to logon the FTP server. */
|
|
4080
4267
|
password?: SecretBaseUnion;
|
|
4081
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4082
|
-
encryptedCredential?:
|
|
4268
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4269
|
+
encryptedCredential?: string;
|
|
4083
4270
|
/** If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean). */
|
|
4084
4271
|
enableSsl?: any;
|
|
4085
4272
|
/** If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean). */
|
|
@@ -4099,8 +4286,8 @@ export interface SftpServerLinkedService extends LinkedService {
|
|
|
4099
4286
|
userName?: any;
|
|
4100
4287
|
/** Password to logon the SFTP server for Basic authentication. */
|
|
4101
4288
|
password?: SecretBaseUnion;
|
|
4102
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4103
|
-
encryptedCredential?:
|
|
4289
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4290
|
+
encryptedCredential?: string;
|
|
4104
4291
|
/** The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string). */
|
|
4105
4292
|
privateKeyPath?: any;
|
|
4106
4293
|
/** Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. */
|
|
@@ -4126,8 +4313,8 @@ export interface SapBWLinkedService extends LinkedService {
|
|
|
4126
4313
|
userName?: any;
|
|
4127
4314
|
/** Password to access the SAP BW server. */
|
|
4128
4315
|
password?: SecretBaseUnion;
|
|
4129
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4130
|
-
encryptedCredential?:
|
|
4316
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4317
|
+
encryptedCredential?: string;
|
|
4131
4318
|
}
|
|
4132
4319
|
/** SAP HANA Linked Service. */
|
|
4133
4320
|
export interface SapHanaLinkedService extends LinkedService {
|
|
@@ -4143,8 +4330,8 @@ export interface SapHanaLinkedService extends LinkedService {
|
|
|
4143
4330
|
userName?: any;
|
|
4144
4331
|
/** Password to access the SAP HANA server. */
|
|
4145
4332
|
password?: SecretBaseUnion;
|
|
4146
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4147
|
-
encryptedCredential?:
|
|
4333
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4334
|
+
encryptedCredential?: string;
|
|
4148
4335
|
}
|
|
4149
4336
|
/** Amazon Marketplace Web Service linked service. */
|
|
4150
4337
|
export interface AmazonMWSLinkedService extends LinkedService {
|
|
@@ -4168,8 +4355,8 @@ export interface AmazonMWSLinkedService extends LinkedService {
|
|
|
4168
4355
|
useHostVerification?: any;
|
|
4169
4356
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4170
4357
|
usePeerVerification?: any;
|
|
4171
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4172
|
-
encryptedCredential?:
|
|
4358
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4359
|
+
encryptedCredential?: string;
|
|
4173
4360
|
}
|
|
4174
4361
|
/** Azure PostgreSQL linked service. */
|
|
4175
4362
|
export interface AzurePostgreSqlLinkedService extends LinkedService {
|
|
@@ -4179,8 +4366,8 @@ export interface AzurePostgreSqlLinkedService extends LinkedService {
|
|
|
4179
4366
|
connectionString?: any;
|
|
4180
4367
|
/** The Azure key vault secret reference of password in connection string. */
|
|
4181
4368
|
password?: AzureKeyVaultSecretReference;
|
|
4182
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4183
|
-
encryptedCredential?:
|
|
4369
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4370
|
+
encryptedCredential?: string;
|
|
4184
4371
|
}
|
|
4185
4372
|
/** Concur Service linked service. */
|
|
4186
4373
|
export interface ConcurLinkedService extends LinkedService {
|
|
@@ -4200,8 +4387,8 @@ export interface ConcurLinkedService extends LinkedService {
|
|
|
4200
4387
|
useHostVerification?: any;
|
|
4201
4388
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4202
4389
|
usePeerVerification?: any;
|
|
4203
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4204
|
-
encryptedCredential?:
|
|
4390
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4391
|
+
encryptedCredential?: string;
|
|
4205
4392
|
}
|
|
4206
4393
|
/** Couchbase server linked service. */
|
|
4207
4394
|
export interface CouchbaseLinkedService extends LinkedService {
|
|
@@ -4211,8 +4398,8 @@ export interface CouchbaseLinkedService extends LinkedService {
|
|
|
4211
4398
|
connectionString?: any;
|
|
4212
4399
|
/** The Azure key vault secret reference of credString in connection string. */
|
|
4213
4400
|
credString?: AzureKeyVaultSecretReference;
|
|
4214
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4215
|
-
encryptedCredential?:
|
|
4401
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4402
|
+
encryptedCredential?: string;
|
|
4216
4403
|
}
|
|
4217
4404
|
/** Drill server linked service. */
|
|
4218
4405
|
export interface DrillLinkedService extends LinkedService {
|
|
@@ -4222,8 +4409,8 @@ export interface DrillLinkedService extends LinkedService {
|
|
|
4222
4409
|
connectionString?: any;
|
|
4223
4410
|
/** The Azure key vault secret reference of password in connection string. */
|
|
4224
4411
|
pwd?: AzureKeyVaultSecretReference;
|
|
4225
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4226
|
-
encryptedCredential?:
|
|
4412
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4413
|
+
encryptedCredential?: string;
|
|
4227
4414
|
}
|
|
4228
4415
|
/** Eloqua server linked service. */
|
|
4229
4416
|
export interface EloquaLinkedService extends LinkedService {
|
|
@@ -4241,18 +4428,18 @@ export interface EloquaLinkedService extends LinkedService {
|
|
|
4241
4428
|
useHostVerification?: any;
|
|
4242
4429
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4243
4430
|
usePeerVerification?: any;
|
|
4244
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4245
|
-
encryptedCredential?:
|
|
4431
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4432
|
+
encryptedCredential?: string;
|
|
4246
4433
|
}
|
|
4247
4434
|
/** Google BigQuery service linked service. */
|
|
4248
4435
|
export interface GoogleBigQueryLinkedService extends LinkedService {
|
|
4249
4436
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
4250
4437
|
type: "GoogleBigQuery";
|
|
4251
|
-
/** The default BigQuery project to query against. */
|
|
4438
|
+
/** The default BigQuery project to query against. Type: string (or Expression with resultType string). */
|
|
4252
4439
|
project: any;
|
|
4253
|
-
/** A comma-separated list of public BigQuery projects to access. */
|
|
4440
|
+
/** A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string). */
|
|
4254
4441
|
additionalProjects?: any;
|
|
4255
|
-
/** Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. */
|
|
4442
|
+
/** Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string). */
|
|
4256
4443
|
requestGoogleDriveScope?: any;
|
|
4257
4444
|
/** The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR. */
|
|
4258
4445
|
authenticationType: GoogleBigQueryAuthenticationType;
|
|
@@ -4262,16 +4449,16 @@ export interface GoogleBigQueryLinkedService extends LinkedService {
|
|
|
4262
4449
|
clientId?: any;
|
|
4263
4450
|
/** The client secret of the google application used to acquire the refresh token. */
|
|
4264
4451
|
clientSecret?: SecretBaseUnion;
|
|
4265
|
-
/** The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. */
|
|
4452
|
+
/** The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string). */
|
|
4266
4453
|
email?: any;
|
|
4267
|
-
/** The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. */
|
|
4454
|
+
/** The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string). */
|
|
4268
4455
|
keyFilePath?: any;
|
|
4269
|
-
/** The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. */
|
|
4456
|
+
/** The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string). */
|
|
4270
4457
|
trustedCertPath?: any;
|
|
4271
|
-
/** Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. */
|
|
4458
|
+
/** Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean). */
|
|
4272
4459
|
useSystemTrustStore?: any;
|
|
4273
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4274
|
-
encryptedCredential?:
|
|
4460
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4461
|
+
encryptedCredential?: string;
|
|
4275
4462
|
}
|
|
4276
4463
|
/** Greenplum Database linked service. */
|
|
4277
4464
|
export interface GreenplumLinkedService extends LinkedService {
|
|
@@ -4281,8 +4468,8 @@ export interface GreenplumLinkedService extends LinkedService {
|
|
|
4281
4468
|
connectionString?: any;
|
|
4282
4469
|
/** The Azure key vault secret reference of password in connection string. */
|
|
4283
4470
|
pwd?: AzureKeyVaultSecretReference;
|
|
4284
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4285
|
-
encryptedCredential?:
|
|
4471
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4472
|
+
encryptedCredential?: string;
|
|
4286
4473
|
}
|
|
4287
4474
|
/** HBase server linked service. */
|
|
4288
4475
|
export interface HBaseLinkedService extends LinkedService {
|
|
@@ -4308,8 +4495,8 @@ export interface HBaseLinkedService extends LinkedService {
|
|
|
4308
4495
|
allowHostNameCNMismatch?: any;
|
|
4309
4496
|
/** Specifies whether to allow self-signed certificates from the server. The default value is false. */
|
|
4310
4497
|
allowSelfSignedServerCert?: any;
|
|
4311
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4312
|
-
encryptedCredential?:
|
|
4498
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4499
|
+
encryptedCredential?: string;
|
|
4313
4500
|
}
|
|
4314
4501
|
/** Hive Server linked service. */
|
|
4315
4502
|
export interface HiveLinkedService extends LinkedService {
|
|
@@ -4347,8 +4534,8 @@ export interface HiveLinkedService extends LinkedService {
|
|
|
4347
4534
|
allowHostNameCNMismatch?: any;
|
|
4348
4535
|
/** Specifies whether to allow self-signed certificates from the server. The default value is false. */
|
|
4349
4536
|
allowSelfSignedServerCert?: any;
|
|
4350
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4351
|
-
encryptedCredential?:
|
|
4537
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4538
|
+
encryptedCredential?: string;
|
|
4352
4539
|
}
|
|
4353
4540
|
/** Hubspot Service linked service. */
|
|
4354
4541
|
export interface HubspotLinkedService extends LinkedService {
|
|
@@ -4368,8 +4555,8 @@ export interface HubspotLinkedService extends LinkedService {
|
|
|
4368
4555
|
useHostVerification?: any;
|
|
4369
4556
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4370
4557
|
usePeerVerification?: any;
|
|
4371
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4372
|
-
encryptedCredential?:
|
|
4558
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4559
|
+
encryptedCredential?: string;
|
|
4373
4560
|
}
|
|
4374
4561
|
/** Impala server linked service. */
|
|
4375
4562
|
export interface ImpalaLinkedService extends LinkedService {
|
|
@@ -4395,8 +4582,8 @@ export interface ImpalaLinkedService extends LinkedService {
|
|
|
4395
4582
|
allowHostNameCNMismatch?: any;
|
|
4396
4583
|
/** Specifies whether to allow self-signed certificates from the server. The default value is false. */
|
|
4397
4584
|
allowSelfSignedServerCert?: any;
|
|
4398
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4399
|
-
encryptedCredential?:
|
|
4585
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4586
|
+
encryptedCredential?: string;
|
|
4400
4587
|
}
|
|
4401
4588
|
/** Jira Service linked service. */
|
|
4402
4589
|
export interface JiraLinkedService extends LinkedService {
|
|
@@ -4416,8 +4603,8 @@ export interface JiraLinkedService extends LinkedService {
|
|
|
4416
4603
|
useHostVerification?: any;
|
|
4417
4604
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4418
4605
|
usePeerVerification?: any;
|
|
4419
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4420
|
-
encryptedCredential?:
|
|
4606
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4607
|
+
encryptedCredential?: string;
|
|
4421
4608
|
}
|
|
4422
4609
|
/** Magento server linked service. */
|
|
4423
4610
|
export interface MagentoLinkedService extends LinkedService {
|
|
@@ -4433,8 +4620,8 @@ export interface MagentoLinkedService extends LinkedService {
|
|
|
4433
4620
|
useHostVerification?: any;
|
|
4434
4621
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4435
4622
|
usePeerVerification?: any;
|
|
4436
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4437
|
-
encryptedCredential?:
|
|
4623
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4624
|
+
encryptedCredential?: string;
|
|
4438
4625
|
}
|
|
4439
4626
|
/** MariaDB server linked service. */
|
|
4440
4627
|
export interface MariaDBLinkedService extends LinkedService {
|
|
@@ -4444,8 +4631,8 @@ export interface MariaDBLinkedService extends LinkedService {
|
|
|
4444
4631
|
connectionString?: any;
|
|
4445
4632
|
/** The Azure key vault secret reference of password in connection string. */
|
|
4446
4633
|
pwd?: AzureKeyVaultSecretReference;
|
|
4447
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4448
|
-
encryptedCredential?:
|
|
4634
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4635
|
+
encryptedCredential?: string;
|
|
4449
4636
|
}
|
|
4450
4637
|
/** Azure Database for MariaDB linked service. */
|
|
4451
4638
|
export interface AzureMariaDBLinkedService extends LinkedService {
|
|
@@ -4455,8 +4642,8 @@ export interface AzureMariaDBLinkedService extends LinkedService {
|
|
|
4455
4642
|
connectionString?: any;
|
|
4456
4643
|
/** The Azure key vault secret reference of password in connection string. */
|
|
4457
4644
|
pwd?: AzureKeyVaultSecretReference;
|
|
4458
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4459
|
-
encryptedCredential?:
|
|
4645
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4646
|
+
encryptedCredential?: string;
|
|
4460
4647
|
}
|
|
4461
4648
|
/** Marketo server linked service. */
|
|
4462
4649
|
export interface MarketoLinkedService extends LinkedService {
|
|
@@ -4474,14 +4661,14 @@ export interface MarketoLinkedService extends LinkedService {
|
|
|
4474
4661
|
useHostVerification?: any;
|
|
4475
4662
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4476
4663
|
usePeerVerification?: any;
|
|
4477
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4478
|
-
encryptedCredential?:
|
|
4664
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4665
|
+
encryptedCredential?: string;
|
|
4479
4666
|
}
|
|
4480
4667
|
/** Paypal Service linked service. */
|
|
4481
4668
|
export interface PaypalLinkedService extends LinkedService {
|
|
4482
4669
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
4483
4670
|
type: "Paypal";
|
|
4484
|
-
/** The URL
|
|
4671
|
+
/** The URL of the PayPal instance. (i.e. api.sandbox.paypal.com) */
|
|
4485
4672
|
host: any;
|
|
4486
4673
|
/** The client ID associated with your PayPal application. */
|
|
4487
4674
|
clientId: any;
|
|
@@ -4493,8 +4680,8 @@ export interface PaypalLinkedService extends LinkedService {
|
|
|
4493
4680
|
useHostVerification?: any;
|
|
4494
4681
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4495
4682
|
usePeerVerification?: any;
|
|
4496
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4497
|
-
encryptedCredential?:
|
|
4683
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4684
|
+
encryptedCredential?: string;
|
|
4498
4685
|
}
|
|
4499
4686
|
/** Phoenix server linked service. */
|
|
4500
4687
|
export interface PhoenixLinkedService extends LinkedService {
|
|
@@ -4522,8 +4709,8 @@ export interface PhoenixLinkedService extends LinkedService {
|
|
|
4522
4709
|
allowHostNameCNMismatch?: any;
|
|
4523
4710
|
/** Specifies whether to allow self-signed certificates from the server. The default value is false. */
|
|
4524
4711
|
allowSelfSignedServerCert?: any;
|
|
4525
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4526
|
-
encryptedCredential?:
|
|
4712
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4713
|
+
encryptedCredential?: string;
|
|
4527
4714
|
}
|
|
4528
4715
|
/** Presto server linked service. */
|
|
4529
4716
|
export interface PrestoLinkedService extends LinkedService {
|
|
@@ -4555,8 +4742,8 @@ export interface PrestoLinkedService extends LinkedService {
|
|
|
4555
4742
|
allowSelfSignedServerCert?: any;
|
|
4556
4743
|
/** The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone. */
|
|
4557
4744
|
timeZoneID?: any;
|
|
4558
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4559
|
-
encryptedCredential?:
|
|
4745
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4746
|
+
encryptedCredential?: string;
|
|
4560
4747
|
}
|
|
4561
4748
|
/** QuickBooks server linked service. */
|
|
4562
4749
|
export interface QuickBooksLinkedService extends LinkedService {
|
|
@@ -4578,8 +4765,8 @@ export interface QuickBooksLinkedService extends LinkedService {
|
|
|
4578
4765
|
accessTokenSecret?: SecretBaseUnion;
|
|
4579
4766
|
/** Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. */
|
|
4580
4767
|
useEncryptedEndpoints?: any;
|
|
4581
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4582
|
-
encryptedCredential?:
|
|
4768
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4769
|
+
encryptedCredential?: string;
|
|
4583
4770
|
}
|
|
4584
4771
|
/** ServiceNow server linked service. */
|
|
4585
4772
|
export interface ServiceNowLinkedService extends LinkedService {
|
|
@@ -4603,8 +4790,8 @@ export interface ServiceNowLinkedService extends LinkedService {
|
|
|
4603
4790
|
useHostVerification?: any;
|
|
4604
4791
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4605
4792
|
usePeerVerification?: any;
|
|
4606
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4607
|
-
encryptedCredential?:
|
|
4793
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4794
|
+
encryptedCredential?: string;
|
|
4608
4795
|
}
|
|
4609
4796
|
/** Shopify Service linked service. */
|
|
4610
4797
|
export interface ShopifyLinkedService extends LinkedService {
|
|
@@ -4620,8 +4807,8 @@ export interface ShopifyLinkedService extends LinkedService {
|
|
|
4620
4807
|
useHostVerification?: any;
|
|
4621
4808
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4622
4809
|
usePeerVerification?: any;
|
|
4623
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4624
|
-
encryptedCredential?:
|
|
4810
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4811
|
+
encryptedCredential?: string;
|
|
4625
4812
|
}
|
|
4626
4813
|
/** Spark Server linked service. */
|
|
4627
4814
|
export interface SparkLinkedService extends LinkedService {
|
|
@@ -4653,8 +4840,8 @@ export interface SparkLinkedService extends LinkedService {
|
|
|
4653
4840
|
allowHostNameCNMismatch?: any;
|
|
4654
4841
|
/** Specifies whether to allow self-signed certificates from the server. The default value is false. */
|
|
4655
4842
|
allowSelfSignedServerCert?: any;
|
|
4656
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4657
|
-
encryptedCredential?:
|
|
4843
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4844
|
+
encryptedCredential?: string;
|
|
4658
4845
|
}
|
|
4659
4846
|
/** Square Service linked service. */
|
|
4660
4847
|
export interface SquareLinkedService extends LinkedService {
|
|
@@ -4662,7 +4849,7 @@ export interface SquareLinkedService extends LinkedService {
|
|
|
4662
4849
|
type: "Square";
|
|
4663
4850
|
/** Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object. */
|
|
4664
4851
|
connectionProperties?: any;
|
|
4665
|
-
/** The URL
|
|
4852
|
+
/** The URL of the Square instance. (i.e. mystore.mysquare.com) */
|
|
4666
4853
|
host?: any;
|
|
4667
4854
|
/** The client ID associated with your Square application. */
|
|
4668
4855
|
clientId?: any;
|
|
@@ -4676,8 +4863,8 @@ export interface SquareLinkedService extends LinkedService {
|
|
|
4676
4863
|
useHostVerification?: any;
|
|
4677
4864
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4678
4865
|
usePeerVerification?: any;
|
|
4679
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4680
|
-
encryptedCredential?:
|
|
4866
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4867
|
+
encryptedCredential?: string;
|
|
4681
4868
|
}
|
|
4682
4869
|
/** Xero Service linked service. */
|
|
4683
4870
|
export interface XeroLinkedService extends LinkedService {
|
|
@@ -4700,8 +4887,8 @@ export interface XeroLinkedService extends LinkedService {
|
|
|
4700
4887
|
useHostVerification?: any;
|
|
4701
4888
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4702
4889
|
usePeerVerification?: any;
|
|
4703
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4704
|
-
encryptedCredential?:
|
|
4890
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4891
|
+
encryptedCredential?: string;
|
|
4705
4892
|
}
|
|
4706
4893
|
/** Zoho server linked service. */
|
|
4707
4894
|
export interface ZohoLinkedService extends LinkedService {
|
|
@@ -4719,8 +4906,8 @@ export interface ZohoLinkedService extends LinkedService {
|
|
|
4719
4906
|
useHostVerification?: any;
|
|
4720
4907
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
|
|
4721
4908
|
usePeerVerification?: any;
|
|
4722
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4723
|
-
encryptedCredential?:
|
|
4909
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4910
|
+
encryptedCredential?: string;
|
|
4724
4911
|
}
|
|
4725
4912
|
/** Vertica linked service. */
|
|
4726
4913
|
export interface VerticaLinkedService extends LinkedService {
|
|
@@ -4730,8 +4917,8 @@ export interface VerticaLinkedService extends LinkedService {
|
|
|
4730
4917
|
connectionString?: any;
|
|
4731
4918
|
/** The Azure key vault secret reference of password in connection string. */
|
|
4732
4919
|
pwd?: AzureKeyVaultSecretReference;
|
|
4733
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4734
|
-
encryptedCredential?:
|
|
4920
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4921
|
+
encryptedCredential?: string;
|
|
4735
4922
|
}
|
|
4736
4923
|
/** Netezza linked service. */
|
|
4737
4924
|
export interface NetezzaLinkedService extends LinkedService {
|
|
@@ -4741,8 +4928,8 @@ export interface NetezzaLinkedService extends LinkedService {
|
|
|
4741
4928
|
connectionString?: any;
|
|
4742
4929
|
/** The Azure key vault secret reference of password in connection string. */
|
|
4743
4930
|
pwd?: AzureKeyVaultSecretReference;
|
|
4744
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4745
|
-
encryptedCredential?:
|
|
4931
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4932
|
+
encryptedCredential?: string;
|
|
4746
4933
|
}
|
|
4747
4934
|
/** Salesforce Marketing Cloud linked service. */
|
|
4748
4935
|
export interface SalesforceMarketingCloudLinkedService extends LinkedService {
|
|
@@ -4760,8 +4947,8 @@ export interface SalesforceMarketingCloudLinkedService extends LinkedService {
|
|
|
4760
4947
|
useHostVerification?: any;
|
|
4761
4948
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean). */
|
|
4762
4949
|
usePeerVerification?: any;
|
|
4763
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4764
|
-
encryptedCredential?:
|
|
4950
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4951
|
+
encryptedCredential?: string;
|
|
4765
4952
|
}
|
|
4766
4953
|
/** HDInsight ondemand linked service. */
|
|
4767
4954
|
export interface HDInsightOnDemandLinkedService extends LinkedService {
|
|
@@ -4819,8 +5006,8 @@ export interface HDInsightOnDemandLinkedService extends LinkedService {
|
|
|
4819
5006
|
stormConfiguration?: any;
|
|
4820
5007
|
/** Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster. */
|
|
4821
5008
|
yarnConfiguration?: any;
|
|
4822
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4823
|
-
encryptedCredential?:
|
|
5009
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5010
|
+
encryptedCredential?: string;
|
|
4824
5011
|
/** Specifies the size of the head node for the HDInsight cluster. */
|
|
4825
5012
|
headNodeSize?: any;
|
|
4826
5013
|
/** Specifies the size of the data node for the HDInsight cluster. */
|
|
@@ -4854,8 +5041,8 @@ export interface AzureDataLakeAnalyticsLinkedService extends LinkedService {
|
|
|
4854
5041
|
resourceGroupName?: any;
|
|
4855
5042
|
/** Azure Data Lake Analytics URI Type: string (or Expression with resultType string). */
|
|
4856
5043
|
dataLakeAnalyticsUri?: any;
|
|
4857
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4858
|
-
encryptedCredential?:
|
|
5044
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5045
|
+
encryptedCredential?: string;
|
|
4859
5046
|
}
|
|
4860
5047
|
/** Azure Databricks linked service. */
|
|
4861
5048
|
export interface AzureDatabricksLinkedService extends LinkedService {
|
|
@@ -4899,8 +5086,8 @@ export interface AzureDatabricksLinkedService extends LinkedService {
|
|
|
4899
5086
|
newClusterInitScripts?: any;
|
|
4900
5087
|
/** Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean). */
|
|
4901
5088
|
newClusterEnableElasticDisk?: any;
|
|
4902
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4903
|
-
encryptedCredential?:
|
|
5089
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5090
|
+
encryptedCredential?: string;
|
|
4904
5091
|
/** The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string). */
|
|
4905
5092
|
policyId?: any;
|
|
4906
5093
|
/** The credential reference containing authentication information. */
|
|
@@ -4916,8 +5103,8 @@ export interface AzureDatabricksDeltaLakeLinkedService extends LinkedService {
|
|
|
4916
5103
|
accessToken?: SecretBaseUnion;
|
|
4917
5104
|
/** The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string). */
|
|
4918
5105
|
clusterId?: any;
|
|
4919
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4920
|
-
encryptedCredential?:
|
|
5106
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5107
|
+
encryptedCredential?: string;
|
|
4921
5108
|
/** The credential reference containing authentication information. */
|
|
4922
5109
|
credential?: CredentialReference;
|
|
4923
5110
|
/** Workspace resource id for databricks REST API. Type: string (or Expression with resultType string). */
|
|
@@ -4939,8 +5126,8 @@ export interface ResponsysLinkedService extends LinkedService {
|
|
|
4939
5126
|
useHostVerification?: any;
|
|
4940
5127
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean). */
|
|
4941
5128
|
usePeerVerification?: any;
|
|
4942
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4943
|
-
encryptedCredential?:
|
|
5129
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5130
|
+
encryptedCredential?: string;
|
|
4944
5131
|
}
|
|
4945
5132
|
/** Dynamics AX linked service. */
|
|
4946
5133
|
export interface DynamicsAXLinkedService extends LinkedService {
|
|
@@ -4956,8 +5143,8 @@ export interface DynamicsAXLinkedService extends LinkedService {
|
|
|
4956
5143
|
tenant: any;
|
|
4957
5144
|
/** Specify the resource you are requesting authorization. Type: string (or Expression with resultType string). */
|
|
4958
5145
|
aadResourceId: any;
|
|
4959
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4960
|
-
encryptedCredential?:
|
|
5146
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5147
|
+
encryptedCredential?: string;
|
|
4961
5148
|
}
|
|
4962
5149
|
/** Oracle Service Cloud linked service. */
|
|
4963
5150
|
export interface OracleServiceCloudLinkedService extends LinkedService {
|
|
@@ -4975,16 +5162,16 @@ export interface OracleServiceCloudLinkedService extends LinkedService {
|
|
|
4975
5162
|
useHostVerification?: any;
|
|
4976
5163
|
/** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean). */
|
|
4977
5164
|
usePeerVerification?: any;
|
|
4978
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
4979
|
-
encryptedCredential?:
|
|
5165
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5166
|
+
encryptedCredential?: string;
|
|
4980
5167
|
}
|
|
4981
5168
|
/** Google AdWords service linked service. */
|
|
4982
5169
|
export interface GoogleAdWordsLinkedService extends LinkedService {
|
|
4983
5170
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
4984
5171
|
type: "GoogleAdWords";
|
|
4985
|
-
/** Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object. */
|
|
5172
|
+
/** (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object. */
|
|
4986
5173
|
connectionProperties?: any;
|
|
4987
|
-
/** The Client customer ID of the AdWords account that you want to fetch report data for. */
|
|
5174
|
+
/** The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string). */
|
|
4988
5175
|
clientCustomerID?: any;
|
|
4989
5176
|
/** The developer token associated with the manager account that you use to grant access to the AdWords API. */
|
|
4990
5177
|
developerToken?: SecretBaseUnion;
|
|
@@ -4996,16 +5183,24 @@ export interface GoogleAdWordsLinkedService extends LinkedService {
|
|
|
4996
5183
|
clientId?: any;
|
|
4997
5184
|
/** The client secret of the google application used to acquire the refresh token. */
|
|
4998
5185
|
clientSecret?: SecretBaseUnion;
|
|
4999
|
-
/** The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. */
|
|
5186
|
+
/** The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string). */
|
|
5000
5187
|
email?: any;
|
|
5001
|
-
/** The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. */
|
|
5188
|
+
/** (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string). */
|
|
5002
5189
|
keyFilePath?: any;
|
|
5003
|
-
/** The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. */
|
|
5190
|
+
/** (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string). */
|
|
5004
5191
|
trustedCertPath?: any;
|
|
5005
|
-
/** Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. */
|
|
5192
|
+
/** (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean). */
|
|
5006
5193
|
useSystemTrustStore?: any;
|
|
5007
|
-
/** The
|
|
5008
|
-
|
|
5194
|
+
/** The private key that is used to authenticate the service account email address and can only be used on self-hosted IR. */
|
|
5195
|
+
privateKey?: SecretBaseUnion;
|
|
5196
|
+
/** The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string). */
|
|
5197
|
+
loginCustomerID?: any;
|
|
5198
|
+
/** The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string). */
|
|
5199
|
+
googleAdsApiVersion?: any;
|
|
5200
|
+
/** Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean). */
|
|
5201
|
+
supportLegacyDataTypes?: any;
|
|
5202
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5203
|
+
encryptedCredential?: string;
|
|
5009
5204
|
}
|
|
5010
5205
|
/** SAP Table Linked Service. */
|
|
5011
5206
|
export interface SapTableLinkedService extends LinkedService {
|
|
@@ -5041,8 +5236,8 @@ export interface SapTableLinkedService extends LinkedService {
|
|
|
5041
5236
|
sncQop?: any;
|
|
5042
5237
|
/** The Logon Group for the SAP System. Type: string (or Expression with resultType string). */
|
|
5043
5238
|
logonGroup?: any;
|
|
5044
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
5045
|
-
encryptedCredential?:
|
|
5239
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5240
|
+
encryptedCredential?: string;
|
|
5046
5241
|
}
|
|
5047
5242
|
/** Azure Data Explorer (Kusto) linked service. */
|
|
5048
5243
|
export interface AzureDataExplorerLinkedService extends LinkedService {
|
|
@@ -5069,8 +5264,8 @@ export interface AzureFunctionLinkedService extends LinkedService {
|
|
|
5069
5264
|
functionAppUrl: any;
|
|
5070
5265
|
/** Function or Host key for Azure Function App. */
|
|
5071
5266
|
functionKey?: SecretBaseUnion;
|
|
5072
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
5073
|
-
encryptedCredential?:
|
|
5267
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5268
|
+
encryptedCredential?: string;
|
|
5074
5269
|
/** The credential reference containing authentication information. */
|
|
5075
5270
|
credential?: CredentialReference;
|
|
5076
5271
|
/** Allowed token audiences for azure function. */
|
|
@@ -5086,8 +5281,8 @@ export interface SnowflakeLinkedService extends LinkedService {
|
|
|
5086
5281
|
connectionString: any;
|
|
5087
5282
|
/** The Azure key vault secret reference of password in connection string. */
|
|
5088
5283
|
password?: AzureKeyVaultSecretReference;
|
|
5089
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
5090
|
-
encryptedCredential?:
|
|
5284
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5285
|
+
encryptedCredential?: string;
|
|
5091
5286
|
}
|
|
5092
5287
|
/** SharePoint Online List linked service. */
|
|
5093
5288
|
export interface SharePointOnlineListLinkedService extends LinkedService {
|
|
@@ -5101,8 +5296,8 @@ export interface SharePointOnlineListLinkedService extends LinkedService {
|
|
|
5101
5296
|
servicePrincipalId: any;
|
|
5102
5297
|
/** The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string). */
|
|
5103
5298
|
servicePrincipalKey: SecretBaseUnion;
|
|
5104
|
-
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string
|
|
5105
|
-
encryptedCredential?:
|
|
5299
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5300
|
+
encryptedCredential?: string;
|
|
5106
5301
|
}
|
|
5107
5302
|
/** Azure Synapse Analytics (Artifacts) linked service. */
|
|
5108
5303
|
export interface AzureSynapseArtifactsLinkedService extends LinkedService {
|
|
@@ -5115,6 +5310,27 @@ export interface AzureSynapseArtifactsLinkedService extends LinkedService {
|
|
|
5115
5310
|
/** The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string). */
|
|
5116
5311
|
workspaceResourceId?: any;
|
|
5117
5312
|
}
|
|
5313
|
+
/** Microsoft Fabric LakeHouse linked service. */
|
|
5314
|
+
export interface LakeHouseLinkedService extends LinkedService {
|
|
5315
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
5316
|
+
type: "LakeHouse";
|
|
5317
|
+
/** The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string). */
|
|
5318
|
+
workspaceId?: any;
|
|
5319
|
+
/** The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string). */
|
|
5320
|
+
artifactId?: any;
|
|
5321
|
+
/** The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string). */
|
|
5322
|
+
servicePrincipalId?: any;
|
|
5323
|
+
/** The Key of the application used to authenticate against Microsoft Fabric LakeHouse. */
|
|
5324
|
+
servicePrincipalKey?: SecretBaseUnion;
|
|
5325
|
+
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
5326
|
+
tenant?: any;
|
|
5327
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5328
|
+
encryptedCredential?: string;
|
|
5329
|
+
/** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string). */
|
|
5330
|
+
servicePrincipalCredentialType?: any;
|
|
5331
|
+
/** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
|
|
5332
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
5333
|
+
}
|
|
5118
5334
|
/** A single Amazon Simple Storage Service (S3) object or a set of S3 objects. */
|
|
5119
5335
|
export interface AmazonS3Dataset extends Dataset {
|
|
5120
5336
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -5636,10 +5852,14 @@ export interface RestResourceDataset extends Dataset {
|
|
|
5636
5852
|
requestMethod?: any;
|
|
5637
5853
|
/** The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string). */
|
|
5638
5854
|
requestBody?: any;
|
|
5639
|
-
/** The additional HTTP headers in the request to the RESTful API.
|
|
5640
|
-
additionalHeaders?:
|
|
5641
|
-
|
|
5642
|
-
|
|
5855
|
+
/** The additional HTTP headers in the request to the RESTful API. */
|
|
5856
|
+
additionalHeaders?: {
|
|
5857
|
+
[propertyName: string]: any;
|
|
5858
|
+
};
|
|
5859
|
+
/** The pagination rules to compose next page requests. */
|
|
5860
|
+
paginationRules?: {
|
|
5861
|
+
[propertyName: string]: any;
|
|
5862
|
+
};
|
|
5643
5863
|
}
|
|
5644
5864
|
/** SAP Table Resource properties. */
|
|
5645
5865
|
export interface SapTableResourceDataset extends Dataset {
|
|
@@ -6008,6 +6228,13 @@ export interface AzureDatabricksDeltaLakeDataset extends Dataset {
|
|
|
6008
6228
|
/** The database name of delta table. Type: string (or Expression with resultType string). */
|
|
6009
6229
|
database?: any;
|
|
6010
6230
|
}
|
|
6231
|
+
/** Microsoft Fabric LakeHouse Table. */
|
|
6232
|
+
export interface LakeHouseTableDataset extends Dataset {
|
|
6233
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6234
|
+
type: "LakeHouseTable";
|
|
6235
|
+
/** The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string). */
|
|
6236
|
+
table?: any;
|
|
6237
|
+
}
|
|
6011
6238
|
/** Base class for all control activities like IfCondition, ForEach , Until. */
|
|
6012
6239
|
export interface ControlActivity extends Activity {
|
|
6013
6240
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -6301,6 +6528,11 @@ export interface HdfsLocation extends DatasetLocation {
|
|
|
6301
6528
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6302
6529
|
type: "HdfsLocation";
|
|
6303
6530
|
}
|
|
6531
|
+
/** The location of Microsoft Fabric LakeHouse Files dataset. */
|
|
6532
|
+
export interface LakeHouseLocation extends DatasetLocation {
|
|
6533
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6534
|
+
type: "LakeHouseLocation";
|
|
6535
|
+
}
|
|
6304
6536
|
/** The data stored in text format. */
|
|
6305
6537
|
export interface TextFormat extends DatasetStorageFormat {
|
|
6306
6538
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -6443,8 +6675,8 @@ export interface AzureBlobStorageReadSettings extends StoreReadSettings {
|
|
|
6443
6675
|
prefix?: any;
|
|
6444
6676
|
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
6445
6677
|
fileListPath?: any;
|
|
6446
|
-
/** Indicates whether to enable partition discovery. */
|
|
6447
|
-
enablePartitionDiscovery?:
|
|
6678
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6679
|
+
enablePartitionDiscovery?: any;
|
|
6448
6680
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6449
6681
|
partitionRootPath?: any;
|
|
6450
6682
|
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
@@ -6466,8 +6698,8 @@ export interface AzureBlobFSReadSettings extends StoreReadSettings {
|
|
|
6466
6698
|
wildcardFileName?: any;
|
|
6467
6699
|
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
6468
6700
|
fileListPath?: any;
|
|
6469
|
-
/** Indicates whether to enable partition discovery. */
|
|
6470
|
-
enablePartitionDiscovery?:
|
|
6701
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6702
|
+
enablePartitionDiscovery?: any;
|
|
6471
6703
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6472
6704
|
partitionRootPath?: any;
|
|
6473
6705
|
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
@@ -6493,8 +6725,8 @@ export interface AzureDataLakeStoreReadSettings extends StoreReadSettings {
|
|
|
6493
6725
|
listAfter?: any;
|
|
6494
6726
|
/** Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string). */
|
|
6495
6727
|
listBefore?: any;
|
|
6496
|
-
/** Indicates whether to enable partition discovery. */
|
|
6497
|
-
enablePartitionDiscovery?:
|
|
6728
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6729
|
+
enablePartitionDiscovery?: any;
|
|
6498
6730
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6499
6731
|
partitionRootPath?: any;
|
|
6500
6732
|
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
@@ -6518,8 +6750,8 @@ export interface AmazonS3ReadSettings extends StoreReadSettings {
|
|
|
6518
6750
|
prefix?: any;
|
|
6519
6751
|
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
6520
6752
|
fileListPath?: any;
|
|
6521
|
-
/** Indicates whether to enable partition discovery. */
|
|
6522
|
-
enablePartitionDiscovery?:
|
|
6753
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6754
|
+
enablePartitionDiscovery?: any;
|
|
6523
6755
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6524
6756
|
partitionRootPath?: any;
|
|
6525
6757
|
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
@@ -6541,8 +6773,8 @@ export interface FileServerReadSettings extends StoreReadSettings {
|
|
|
6541
6773
|
wildcardFileName?: any;
|
|
6542
6774
|
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
6543
6775
|
fileListPath?: any;
|
|
6544
|
-
/** Indicates whether to enable partition discovery. */
|
|
6545
|
-
enablePartitionDiscovery?:
|
|
6776
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6777
|
+
enablePartitionDiscovery?: any;
|
|
6546
6778
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6547
6779
|
partitionRootPath?: any;
|
|
6548
6780
|
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
@@ -6568,8 +6800,8 @@ export interface AzureFileStorageReadSettings extends StoreReadSettings {
|
|
|
6568
6800
|
prefix?: any;
|
|
6569
6801
|
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
6570
6802
|
fileListPath?: any;
|
|
6571
|
-
/** Indicates whether to enable partition discovery. */
|
|
6572
|
-
enablePartitionDiscovery?:
|
|
6803
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6804
|
+
enablePartitionDiscovery?: any;
|
|
6573
6805
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6574
6806
|
partitionRootPath?: any;
|
|
6575
6807
|
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
@@ -6593,8 +6825,8 @@ export interface AmazonS3CompatibleReadSettings extends StoreReadSettings {
|
|
|
6593
6825
|
prefix?: any;
|
|
6594
6826
|
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
6595
6827
|
fileListPath?: any;
|
|
6596
|
-
/** Indicates whether to enable partition discovery. */
|
|
6597
|
-
enablePartitionDiscovery?:
|
|
6828
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6829
|
+
enablePartitionDiscovery?: any;
|
|
6598
6830
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6599
6831
|
partitionRootPath?: any;
|
|
6600
6832
|
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
@@ -6618,8 +6850,8 @@ export interface OracleCloudStorageReadSettings extends StoreReadSettings {
|
|
|
6618
6850
|
prefix?: any;
|
|
6619
6851
|
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
6620
6852
|
fileListPath?: any;
|
|
6621
|
-
/** Indicates whether to enable partition discovery. */
|
|
6622
|
-
enablePartitionDiscovery?:
|
|
6853
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6854
|
+
enablePartitionDiscovery?: any;
|
|
6623
6855
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6624
6856
|
partitionRootPath?: any;
|
|
6625
6857
|
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
@@ -6643,8 +6875,8 @@ export interface GoogleCloudStorageReadSettings extends StoreReadSettings {
|
|
|
6643
6875
|
prefix?: any;
|
|
6644
6876
|
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
6645
6877
|
fileListPath?: any;
|
|
6646
|
-
/** Indicates whether to enable partition discovery. */
|
|
6647
|
-
enablePartitionDiscovery?:
|
|
6878
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6879
|
+
enablePartitionDiscovery?: any;
|
|
6648
6880
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6649
6881
|
partitionRootPath?: any;
|
|
6650
6882
|
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
@@ -6664,16 +6896,16 @@ export interface FtpReadSettings extends StoreReadSettings {
|
|
|
6664
6896
|
wildcardFolderPath?: any;
|
|
6665
6897
|
/** Ftp wildcardFileName. Type: string (or Expression with resultType string). */
|
|
6666
6898
|
wildcardFileName?: any;
|
|
6667
|
-
/** Indicates whether to enable partition discovery. */
|
|
6668
|
-
enablePartitionDiscovery?:
|
|
6899
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6900
|
+
enablePartitionDiscovery?: any;
|
|
6669
6901
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6670
6902
|
partitionRootPath?: any;
|
|
6671
6903
|
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
6672
6904
|
deleteFilesAfterCompletion?: any;
|
|
6673
6905
|
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
6674
6906
|
fileListPath?: any;
|
|
6675
|
-
/** Specify whether to use binary transfer mode for FTP stores. */
|
|
6676
|
-
useBinaryTransfer?:
|
|
6907
|
+
/** Specify whether to use binary transfer mode for FTP stores. Type: boolean (or Expression with resultType boolean). */
|
|
6908
|
+
useBinaryTransfer?: any;
|
|
6677
6909
|
/** If true, disable parallel reading within each file. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
6678
6910
|
disableChunking?: any;
|
|
6679
6911
|
}
|
|
@@ -6687,8 +6919,8 @@ export interface SftpReadSettings extends StoreReadSettings {
|
|
|
6687
6919
|
wildcardFolderPath?: any;
|
|
6688
6920
|
/** Sftp wildcardFileName. Type: string (or Expression with resultType string). */
|
|
6689
6921
|
wildcardFileName?: any;
|
|
6690
|
-
/** Indicates whether to enable partition discovery. */
|
|
6691
|
-
enablePartitionDiscovery?:
|
|
6922
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6923
|
+
enablePartitionDiscovery?: any;
|
|
6692
6924
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6693
6925
|
partitionRootPath?: any;
|
|
6694
6926
|
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
@@ -6702,7 +6934,7 @@ export interface SftpReadSettings extends StoreReadSettings {
|
|
|
6702
6934
|
/** If true, disable parallel reading within each file. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
6703
6935
|
disableChunking?: any;
|
|
6704
6936
|
}
|
|
6705
|
-
/**
|
|
6937
|
+
/** Http read settings. */
|
|
6706
6938
|
export interface HttpReadSettings extends StoreReadSettings {
|
|
6707
6939
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6708
6940
|
type: "HttpReadSettings";
|
|
@@ -6712,12 +6944,10 @@ export interface HttpReadSettings extends StoreReadSettings {
|
|
|
6712
6944
|
requestBody?: any;
|
|
6713
6945
|
/** The additional HTTP headers in the request to the RESTful API. Type: string (or Expression with resultType string). */
|
|
6714
6946
|
additionalHeaders?: any;
|
|
6715
|
-
/** Specifies the timeout for a HTTP client to get HTTP response from HTTP server. */
|
|
6947
|
+
/** Specifies the timeout for a HTTP client to get HTTP response from HTTP server. Type: string (or Expression with resultType string). */
|
|
6716
6948
|
requestTimeout?: any;
|
|
6717
|
-
/**
|
|
6718
|
-
|
|
6719
|
-
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6720
|
-
partitionRootPath?: any;
|
|
6949
|
+
/** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
|
|
6950
|
+
additionalColumns?: any;
|
|
6721
6951
|
}
|
|
6722
6952
|
/** HDFS read settings. */
|
|
6723
6953
|
export interface HdfsReadSettings extends StoreReadSettings {
|
|
@@ -6731,8 +6961,8 @@ export interface HdfsReadSettings extends StoreReadSettings {
|
|
|
6731
6961
|
wildcardFileName?: any;
|
|
6732
6962
|
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
6733
6963
|
fileListPath?: any;
|
|
6734
|
-
/** Indicates whether to enable partition discovery. */
|
|
6735
|
-
enablePartitionDiscovery?:
|
|
6964
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6965
|
+
enablePartitionDiscovery?: any;
|
|
6736
6966
|
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6737
6967
|
partitionRootPath?: any;
|
|
6738
6968
|
/** The start of file's modified datetime. Type: string (or Expression with resultType string). */
|
|
@@ -6744,6 +6974,29 @@ export interface HdfsReadSettings extends StoreReadSettings {
|
|
|
6744
6974
|
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
6745
6975
|
deleteFilesAfterCompletion?: any;
|
|
6746
6976
|
}
|
|
6977
|
+
/** Microsoft Fabric LakeHouse Files read settings. */
|
|
6978
|
+
export interface LakeHouseReadSettings extends StoreReadSettings {
|
|
6979
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6980
|
+
type: "LakeHouseReadSettings";
|
|
6981
|
+
/** If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean). */
|
|
6982
|
+
recursive?: any;
|
|
6983
|
+
/** Microsoft Fabric LakeHouse Files wildcardFolderPath. Type: string (or Expression with resultType string). */
|
|
6984
|
+
wildcardFolderPath?: any;
|
|
6985
|
+
/** Microsoft Fabric LakeHouse Files wildcardFileName. Type: string (or Expression with resultType string). */
|
|
6986
|
+
wildcardFileName?: any;
|
|
6987
|
+
/** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
|
|
6988
|
+
fileListPath?: any;
|
|
6989
|
+
/** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
|
|
6990
|
+
enablePartitionDiscovery?: any;
|
|
6991
|
+
/** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
|
|
6992
|
+
partitionRootPath?: any;
|
|
6993
|
+
/** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
6994
|
+
deleteFilesAfterCompletion?: any;
|
|
6995
|
+
/** The start of file's modified datetime. Type: string (or Expression with resultType string). */
|
|
6996
|
+
modifiedDatetimeStart?: any;
|
|
6997
|
+
/** The end of file's modified datetime. Type: string (or Expression with resultType string). */
|
|
6998
|
+
modifiedDatetimeEnd?: any;
|
|
6999
|
+
}
|
|
6747
7000
|
/** Sftp write settings. */
|
|
6748
7001
|
export interface SftpWriteSettings extends StoreWriteSettings {
|
|
6749
7002
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -6771,7 +7024,7 @@ export interface AzureBlobFSWriteSettings extends StoreWriteSettings {
|
|
|
6771
7024
|
export interface AzureDataLakeStoreWriteSettings extends StoreWriteSettings {
|
|
6772
7025
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6773
7026
|
type: "AzureDataLakeStoreWriteSettings";
|
|
6774
|
-
/** Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type:
|
|
7027
|
+
/** Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string). */
|
|
6775
7028
|
expiryDateTime?: any;
|
|
6776
7029
|
}
|
|
6777
7030
|
/** File server write settings. */
|
|
@@ -6784,6 +7037,18 @@ export interface AzureFileStorageWriteSettings extends StoreWriteSettings {
|
|
|
6784
7037
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6785
7038
|
type: "AzureFileStorageWriteSettings";
|
|
6786
7039
|
}
|
|
7040
|
+
/** Microsoft Fabric LakeHouse Files write settings. */
|
|
7041
|
+
export interface LakeHouseWriteSettings extends StoreWriteSettings {
|
|
7042
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7043
|
+
type: "LakeHouseWriteSettings";
|
|
7044
|
+
}
|
|
7045
|
+
/** Parquet read settings. */
|
|
7046
|
+
export interface ParquetReadSettings extends FormatReadSettings {
|
|
7047
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7048
|
+
type: "ParquetReadSettings";
|
|
7049
|
+
/** Compression settings. */
|
|
7050
|
+
compressionProperties?: CompressionReadSettingsUnion;
|
|
7051
|
+
}
|
|
6787
7052
|
/** Delimited text read settings. */
|
|
6788
7053
|
export interface DelimitedTextReadSettings extends FormatReadSettings {
|
|
6789
7054
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -6918,6 +7183,8 @@ export interface ParquetSource extends CopySource {
|
|
|
6918
7183
|
type: "ParquetSource";
|
|
6919
7184
|
/** Parquet store settings. */
|
|
6920
7185
|
storeSettings?: StoreReadSettingsUnion;
|
|
7186
|
+
/** Parquet format settings. */
|
|
7187
|
+
formatSettings?: ParquetReadSettings;
|
|
6921
7188
|
/** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
|
|
6922
7189
|
additionalColumns?: any;
|
|
6923
7190
|
}
|
|
@@ -7082,8 +7349,8 @@ export interface SalesforceServiceCloudSource extends CopySource {
|
|
|
7082
7349
|
type: "SalesforceServiceCloudSource";
|
|
7083
7350
|
/** Database query. Type: string (or Expression with resultType string). */
|
|
7084
7351
|
query?: any;
|
|
7085
|
-
/** The read behavior for the operation. Default is Query. */
|
|
7086
|
-
readBehavior?:
|
|
7352
|
+
/** The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string). */
|
|
7353
|
+
readBehavior?: any;
|
|
7087
7354
|
/** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
|
|
7088
7355
|
additionalColumns?: any;
|
|
7089
7356
|
}
|
|
@@ -7242,7 +7509,7 @@ export interface Office365Source extends CopySource {
|
|
|
7242
7509
|
startTime?: any;
|
|
7243
7510
|
/** End time of the requested range for this dataset. Type: string (or Expression with resultType string). */
|
|
7244
7511
|
endTime?: any;
|
|
7245
|
-
/** The columns to be read out from the Office 365 table. Type: array of objects (or Expression with resultType array of objects). Example: [ { "name": "Id" }, { "name": "CreatedDateTime" } ] */
|
|
7512
|
+
/** The columns to be read out from the Office 365 table. Type: array of objects (or Expression with resultType array of objects). itemType: OutputColumn. Example: [ { "name": "Id" }, { "name": "CreatedDateTime" } ] */
|
|
7246
7513
|
outputColumns?: any;
|
|
7247
7514
|
}
|
|
7248
7515
|
/** A copy activity Azure Data Lake source. */
|
|
@@ -7270,6 +7537,17 @@ export interface HttpSource extends CopySource {
|
|
|
7270
7537
|
/** Specifies the timeout for a HTTP client to get HTTP response from HTTP server. The default value is equivalent to System.Net.HttpWebRequest.Timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
|
|
7271
7538
|
httpRequestTimeout?: any;
|
|
7272
7539
|
}
|
|
7540
|
+
/** A copy activity source for Microsoft Fabric LakeHouse Table. */
|
|
7541
|
+
export interface LakeHouseTableSource extends CopySource {
|
|
7542
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7543
|
+
type: "LakeHouseTableSource";
|
|
7544
|
+
/** Query an older snapshot by timestamp. Type: string (or Expression with resultType string). */
|
|
7545
|
+
timestampAsOf?: any;
|
|
7546
|
+
/** Query an older snapshot by version. Type: integer (or Expression with resultType integer). */
|
|
7547
|
+
versionAsOf?: any;
|
|
7548
|
+
/** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
|
|
7549
|
+
additionalColumns?: any;
|
|
7550
|
+
}
|
|
7273
7551
|
/** A copy activity snowflake source. */
|
|
7274
7552
|
export interface SnowflakeSource extends CopySource {
|
|
7275
7553
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -7587,7 +7865,7 @@ export interface OracleSink extends CopySink {
|
|
|
7587
7865
|
export interface AzureDataLakeStoreSink extends CopySink {
|
|
7588
7866
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7589
7867
|
type: "AzureDataLakeStoreSink";
|
|
7590
|
-
/** The type of copy behavior for copy sink. */
|
|
7868
|
+
/** The type of copy behavior for copy sink. Type: string (or Expression with resultType string). */
|
|
7591
7869
|
copyBehavior?: any;
|
|
7592
7870
|
/** Single File Parallel. */
|
|
7593
7871
|
enableAdlsSingleFileParallel?: any;
|
|
@@ -7596,7 +7874,7 @@ export interface AzureDataLakeStoreSink extends CopySink {
|
|
|
7596
7874
|
export interface AzureBlobFSSink extends CopySink {
|
|
7597
7875
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7598
7876
|
type: "AzureBlobFSSink";
|
|
7599
|
-
/** The type of copy behavior for copy sink. */
|
|
7877
|
+
/** The type of copy behavior for copy sink. Type: string (or Expression with resultType string). */
|
|
7600
7878
|
copyBehavior?: any;
|
|
7601
7879
|
/** Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects). */
|
|
7602
7880
|
metadata?: MetadataItem[];
|
|
@@ -7716,6 +7994,17 @@ export interface CosmosDbMongoDbApiSink extends CopySink {
|
|
|
7716
7994
|
/** Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string). */
|
|
7717
7995
|
writeBehavior?: any;
|
|
7718
7996
|
}
|
|
7997
|
+
/** A copy activity for Microsoft Fabric LakeHouse Table sink. */
|
|
7998
|
+
export interface LakeHouseTableSink extends CopySink {
|
|
7999
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
8000
|
+
type: "LakeHouseTableSink";
|
|
8001
|
+
/** The type of table action for LakeHouse Table sink. Possible values include: "None", "Append", "Overwrite". */
|
|
8002
|
+
tableActionOption?: any;
|
|
8003
|
+
/** Create partitions in folder structure based on one or multiple columns. Each distinct column value (pair) will be a new partition. Possible values include: "None", "PartitionByKey". */
|
|
8004
|
+
partitionOption?: any;
|
|
8005
|
+
/** Specify the partition column names from sink columns. Type: array of objects (or Expression with resultType array of objects). */
|
|
8006
|
+
partitionNameList?: any;
|
|
8007
|
+
}
|
|
7719
8008
|
/** Snowflake export command settings. */
|
|
7720
8009
|
export interface SnowflakeExportCopyCommand extends ExportSettings {
|
|
7721
8010
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -7858,7 +8147,7 @@ export interface ForEachActivity extends ControlActivity {
|
|
|
7858
8147
|
export interface WaitActivity extends ControlActivity {
|
|
7859
8148
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7860
8149
|
type: "Wait";
|
|
7861
|
-
/** Duration in seconds. */
|
|
8150
|
+
/** Duration in seconds. Type: integer (or Expression with resultType integer). */
|
|
7862
8151
|
waitTimeInSeconds: any;
|
|
7863
8152
|
}
|
|
7864
8153
|
/** This activity will fail within its own scope and output a custom error message and error code. The error message and code can provided either as a string literal or as an expression that can be evaluated to a string at runtime. The activity scope can be the whole pipeline or a control activity (e.g. foreach, switch, until), if the fail activity is contained in it. */
|
|
@@ -7876,7 +8165,7 @@ export interface UntilActivity extends ControlActivity {
|
|
|
7876
8165
|
type: "Until";
|
|
7877
8166
|
/** An expression that would evaluate to Boolean. The loop will continue until this expression evaluates to true */
|
|
7878
8167
|
expression: Expression;
|
|
7879
|
-
/** Specifies the timeout for the activity to run. If there is no value specified, it takes the value of TimeSpan.FromDays(7) which is 1 week as default. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
|
|
8168
|
+
/** Specifies the timeout for the activity to run. If there is no value specified, it takes the value of TimeSpan.FromDays(7) which is 1 week as default. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
|
|
7880
8169
|
timeout?: any;
|
|
7881
8170
|
/** List of activities to execute. */
|
|
7882
8171
|
activities: ActivityUnion[];
|
|
@@ -7909,10 +8198,14 @@ export interface FilterActivity extends ControlActivity {
|
|
|
7909
8198
|
export interface SetVariableActivity extends ControlActivity {
|
|
7910
8199
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7911
8200
|
type: "SetVariable";
|
|
8201
|
+
/** Activity policy. */
|
|
8202
|
+
policy?: SecureInputOutputPolicy;
|
|
7912
8203
|
/** Name of the variable whose value needs to be set. */
|
|
7913
8204
|
variableName?: string;
|
|
7914
|
-
/** Value to be set. Could be a static value or Expression */
|
|
8205
|
+
/** Value to be set. Could be a static value or Expression. */
|
|
7915
8206
|
value?: any;
|
|
8207
|
+
/** If set to true, it sets the pipeline run return value. */
|
|
8208
|
+
setSystemVariable?: boolean;
|
|
7916
8209
|
}
|
|
7917
8210
|
/** Append value for a Variable of type Array. */
|
|
7918
8211
|
export interface AppendVariableActivity extends ControlActivity {
|
|
@@ -7920,13 +8213,15 @@ export interface AppendVariableActivity extends ControlActivity {
|
|
|
7920
8213
|
type: "AppendVariable";
|
|
7921
8214
|
/** Name of the variable whose value needs to be appended to. */
|
|
7922
8215
|
variableName?: string;
|
|
7923
|
-
/** Value to be appended.
|
|
8216
|
+
/** Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item */
|
|
7924
8217
|
value?: any;
|
|
7925
8218
|
}
|
|
7926
8219
|
/** WebHook activity. */
|
|
7927
8220
|
export interface WebHookActivity extends ControlActivity {
|
|
7928
8221
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7929
8222
|
type: "WebHook";
|
|
8223
|
+
/** Activity policy. */
|
|
8224
|
+
policy?: SecureInputOutputPolicy;
|
|
7930
8225
|
/** Rest API method for target endpoint. */
|
|
7931
8226
|
method: WebHookActivityMethod;
|
|
7932
8227
|
/** WebHook activity target endpoint and path. Type: string (or Expression with resultType string). */
|
|
@@ -8000,7 +8295,9 @@ export interface HDInsightHiveActivity extends ExecutionActivity {
|
|
|
8000
8295
|
[propertyName: string]: any;
|
|
8001
8296
|
};
|
|
8002
8297
|
/** User specified arguments under hivevar namespace. */
|
|
8003
|
-
variables?:
|
|
8298
|
+
variables?: {
|
|
8299
|
+
[propertyName: string]: any;
|
|
8300
|
+
};
|
|
8004
8301
|
/** Query timeout value (in minutes). Effective when the HDInsight cluster is with ESP (Enterprise Security Package) */
|
|
8005
8302
|
queryTimeout?: number;
|
|
8006
8303
|
}
|
|
@@ -8420,8 +8717,16 @@ export interface SynapseNotebookActivity extends ExecutionActivity {
|
|
|
8420
8717
|
conf?: any;
|
|
8421
8718
|
/** Number of core and memory to be used for driver allocated in the specified Spark pool for the session, which will be used for overriding 'driverCores' and 'driverMemory' of the notebook you provide. Type: string (or Expression with resultType string). */
|
|
8422
8719
|
driverSize?: any;
|
|
8423
|
-
/** Number of executors to launch for this session, which will override the 'numExecutors' of the notebook you provide. */
|
|
8424
|
-
numExecutors?:
|
|
8720
|
+
/** Number of executors to launch for this session, which will override the 'numExecutors' of the notebook you provide. Type: integer (or Expression with resultType integer). */
|
|
8721
|
+
numExecutors?: any;
|
|
8722
|
+
/** The type of the spark config. */
|
|
8723
|
+
configurationType?: ConfigurationType;
|
|
8724
|
+
/** The spark configuration of the spark job. */
|
|
8725
|
+
targetSparkConfiguration?: SparkConfigurationParametrizationReference;
|
|
8726
|
+
/** Spark configuration property. */
|
|
8727
|
+
sparkConfig?: {
|
|
8728
|
+
[propertyName: string]: any;
|
|
8729
|
+
};
|
|
8425
8730
|
}
|
|
8426
8731
|
/** Execute spark job activity. */
|
|
8427
8732
|
export interface SynapseSparkJobDefinitionActivity extends ExecutionActivity {
|
|
@@ -8582,8 +8887,8 @@ export interface SalesforceSource extends TabularSource {
|
|
|
8582
8887
|
type: "SalesforceSource";
|
|
8583
8888
|
/** Database query. Type: string (or Expression with resultType string). */
|
|
8584
8889
|
query?: any;
|
|
8585
|
-
/** The read behavior for the operation. Default is Query. */
|
|
8586
|
-
readBehavior?:
|
|
8890
|
+
/** The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string). */
|
|
8891
|
+
readBehavior?: any;
|
|
8587
8892
|
}
|
|
8588
8893
|
/** A copy activity source for SAP Cloud for Customer source. */
|
|
8589
8894
|
export interface SapCloudForCustomerSource extends TabularSource {
|
|
@@ -8692,6 +8997,8 @@ export interface SqlServerSource extends TabularSource {
|
|
|
8692
8997
|
sqlReaderStoredProcedureName?: any;
|
|
8693
8998
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
8694
8999
|
storedProcedureParameters?: any;
|
|
9000
|
+
/** 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). */
|
|
9001
|
+
isolationLevel?: any;
|
|
8695
9002
|
/** Which additional types to produce. */
|
|
8696
9003
|
produceAdditionalTypes?: any;
|
|
8697
9004
|
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
@@ -8709,6 +9016,8 @@ export interface AmazonRdsForSqlServerSource extends TabularSource {
|
|
|
8709
9016
|
sqlReaderStoredProcedureName?: any;
|
|
8710
9017
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
8711
9018
|
storedProcedureParameters?: any;
|
|
9019
|
+
/** 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). */
|
|
9020
|
+
isolationLevel?: any;
|
|
8712
9021
|
/** Which additional types to produce. */
|
|
8713
9022
|
produceAdditionalTypes?: any;
|
|
8714
9023
|
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
@@ -8726,6 +9035,8 @@ export interface AzureSqlSource extends TabularSource {
|
|
|
8726
9035
|
sqlReaderStoredProcedureName?: any;
|
|
8727
9036
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
8728
9037
|
storedProcedureParameters?: any;
|
|
9038
|
+
/** 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). */
|
|
9039
|
+
isolationLevel?: any;
|
|
8729
9040
|
/** Which additional types to produce. */
|
|
8730
9041
|
produceAdditionalTypes?: any;
|
|
8731
9042
|
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
@@ -8743,6 +9054,8 @@ export interface SqlMISource extends TabularSource {
|
|
|
8743
9054
|
sqlReaderStoredProcedureName?: any;
|
|
8744
9055
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
8745
9056
|
storedProcedureParameters?: any;
|
|
9057
|
+
/** 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). */
|
|
9058
|
+
isolationLevel?: any;
|
|
8746
9059
|
/** Which additional types to produce. */
|
|
8747
9060
|
produceAdditionalTypes?: any;
|
|
8748
9061
|
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
@@ -8760,6 +9073,8 @@ export interface SqlDWSource extends TabularSource {
|
|
|
8760
9073
|
sqlReaderStoredProcedureName?: any;
|
|
8761
9074
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". Type: object (or Expression with resultType object), itemType: StoredProcedureParameter. */
|
|
8762
9075
|
storedProcedureParameters?: any;
|
|
9076
|
+
/** 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). */
|
|
9077
|
+
isolationLevel?: any;
|
|
8763
9078
|
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
8764
9079
|
partitionOption?: any;
|
|
8765
9080
|
/** The settings that will be leveraged for Sql source partitioning. */
|
|
@@ -9331,6 +9646,41 @@ export declare enum KnownType {
|
|
|
9331
9646
|
* **LinkedServiceReference**
|
|
9332
9647
|
*/
|
|
9333
9648
|
export type Type = string;
|
|
9649
|
+
/** Known values of {@link ActivityState} that the service accepts. */
|
|
9650
|
+
export declare enum KnownActivityState {
|
|
9651
|
+
/** Active */
|
|
9652
|
+
Active = "Active",
|
|
9653
|
+
/** Inactive */
|
|
9654
|
+
Inactive = "Inactive"
|
|
9655
|
+
}
|
|
9656
|
+
/**
|
|
9657
|
+
* Defines values for ActivityState. \
|
|
9658
|
+
* {@link KnownActivityState} can be used interchangeably with ActivityState,
|
|
9659
|
+
* this enum contains the known values that the service supports.
|
|
9660
|
+
* ### Known values supported by the service
|
|
9661
|
+
* **Active** \
|
|
9662
|
+
* **Inactive**
|
|
9663
|
+
*/
|
|
9664
|
+
export type ActivityState = string;
|
|
9665
|
+
/** Known values of {@link ActivityOnInactiveMarkAs} that the service accepts. */
|
|
9666
|
+
export declare enum KnownActivityOnInactiveMarkAs {
|
|
9667
|
+
/** Succeeded */
|
|
9668
|
+
Succeeded = "Succeeded",
|
|
9669
|
+
/** Failed */
|
|
9670
|
+
Failed = "Failed",
|
|
9671
|
+
/** Skipped */
|
|
9672
|
+
Skipped = "Skipped"
|
|
9673
|
+
}
|
|
9674
|
+
/**
|
|
9675
|
+
* Defines values for ActivityOnInactiveMarkAs. \
|
|
9676
|
+
* {@link KnownActivityOnInactiveMarkAs} can be used interchangeably with ActivityOnInactiveMarkAs,
|
|
9677
|
+
* this enum contains the known values that the service supports.
|
|
9678
|
+
* ### Known values supported by the service
|
|
9679
|
+
* **Succeeded** \
|
|
9680
|
+
* **Failed** \
|
|
9681
|
+
* **Skipped**
|
|
9682
|
+
*/
|
|
9683
|
+
export type ActivityOnInactiveMarkAs = string;
|
|
9334
9684
|
/** Known values of {@link DependencyCondition} that the service accepts. */
|
|
9335
9685
|
export declare enum KnownDependencyCondition {
|
|
9336
9686
|
/** Succeeded */
|
|
@@ -9575,6 +9925,57 @@ export declare enum KnownDataFlowDebugCommandType {
|
|
|
9575
9925
|
* **executeExpressionQuery**
|
|
9576
9926
|
*/
|
|
9577
9927
|
export type DataFlowDebugCommandType = string;
|
|
9928
|
+
/** Known values of {@link ConnectionType} that the service accepts. */
|
|
9929
|
+
export declare enum KnownConnectionType {
|
|
9930
|
+
/** Linkedservicetype */
|
|
9931
|
+
Linkedservicetype = "linkedservicetype"
|
|
9932
|
+
}
|
|
9933
|
+
/**
|
|
9934
|
+
* Defines values for ConnectionType. \
|
|
9935
|
+
* {@link KnownConnectionType} can be used interchangeably with ConnectionType,
|
|
9936
|
+
* this enum contains the known values that the service supports.
|
|
9937
|
+
* ### Known values supported by the service
|
|
9938
|
+
* **linkedservicetype**
|
|
9939
|
+
*/
|
|
9940
|
+
export type ConnectionType = string;
|
|
9941
|
+
/** Known values of {@link MappingType} that the service accepts. */
|
|
9942
|
+
export declare enum KnownMappingType {
|
|
9943
|
+
/** Direct */
|
|
9944
|
+
Direct = "Direct",
|
|
9945
|
+
/** Derived */
|
|
9946
|
+
Derived = "Derived",
|
|
9947
|
+
/** Aggregate */
|
|
9948
|
+
Aggregate = "Aggregate"
|
|
9949
|
+
}
|
|
9950
|
+
/**
|
|
9951
|
+
* Defines values for MappingType. \
|
|
9952
|
+
* {@link KnownMappingType} can be used interchangeably with MappingType,
|
|
9953
|
+
* this enum contains the known values that the service supports.
|
|
9954
|
+
* ### Known values supported by the service
|
|
9955
|
+
* **Direct** \
|
|
9956
|
+
* **Derived** \
|
|
9957
|
+
* **Aggregate**
|
|
9958
|
+
*/
|
|
9959
|
+
export type MappingType = string;
|
|
9960
|
+
/** Known values of {@link FrequencyType} that the service accepts. */
|
|
9961
|
+
export declare enum KnownFrequencyType {
|
|
9962
|
+
/** Hour */
|
|
9963
|
+
Hour = "Hour",
|
|
9964
|
+
/** Minute */
|
|
9965
|
+
Minute = "Minute",
|
|
9966
|
+
/** Second */
|
|
9967
|
+
Second = "Second"
|
|
9968
|
+
}
|
|
9969
|
+
/**
|
|
9970
|
+
* Defines values for FrequencyType. \
|
|
9971
|
+
* {@link KnownFrequencyType} can be used interchangeably with FrequencyType,
|
|
9972
|
+
* this enum contains the known values that the service supports.
|
|
9973
|
+
* ### Known values supported by the service
|
|
9974
|
+
* **Hour** \
|
|
9975
|
+
* **Minute** \
|
|
9976
|
+
* **Second**
|
|
9977
|
+
*/
|
|
9978
|
+
export type FrequencyType = string;
|
|
9578
9979
|
/** Known values of {@link DataFlowReferenceType} that the service accepts. */
|
|
9579
9980
|
export declare enum KnownDataFlowReferenceType {
|
|
9580
9981
|
/** DataFlowReference */
|
|
@@ -9788,22 +10189,6 @@ export declare enum KnownSqlAlwaysEncryptedAkvAuthType {
|
|
|
9788
10189
|
* **UserAssignedManagedIdentity**
|
|
9789
10190
|
*/
|
|
9790
10191
|
export type SqlAlwaysEncryptedAkvAuthType = string;
|
|
9791
|
-
/** Known values of {@link CosmosDbServicePrincipalCredentialType} that the service accepts. */
|
|
9792
|
-
export declare enum KnownCosmosDbServicePrincipalCredentialType {
|
|
9793
|
-
/** ServicePrincipalKey */
|
|
9794
|
-
ServicePrincipalKey = "ServicePrincipalKey",
|
|
9795
|
-
/** ServicePrincipalCert */
|
|
9796
|
-
ServicePrincipalCert = "ServicePrincipalCert"
|
|
9797
|
-
}
|
|
9798
|
-
/**
|
|
9799
|
-
* Defines values for CosmosDbServicePrincipalCredentialType. \
|
|
9800
|
-
* {@link KnownCosmosDbServicePrincipalCredentialType} can be used interchangeably with CosmosDbServicePrincipalCredentialType,
|
|
9801
|
-
* this enum contains the known values that the service supports.
|
|
9802
|
-
* ### Known values supported by the service
|
|
9803
|
-
* **ServicePrincipalKey** \
|
|
9804
|
-
* **ServicePrincipalCert**
|
|
9805
|
-
*/
|
|
9806
|
-
export type CosmosDbServicePrincipalCredentialType = string;
|
|
9807
10192
|
/** Known values of {@link CosmosDbConnectionMode} that the service accepts. */
|
|
9808
10193
|
export declare enum KnownCosmosDbConnectionMode {
|
|
9809
10194
|
/** Gateway */
|
|
@@ -10312,22 +10697,6 @@ export declare enum KnownGoogleAdWordsAuthenticationType {
|
|
|
10312
10697
|
* **UserAuthentication**
|
|
10313
10698
|
*/
|
|
10314
10699
|
export type GoogleAdWordsAuthenticationType = string;
|
|
10315
|
-
/** Known values of {@link SalesforceSourceReadBehavior} that the service accepts. */
|
|
10316
|
-
export declare enum KnownSalesforceSourceReadBehavior {
|
|
10317
|
-
/** Query */
|
|
10318
|
-
Query = "Query",
|
|
10319
|
-
/** QueryAll */
|
|
10320
|
-
QueryAll = "QueryAll"
|
|
10321
|
-
}
|
|
10322
|
-
/**
|
|
10323
|
-
* Defines values for SalesforceSourceReadBehavior. \
|
|
10324
|
-
* {@link KnownSalesforceSourceReadBehavior} can be used interchangeably with SalesforceSourceReadBehavior,
|
|
10325
|
-
* this enum contains the known values that the service supports.
|
|
10326
|
-
* ### Known values supported by the service
|
|
10327
|
-
* **Query** \
|
|
10328
|
-
* **QueryAll**
|
|
10329
|
-
*/
|
|
10330
|
-
export type SalesforceSourceReadBehavior = string;
|
|
10331
10700
|
/** Known values of {@link CassandraSourceReadConsistencyLevels} that the service accepts. */
|
|
10332
10701
|
export declare enum KnownCassandraSourceReadConsistencyLevels {
|
|
10333
10702
|
/** ALL */
|
|
@@ -10741,19 +11110,6 @@ export declare enum KnownNotebookParameterType {
|
|
|
10741
11110
|
* **bool**
|
|
10742
11111
|
*/
|
|
10743
11112
|
export type NotebookParameterType = string;
|
|
10744
|
-
/** Known values of {@link SparkJobReferenceType} that the service accepts. */
|
|
10745
|
-
export declare enum KnownSparkJobReferenceType {
|
|
10746
|
-
/** SparkJobDefinitionReference */
|
|
10747
|
-
SparkJobDefinitionReference = "SparkJobDefinitionReference"
|
|
10748
|
-
}
|
|
10749
|
-
/**
|
|
10750
|
-
* Defines values for SparkJobReferenceType. \
|
|
10751
|
-
* {@link KnownSparkJobReferenceType} can be used interchangeably with SparkJobReferenceType,
|
|
10752
|
-
* this enum contains the known values that the service supports.
|
|
10753
|
-
* ### Known values supported by the service
|
|
10754
|
-
* **SparkJobDefinitionReference**
|
|
10755
|
-
*/
|
|
10756
|
-
export type SparkJobReferenceType = string;
|
|
10757
11113
|
/** Known values of {@link ConfigurationType} that the service accepts. */
|
|
10758
11114
|
export declare enum KnownConfigurationType {
|
|
10759
11115
|
/** Default */
|
|
@@ -10786,6 +11142,19 @@ export declare enum KnownSparkConfigurationReferenceType {
|
|
|
10786
11142
|
* **SparkConfigurationReference**
|
|
10787
11143
|
*/
|
|
10788
11144
|
export type SparkConfigurationReferenceType = string;
|
|
11145
|
+
/** Known values of {@link SparkJobReferenceType} that the service accepts. */
|
|
11146
|
+
export declare enum KnownSparkJobReferenceType {
|
|
11147
|
+
/** SparkJobDefinitionReference */
|
|
11148
|
+
SparkJobDefinitionReference = "SparkJobDefinitionReference"
|
|
11149
|
+
}
|
|
11150
|
+
/**
|
|
11151
|
+
* Defines values for SparkJobReferenceType. \
|
|
11152
|
+
* {@link KnownSparkJobReferenceType} can be used interchangeably with SparkJobReferenceType,
|
|
11153
|
+
* this enum contains the known values that the service supports.
|
|
11154
|
+
* ### Known values supported by the service
|
|
11155
|
+
* **SparkJobDefinitionReference**
|
|
11156
|
+
*/
|
|
11157
|
+
export type SparkJobReferenceType = string;
|
|
10789
11158
|
/** Known values of {@link RecurrenceFrequency} that the service accepts. */
|
|
10790
11159
|
export declare enum KnownRecurrenceFrequency {
|
|
10791
11160
|
/** NotSpecified */
|
|
@@ -11070,6 +11439,22 @@ export declare enum KnownJsonWriteFilePattern {
|
|
|
11070
11439
|
* **arrayOfObjects**
|
|
11071
11440
|
*/
|
|
11072
11441
|
export type JsonWriteFilePattern = string;
|
|
11442
|
+
/** Known values of {@link SalesforceSourceReadBehavior} that the service accepts. */
|
|
11443
|
+
export declare enum KnownSalesforceSourceReadBehavior {
|
|
11444
|
+
/** Query */
|
|
11445
|
+
Query = "Query",
|
|
11446
|
+
/** QueryAll */
|
|
11447
|
+
QueryAll = "QueryAll"
|
|
11448
|
+
}
|
|
11449
|
+
/**
|
|
11450
|
+
* Defines values for SalesforceSourceReadBehavior. \
|
|
11451
|
+
* {@link KnownSalesforceSourceReadBehavior} can be used interchangeably with SalesforceSourceReadBehavior,
|
|
11452
|
+
* this enum contains the known values that the service supports.
|
|
11453
|
+
* ### Known values supported by the service
|
|
11454
|
+
* **Query** \
|
|
11455
|
+
* **QueryAll**
|
|
11456
|
+
*/
|
|
11457
|
+
export type SalesforceSourceReadBehavior = string;
|
|
11073
11458
|
/** Known values of {@link AmazonRdsForOraclePartitionOption} that the service accepts. */
|
|
11074
11459
|
export declare enum KnownAmazonRdsForOraclePartitionOption {
|
|
11075
11460
|
/** None */
|
|
@@ -11873,6 +12258,47 @@ export interface GlobalParametersListByFactoryNextOptionalParams extends coreCli
|
|
|
11873
12258
|
/** Contains response data for the listByFactoryNext operation. */
|
|
11874
12259
|
export type GlobalParametersListByFactoryNextResponse = GlobalParameterListResponse;
|
|
11875
12260
|
/** Optional parameters. */
|
|
12261
|
+
export interface ChangeDataCaptureListByFactoryOptionalParams extends coreClient.OperationOptions {
|
|
12262
|
+
}
|
|
12263
|
+
/** Contains response data for the listByFactory operation. */
|
|
12264
|
+
export type ChangeDataCaptureListByFactoryResponse = ChangeDataCaptureListResponse;
|
|
12265
|
+
/** Optional parameters. */
|
|
12266
|
+
export interface ChangeDataCaptureCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
12267
|
+
/** ETag of the change data capture entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. */
|
|
12268
|
+
ifMatch?: string;
|
|
12269
|
+
}
|
|
12270
|
+
/** Contains response data for the createOrUpdate operation. */
|
|
12271
|
+
export type ChangeDataCaptureCreateOrUpdateResponse = ChangeDataCaptureResource;
|
|
12272
|
+
/** Optional parameters. */
|
|
12273
|
+
export interface ChangeDataCaptureGetOptionalParams extends coreClient.OperationOptions {
|
|
12274
|
+
/** ETag of the change data capture entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned. */
|
|
12275
|
+
ifNoneMatch?: string;
|
|
12276
|
+
}
|
|
12277
|
+
/** Contains response data for the get operation. */
|
|
12278
|
+
export type ChangeDataCaptureGetResponse = ChangeDataCaptureResource;
|
|
12279
|
+
/** Optional parameters. */
|
|
12280
|
+
export interface ChangeDataCaptureDeleteOptionalParams extends coreClient.OperationOptions {
|
|
12281
|
+
}
|
|
12282
|
+
/** Optional parameters. */
|
|
12283
|
+
export interface ChangeDataCaptureStartOptionalParams extends coreClient.OperationOptions {
|
|
12284
|
+
}
|
|
12285
|
+
/** Optional parameters. */
|
|
12286
|
+
export interface ChangeDataCaptureStopOptionalParams extends coreClient.OperationOptions {
|
|
12287
|
+
}
|
|
12288
|
+
/** Optional parameters. */
|
|
12289
|
+
export interface ChangeDataCaptureStatusOptionalParams extends coreClient.OperationOptions {
|
|
12290
|
+
}
|
|
12291
|
+
/** Contains response data for the status operation. */
|
|
12292
|
+
export type ChangeDataCaptureStatusResponse = {
|
|
12293
|
+
/** The parsed response body. */
|
|
12294
|
+
body: string;
|
|
12295
|
+
};
|
|
12296
|
+
/** Optional parameters. */
|
|
12297
|
+
export interface ChangeDataCaptureListByFactoryNextOptionalParams extends coreClient.OperationOptions {
|
|
12298
|
+
}
|
|
12299
|
+
/** Contains response data for the listByFactoryNext operation. */
|
|
12300
|
+
export type ChangeDataCaptureListByFactoryNextResponse = ChangeDataCaptureListResponse;
|
|
12301
|
+
/** Optional parameters. */
|
|
11876
12302
|
export interface DataFactoryManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
11877
12303
|
/** server parameter */
|
|
11878
12304
|
$host?: string;
|