@azure/arm-datafactory 10.1.1-alpha.20220201.1 → 10.2.0

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.
@@ -17,7 +17,7 @@ export declare interface AccessPolicyResponse {
17
17
  /** A pipeline activity. */
18
18
  export declare interface Activity {
19
19
  /** Polymorphic discriminator, which specifies the different types this object can be */
20
- type: "Container" | "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "ExecutePipeline" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "IfCondition" | "Switch" | "ForEach" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "Wait" | "Fail" | "Until" | "Validation" | "Filter" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "SetVariable" | "AppendVariable" | "AzureFunctionActivity" | "WebHook" | "ExecuteDataFlow" | "ExecuteWranglingDataflow";
20
+ type: "Container" | "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "ExecutePipeline" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "IfCondition" | "Switch" | "ForEach" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "Wait" | "Fail" | "Until" | "Validation" | "Filter" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "SetVariable" | "AppendVariable" | "AzureFunctionActivity" | "WebHook" | "ExecuteDataFlow" | "ExecuteWranglingDataflow" | "Script";
21
21
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
22
22
  [property: string]: any;
23
23
  /** Activity name. */
@@ -3860,14 +3860,14 @@ export declare type ExecuteWranglingDataflowActivity = Activity & {
3860
3860
  /** Base class for all execution activities. */
3861
3861
  export declare type ExecutionActivity = Activity & {
3862
3862
  /** Polymorphic discriminator, which specifies the different types this object can be */
3863
- type: "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "AzureFunctionActivity" | "ExecuteDataFlow";
3863
+ type: "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "AzureFunctionActivity" | "ExecuteDataFlow" | "Script";
3864
3864
  /** Linked service reference. */
3865
3865
  linkedServiceName?: LinkedServiceReference;
3866
3866
  /** Activity policy. */
3867
3867
  policy?: ActivityPolicy;
3868
3868
  };
3869
3869
 
3870
- export declare type ExecutionActivityUnion = ExecutionActivity | CopyActivity | HDInsightHiveActivity | HDInsightPigActivity | HDInsightMapReduceActivity | HDInsightStreamingActivity | HDInsightSparkActivity | ExecuteSsisPackageActivity | CustomActivity | SqlServerStoredProcedureActivity | DeleteActivity | AzureDataExplorerCommandActivity | LookupActivity | WebActivity | GetMetadataActivity | AzureMLBatchExecutionActivity | AzureMLUpdateResourceActivity | AzureMLExecutePipelineActivity | DataLakeAnalyticsUsqlActivity | DatabricksNotebookActivity | DatabricksSparkJarActivity | DatabricksSparkPythonActivity | AzureFunctionActivity | ExecuteDataFlowActivity;
3870
+ export declare type ExecutionActivityUnion = ExecutionActivity | CopyActivity | HDInsightHiveActivity | HDInsightPigActivity | HDInsightMapReduceActivity | HDInsightStreamingActivity | HDInsightSparkActivity | ExecuteSsisPackageActivity | CustomActivity | SqlServerStoredProcedureActivity | DeleteActivity | AzureDataExplorerCommandActivity | LookupActivity | WebActivity | GetMetadataActivity | AzureMLBatchExecutionActivity | AzureMLUpdateResourceActivity | AzureMLExecutePipelineActivity | DataLakeAnalyticsUsqlActivity | DatabricksNotebookActivity | DatabricksSparkJarActivity | DatabricksSparkPythonActivity | AzureFunctionActivity | ExecuteDataFlowActivity | ScriptActivity;
3871
3871
 
3872
3872
  /** Export command settings. */
3873
3873
  export declare interface ExportSettings {
@@ -6931,6 +6931,41 @@ export declare enum KnownSapTablePartitionOption {
6931
6931
  PartitionOnTime = "PartitionOnTime"
6932
6932
  }
6933
6933
 
6934
+ /** Known values of {@link ScriptActivityLogDestination} that the service accepts. */
6935
+ export declare enum KnownScriptActivityLogDestination {
6936
+ ActivityOutput = "ActivityOutput",
6937
+ ExternalStore = "ExternalStore"
6938
+ }
6939
+
6940
+ /** Known values of {@link ScriptActivityParameterDirection} that the service accepts. */
6941
+ export declare enum KnownScriptActivityParameterDirection {
6942
+ Input = "Input",
6943
+ Output = "Output",
6944
+ InputOutput = "InputOutput"
6945
+ }
6946
+
6947
+ /** Known values of {@link ScriptActivityParameterType} that the service accepts. */
6948
+ export declare enum KnownScriptActivityParameterType {
6949
+ Boolean = "Boolean",
6950
+ DateTime = "DateTime",
6951
+ DateTimeOffset = "DateTimeOffset",
6952
+ Decimal = "Decimal",
6953
+ Double = "Double",
6954
+ Guid = "Guid",
6955
+ Int16 = "Int16",
6956
+ Int32 = "Int32",
6957
+ Int64 = "Int64",
6958
+ Single = "Single",
6959
+ String = "String",
6960
+ Timespan = "Timespan"
6961
+ }
6962
+
6963
+ /** Known values of {@link ScriptType} that the service accepts. */
6964
+ export declare enum KnownScriptType {
6965
+ Query = "Query",
6966
+ NonQuery = "NonQuery"
6967
+ }
6968
+
6934
6969
  /** Known values of {@link SelfHostedIntegrationRuntimeNodeStatus} that the service accepts. */
6935
6970
  export declare enum KnownSelfHostedIntegrationRuntimeNodeStatus {
6936
6971
  NeedRegistration = "NeedRegistration",
@@ -7048,6 +7083,12 @@ export declare enum KnownSybaseAuthenticationType {
7048
7083
  Windows = "Windows"
7049
7084
  }
7050
7085
 
7086
+ /** Known values of {@link TeamDeskAuthenticationType} that the service accepts. */
7087
+ export declare enum KnownTeamDeskAuthenticationType {
7088
+ Basic = "Basic",
7089
+ Token = "Token"
7090
+ }
7091
+
7051
7092
  /** Known values of {@link TeradataAuthenticationType} that the service accepts. */
7052
7093
  export declare enum KnownTeradataAuthenticationType {
7053
7094
  Basic = "Basic",
@@ -7109,6 +7150,12 @@ export declare enum KnownWebHookActivityMethod {
7109
7150
  Post = "POST"
7110
7151
  }
7111
7152
 
7153
+ /** Known values of {@link ZendeskAuthenticationType} that the service accepts. */
7154
+ export declare enum KnownZendeskAuthenticationType {
7155
+ Basic = "Basic",
7156
+ Token = "Token"
7157
+ }
7158
+
7112
7159
  /** The linked integration runtime information. */
7113
7160
  export declare interface LinkedIntegrationRuntime {
7114
7161
  /**
@@ -7173,7 +7220,7 @@ export declare type LinkedIntegrationRuntimeTypeUnion = LinkedIntegrationRuntime
7173
7220
  /** The Azure Data Factory nested object which contains the information and credential which can be used to connect with related store or compute resource. */
7174
7221
  export declare interface LinkedService {
7175
7222
  /** Polymorphic discriminator, which specifies the different types this object can be */
7176
- 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" | "RestService" | "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";
7223
+ 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" | "RestService" | "AmazonS3" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "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";
7177
7224
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
7178
7225
  [property: string]: any;
7179
7226
  /** The integration runtime reference. */
@@ -7292,7 +7339,7 @@ export declare interface LinkedServicesListByFactoryOptionalParams extends coreC
7292
7339
  /** Contains response data for the listByFactory operation. */
7293
7340
  export declare type LinkedServicesListByFactoryResponse = LinkedServiceListResponse;
7294
7341
 
7295
- export declare type LinkedServiceUnion = LinkedService | AzureStorageLinkedService | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService | FileServerLinkedService | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | AzureMLServiceLinkedService | OdbcLinkedService | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | SapOpenHubLinkedService | RestServiceLinkedService | 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;
7342
+ export declare type LinkedServiceUnion = LinkedService | AzureStorageLinkedService | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService | FileServerLinkedService | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | AzureMLServiceLinkedService | OdbcLinkedService | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | SapOpenHubLinkedService | RestServiceLinkedService | AmazonS3LinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | 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;
7296
7343
 
7297
7344
  /** Log location settings. */
7298
7345
  export declare interface LogLocationSettings {
@@ -9418,6 +9465,18 @@ export declare interface QueryDataFlowDebugSessionsResponse {
9418
9465
  nextLink?: string;
9419
9466
  }
9420
9467
 
9468
+ /** Linked service for Quickbase. */
9469
+ export declare type QuickbaseLinkedService = LinkedService & {
9470
+ /** Polymorphic discriminator, which specifies the different types this object can be */
9471
+ type: "Quickbase";
9472
+ /** The url to connect Quickbase source. Type: string (or Expression with resultType string). */
9473
+ url: Record<string, unknown>;
9474
+ /** The user token for the Quickbase source. */
9475
+ userToken: SecretBaseUnion;
9476
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
9477
+ encryptedCredential?: Record<string, unknown>;
9478
+ };
9479
+
9421
9480
  /** QuickBooks server linked service. */
9422
9481
  export declare type QuickBooksLinkedService = LinkedService & {
9423
9482
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -10349,6 +10408,99 @@ export declare interface ScriptAction {
10349
10408
  parameters?: string;
10350
10409
  }
10351
10410
 
10411
+ /** Script activity type. */
10412
+ export declare type ScriptActivity = ExecutionActivity & {
10413
+ /** Polymorphic discriminator, which specifies the different types this object can be */
10414
+ type: "Script";
10415
+ /** Array of script blocks. Type: array. */
10416
+ scripts?: ScriptActivityScriptBlock[];
10417
+ /** Log settings of script activity. */
10418
+ logSettings?: ScriptActivityTypePropertiesLogSettings;
10419
+ };
10420
+
10421
+ /**
10422
+ * Defines values for ScriptActivityLogDestination. \
10423
+ * {@link KnownScriptActivityLogDestination} can be used interchangeably with ScriptActivityLogDestination,
10424
+ * this enum contains the known values that the service supports.
10425
+ * ### Known values supported by the service
10426
+ * **ActivityOutput** \
10427
+ * **ExternalStore**
10428
+ */
10429
+ export declare type ScriptActivityLogDestination = string;
10430
+
10431
+ /** Parameters of a script block. */
10432
+ export declare interface ScriptActivityParameter {
10433
+ /** The name of the parameter. Type: string (or Expression with resultType string). */
10434
+ name?: Record<string, unknown>;
10435
+ /** The type of the parameter. */
10436
+ type?: ScriptActivityParameterType;
10437
+ /** The value of the parameter. */
10438
+ value?: Record<string, unknown>;
10439
+ /** The direction of the parameter. */
10440
+ direction?: ScriptActivityParameterDirection;
10441
+ /** The size of the output direction parameter. */
10442
+ size?: number;
10443
+ }
10444
+
10445
+ /**
10446
+ * Defines values for ScriptActivityParameterDirection. \
10447
+ * {@link KnownScriptActivityParameterDirection} can be used interchangeably with ScriptActivityParameterDirection,
10448
+ * this enum contains the known values that the service supports.
10449
+ * ### Known values supported by the service
10450
+ * **Input** \
10451
+ * **Output** \
10452
+ * **InputOutput**
10453
+ */
10454
+ export declare type ScriptActivityParameterDirection = string;
10455
+
10456
+ /**
10457
+ * Defines values for ScriptActivityParameterType. \
10458
+ * {@link KnownScriptActivityParameterType} can be used interchangeably with ScriptActivityParameterType,
10459
+ * this enum contains the known values that the service supports.
10460
+ * ### Known values supported by the service
10461
+ * **Boolean** \
10462
+ * **DateTime** \
10463
+ * **DateTimeOffset** \
10464
+ * **Decimal** \
10465
+ * **Double** \
10466
+ * **Guid** \
10467
+ * **Int16** \
10468
+ * **Int32** \
10469
+ * **Int64** \
10470
+ * **Single** \
10471
+ * **String** \
10472
+ * **Timespan**
10473
+ */
10474
+ export declare type ScriptActivityParameterType = string;
10475
+
10476
+ /** Script block of scripts. */
10477
+ export declare interface ScriptActivityScriptBlock {
10478
+ /** The query text. Type: string (or Expression with resultType string). */
10479
+ text: Record<string, unknown>;
10480
+ /** The type of the query. Type: string. */
10481
+ type: ScriptType;
10482
+ /** Array of script parameters. Type: array. */
10483
+ parameters?: ScriptActivityParameter[];
10484
+ }
10485
+
10486
+ /** Log settings of script activity. */
10487
+ export declare interface ScriptActivityTypePropertiesLogSettings {
10488
+ /** The destination of logs. Type: string. */
10489
+ logDestination: ScriptActivityLogDestination;
10490
+ /** Log location settings customer needs to provide when enabling log. */
10491
+ logLocationSettings?: LogLocationSettings;
10492
+ }
10493
+
10494
+ /**
10495
+ * Defines values for ScriptType. \
10496
+ * {@link KnownScriptType} can be used interchangeably with ScriptType,
10497
+ * this enum contains the known values that the service supports.
10498
+ * ### Known values supported by the service
10499
+ * **Query** \
10500
+ * **NonQuery**
10501
+ */
10502
+ export declare type ScriptType = string;
10503
+
10352
10504
  /** The base definition of a secret type. */
10353
10505
  export declare interface SecretBase {
10354
10506
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -10819,6 +10971,16 @@ export declare interface SkipErrorFile {
10819
10971
  dataInconsistency?: Record<string, unknown>;
10820
10972
  }
10821
10973
 
10974
+ /** Linked service for Smartsheet. */
10975
+ export declare type SmartsheetLinkedService = LinkedService & {
10976
+ /** Polymorphic discriminator, which specifies the different types this object can be */
10977
+ type: "Smartsheet";
10978
+ /** The api token for the Smartsheet source. */
10979
+ apiToken: SecretBaseUnion;
10980
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
10981
+ encryptedCredential?: Record<string, unknown>;
10982
+ };
10983
+
10822
10984
  /** The snowflake dataset. */
10823
10985
  export declare type SnowflakeDataset = Dataset & {
10824
10986
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -11778,6 +11940,34 @@ export declare type TarReadSettings = CompressionReadSettings & {
11778
11940
  preserveCompressionFileNameAsFolder?: Record<string, unknown>;
11779
11941
  };
11780
11942
 
11943
+ /**
11944
+ * Defines values for TeamDeskAuthenticationType. \
11945
+ * {@link KnownTeamDeskAuthenticationType} can be used interchangeably with TeamDeskAuthenticationType,
11946
+ * this enum contains the known values that the service supports.
11947
+ * ### Known values supported by the service
11948
+ * **Basic** \
11949
+ * **Token**
11950
+ */
11951
+ export declare type TeamDeskAuthenticationType = string;
11952
+
11953
+ /** Linked service for TeamDesk. */
11954
+ export declare type TeamDeskLinkedService = LinkedService & {
11955
+ /** Polymorphic discriminator, which specifies the different types this object can be */
11956
+ type: "TeamDesk";
11957
+ /** The authentication type to use. */
11958
+ authenticationType: TeamDeskAuthenticationType;
11959
+ /** The url to connect TeamDesk source. Type: string (or Expression with resultType string). */
11960
+ url: Record<string, unknown>;
11961
+ /** The username of the TeamDesk source. Type: string (or Expression with resultType string). */
11962
+ userName?: Record<string, unknown>;
11963
+ /** The password of the TeamDesk source. */
11964
+ password?: SecretBaseUnion;
11965
+ /** The api token for the TeamDesk source. */
11966
+ apiToken?: SecretBaseUnion;
11967
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
11968
+ encryptedCredential?: Record<string, unknown>;
11969
+ };
11970
+
11781
11971
  /**
11782
11972
  * Defines values for TeradataAuthenticationType. \
11783
11973
  * {@link KnownTeradataAuthenticationType} can be used interchangeably with TeradataAuthenticationType,
@@ -12754,6 +12944,34 @@ export declare type XmlSource = CopySource & {
12754
12944
  additionalColumns?: Record<string, unknown>;
12755
12945
  };
12756
12946
 
12947
+ /**
12948
+ * Defines values for ZendeskAuthenticationType. \
12949
+ * {@link KnownZendeskAuthenticationType} can be used interchangeably with ZendeskAuthenticationType,
12950
+ * this enum contains the known values that the service supports.
12951
+ * ### Known values supported by the service
12952
+ * **Basic** \
12953
+ * **Token**
12954
+ */
12955
+ export declare type ZendeskAuthenticationType = string;
12956
+
12957
+ /** Linked service for Zendesk. */
12958
+ export declare type ZendeskLinkedService = LinkedService & {
12959
+ /** Polymorphic discriminator, which specifies the different types this object can be */
12960
+ type: "Zendesk";
12961
+ /** The authentication type to use. */
12962
+ authenticationType: ZendeskAuthenticationType;
12963
+ /** The url to connect Zendesk source. Type: string (or Expression with resultType string). */
12964
+ url: Record<string, unknown>;
12965
+ /** The username of the Zendesk source. Type: string (or Expression with resultType string). */
12966
+ userName?: Record<string, unknown>;
12967
+ /** The password of the Zendesk source. */
12968
+ password?: SecretBaseUnion;
12969
+ /** The api token for the Zendesk source. */
12970
+ apiToken?: SecretBaseUnion;
12971
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
12972
+ encryptedCredential?: Record<string, unknown>;
12973
+ };
12974
+
12757
12975
  /** The ZipDeflate compression read settings. */
12758
12976
  export declare type ZipDeflateReadSettings = CompressionReadSettings & {
12759
12977
  /** Polymorphic discriminator, which specifies the different types this object can be */