@azure/arm-datafactory 15.0.1-alpha.20240607.1 → 16.0.0-alpha.20240611.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -273,8 +273,8 @@ export type DataFlowUnion =
273
273
  | WranglingDataFlow;
274
274
  export type CredentialUnion =
275
275
  | Credential
276
- | ManagedIdentityCredential
277
- | ServicePrincipalCredential;
276
+ | ServicePrincipalCredential
277
+ | ManagedIdentityCredential;
278
278
  export type SecretBaseUnion =
279
279
  | SecretBase
280
280
  | SecureString
@@ -2306,7 +2306,7 @@ export interface CredentialListResponse {
2306
2306
  /** The Azure Data Factory nested object which contains the information and credential which can be used to connect with related store or compute resource. */
2307
2307
  export interface Credential {
2308
2308
  /** Polymorphic discriminator, which specifies the different types this object can be */
2309
- type: "ManagedIdentity" | "ServicePrincipal";
2309
+ type: "ServicePrincipal" | "ManagedIdentity";
2310
2310
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
2311
2311
  [property: string]: any;
2312
2312
  /** Credential description. */
@@ -3056,6 +3056,48 @@ export interface SsisVariable {
3056
3056
  sensitiveValue?: string;
3057
3057
  }
3058
3058
 
3059
+ /** Sql Server family connector common linked service properties. */
3060
+ export interface SqlServerBaseLinkedServiceTypeProperties {
3061
+ /** The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string). */
3062
+ server?: any;
3063
+ /** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
3064
+ database?: any;
3065
+ /** Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string). */
3066
+ encrypt?: any;
3067
+ /** Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
3068
+ trustServerCertificate?: any;
3069
+ /** The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string). */
3070
+ hostNameInCertificate?: any;
3071
+ /** The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string). */
3072
+ applicationIntent?: any;
3073
+ /** The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
3074
+ connectTimeout?: any;
3075
+ /** The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer). */
3076
+ connectRetryCount?: any;
3077
+ /** The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer). */
3078
+ connectRetryInterval?: any;
3079
+ /** The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer). */
3080
+ loadBalanceTimeout?: any;
3081
+ /** The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
3082
+ commandTimeout?: any;
3083
+ /** Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean). */
3084
+ integratedSecurity?: any;
3085
+ /** The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string). */
3086
+ failoverPartner?: any;
3087
+ /** The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
3088
+ maxPoolSize?: any;
3089
+ /** The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
3090
+ minPoolSize?: any;
3091
+ /** When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
3092
+ multipleActiveResultSets?: any;
3093
+ /** If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
3094
+ multiSubnetFailover?: any;
3095
+ /** The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer). */
3096
+ packetSize?: any;
3097
+ /** Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
3098
+ pooling?: any;
3099
+ }
3100
+
3059
3101
  /** Sql always encrypted properties. */
3060
3102
  export interface SqlAlwaysEncryptedProperties {
3061
3103
  /** Sql always encrypted AKV authentication type. Type: string. */
@@ -3843,8 +3885,8 @@ export interface PowerQuerySinkMapping {
3843
3885
  export interface ScriptActivityScriptBlock {
3844
3886
  /** The query text. Type: string (or Expression with resultType string). */
3845
3887
  text: any;
3846
- /** The type of the query. Type: string. */
3847
- type: ScriptType;
3888
+ /** The type of the query. Please refer to the ScriptType for valid options. Type: string (or Expression with resultType string). */
3889
+ type: any;
3848
3890
  /** Array of script parameters. Type: array. */
3849
3891
  parameters?: ScriptActivityParameter[];
3850
3892
  }
@@ -3917,8 +3959,8 @@ export interface ExpressionV2 {
3917
3959
  type?: ExpressionV2Type;
3918
3960
  /** Value for Constant/Field Type: string. */
3919
3961
  value?: string;
3920
- /** Expression operator value Type: string. */
3921
- operator?: string;
3962
+ /** Expression operator value Type: list of strings. */
3963
+ operators?: string[];
3922
3964
  /** List of nested expressions. */
3923
3965
  operands?: ExpressionV2[];
3924
3966
  }
@@ -4420,14 +4462,60 @@ export interface AzureTableStorageLinkedService extends LinkedService {
4420
4462
  export interface AzureSqlDWLinkedService extends LinkedService {
4421
4463
  /** Polymorphic discriminator, which specifies the different types this object can be */
4422
4464
  type: "AzureSqlDW";
4465
+ /** The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string). */
4466
+ server?: any;
4467
+ /** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
4468
+ database?: any;
4469
+ /** Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string). */
4470
+ encrypt?: any;
4471
+ /** Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4472
+ trustServerCertificate?: any;
4473
+ /** The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string). */
4474
+ hostNameInCertificate?: any;
4475
+ /** The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string). */
4476
+ applicationIntent?: any;
4477
+ /** The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
4478
+ connectTimeout?: any;
4479
+ /** The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer). */
4480
+ connectRetryCount?: any;
4481
+ /** The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer). */
4482
+ connectRetryInterval?: any;
4483
+ /** The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer). */
4484
+ loadBalanceTimeout?: any;
4485
+ /** The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
4486
+ commandTimeout?: any;
4487
+ /** Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4488
+ integratedSecurity?: any;
4489
+ /** The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string). */
4490
+ failoverPartner?: any;
4491
+ /** The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
4492
+ maxPoolSize?: any;
4493
+ /** The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
4494
+ minPoolSize?: any;
4495
+ /** When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4496
+ multipleActiveResultSets?: any;
4497
+ /** If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4498
+ multiSubnetFailover?: any;
4499
+ /** The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer). */
4500
+ packetSize?: any;
4501
+ /** Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4502
+ pooling?: any;
4423
4503
  /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference. */
4424
- connectionString: any;
4504
+ connectionString?: any;
4505
+ /** The type used for authentication. Type: string. */
4506
+ authenticationType?: AzureSqlDWAuthenticationType;
4507
+ /** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
4508
+ userName?: any;
4425
4509
  /** The Azure key vault secret reference of password in connection string. */
4426
4510
  password?: AzureKeyVaultSecretReference;
4427
4511
  /** The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string). */
4428
4512
  servicePrincipalId?: any;
4429
4513
  /** The key of the service principal used to authenticate against Azure SQL Data Warehouse. */
4430
4514
  servicePrincipalKey?: SecretBaseUnion;
4515
+ /** 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). */
4516
+ servicePrincipalCredentialType?: any;
4517
+ /** 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. */
4518
+ servicePrincipalCredential?: SecretBaseUnion;
4431
4519
  /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
4432
4520
  tenant?: any;
4433
4521
  /** 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). */
@@ -4442,8 +4530,48 @@ export interface AzureSqlDWLinkedService extends LinkedService {
4442
4530
  export interface SqlServerLinkedService extends LinkedService {
4443
4531
  /** Polymorphic discriminator, which specifies the different types this object can be */
4444
4532
  type: "SqlServer";
4533
+ /** The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string). */
4534
+ server?: any;
4535
+ /** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
4536
+ database?: any;
4537
+ /** Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string). */
4538
+ encrypt?: any;
4539
+ /** Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4540
+ trustServerCertificate?: any;
4541
+ /** The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string). */
4542
+ hostNameInCertificate?: any;
4543
+ /** The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string). */
4544
+ applicationIntent?: any;
4545
+ /** The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
4546
+ connectTimeout?: any;
4547
+ /** The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer). */
4548
+ connectRetryCount?: any;
4549
+ /** The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer). */
4550
+ connectRetryInterval?: any;
4551
+ /** The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer). */
4552
+ loadBalanceTimeout?: any;
4553
+ /** The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
4554
+ commandTimeout?: any;
4555
+ /** Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4556
+ integratedSecurity?: any;
4557
+ /** The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string). */
4558
+ failoverPartner?: any;
4559
+ /** The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
4560
+ maxPoolSize?: any;
4561
+ /** The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
4562
+ minPoolSize?: any;
4563
+ /** When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4564
+ multipleActiveResultSets?: any;
4565
+ /** If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4566
+ multiSubnetFailover?: any;
4567
+ /** The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer). */
4568
+ packetSize?: any;
4569
+ /** Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4570
+ pooling?: any;
4445
4571
  /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
4446
- connectionString: any;
4572
+ connectionString?: any;
4573
+ /** The type used for authentication. Type: string. */
4574
+ authenticationType?: SqlServerAuthenticationType;
4447
4575
  /** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
4448
4576
  userName?: any;
4449
4577
  /** The on-premises Windows authentication password. */
@@ -4458,8 +4586,48 @@ export interface SqlServerLinkedService extends LinkedService {
4458
4586
  export interface AmazonRdsForSqlServerLinkedService extends LinkedService {
4459
4587
  /** Polymorphic discriminator, which specifies the different types this object can be */
4460
4588
  type: "AmazonRdsForSqlServer";
4589
+ /** The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string). */
4590
+ server?: any;
4591
+ /** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
4592
+ database?: any;
4593
+ /** Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string). */
4594
+ encrypt?: any;
4595
+ /** Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4596
+ trustServerCertificate?: any;
4597
+ /** The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string). */
4598
+ hostNameInCertificate?: any;
4599
+ /** The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string). */
4600
+ applicationIntent?: any;
4601
+ /** The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
4602
+ connectTimeout?: any;
4603
+ /** The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer). */
4604
+ connectRetryCount?: any;
4605
+ /** The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer). */
4606
+ connectRetryInterval?: any;
4607
+ /** The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer). */
4608
+ loadBalanceTimeout?: any;
4609
+ /** The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
4610
+ commandTimeout?: any;
4611
+ /** Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4612
+ integratedSecurity?: any;
4613
+ /** The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string). */
4614
+ failoverPartner?: any;
4615
+ /** The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
4616
+ maxPoolSize?: any;
4617
+ /** The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
4618
+ minPoolSize?: any;
4619
+ /** When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4620
+ multipleActiveResultSets?: any;
4621
+ /** If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4622
+ multiSubnetFailover?: any;
4623
+ /** The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer). */
4624
+ packetSize?: any;
4625
+ /** Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4626
+ pooling?: any;
4461
4627
  /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
4462
- connectionString: any;
4628
+ connectionString?: any;
4629
+ /** The type used for authentication. Type: string. */
4630
+ authenticationType?: AmazonRdsForSqlAuthenticationType;
4463
4631
  /** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
4464
4632
  userName?: any;
4465
4633
  /** The on-premises Windows authentication password. */
@@ -4474,14 +4642,60 @@ export interface AmazonRdsForSqlServerLinkedService extends LinkedService {
4474
4642
  export interface AzureSqlDatabaseLinkedService extends LinkedService {
4475
4643
  /** Polymorphic discriminator, which specifies the different types this object can be */
4476
4644
  type: "AzureSqlDatabase";
4645
+ /** The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string). */
4646
+ server?: any;
4647
+ /** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
4648
+ database?: any;
4649
+ /** Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string). */
4650
+ encrypt?: any;
4651
+ /** Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4652
+ trustServerCertificate?: any;
4653
+ /** The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string). */
4654
+ hostNameInCertificate?: any;
4655
+ /** The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string). */
4656
+ applicationIntent?: any;
4657
+ /** The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
4658
+ connectTimeout?: any;
4659
+ /** The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer). */
4660
+ connectRetryCount?: any;
4661
+ /** The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer). */
4662
+ connectRetryInterval?: any;
4663
+ /** The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer). */
4664
+ loadBalanceTimeout?: any;
4665
+ /** The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
4666
+ commandTimeout?: any;
4667
+ /** Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4668
+ integratedSecurity?: any;
4669
+ /** The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string). */
4670
+ failoverPartner?: any;
4671
+ /** The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
4672
+ maxPoolSize?: any;
4673
+ /** The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
4674
+ minPoolSize?: any;
4675
+ /** When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4676
+ multipleActiveResultSets?: any;
4677
+ /** If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4678
+ multiSubnetFailover?: any;
4679
+ /** The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer). */
4680
+ packetSize?: any;
4681
+ /** Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4682
+ pooling?: any;
4477
4683
  /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
4478
- connectionString: any;
4684
+ connectionString?: any;
4685
+ /** The type used for authentication. Type: string. */
4686
+ authenticationType?: AzureSqlDatabaseAuthenticationType;
4687
+ /** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
4688
+ userName?: any;
4479
4689
  /** The Azure key vault secret reference of password in connection string. */
4480
4690
  password?: AzureKeyVaultSecretReference;
4481
4691
  /** The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string). */
4482
4692
  servicePrincipalId?: any;
4483
4693
  /** The key of the service principal used to authenticate against Azure SQL Database. */
4484
4694
  servicePrincipalKey?: SecretBaseUnion;
4695
+ /** 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). */
4696
+ servicePrincipalCredentialType?: any;
4697
+ /** 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. */
4698
+ servicePrincipalCredential?: SecretBaseUnion;
4485
4699
  /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
4486
4700
  tenant?: any;
4487
4701
  /** 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). */
@@ -4498,14 +4712,60 @@ export interface AzureSqlDatabaseLinkedService extends LinkedService {
4498
4712
  export interface AzureSqlMILinkedService extends LinkedService {
4499
4713
  /** Polymorphic discriminator, which specifies the different types this object can be */
4500
4714
  type: "AzureSqlMI";
4715
+ /** The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string). */
4716
+ server?: any;
4717
+ /** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
4718
+ database?: any;
4719
+ /** Indicate whether TLS encryption is required for all data sent between the client and server, used by recommended version. Possible values are true/yes/mandatory, false/no/optional and strict. Type: string (or Expression with resultType string). */
4720
+ encrypt?: any;
4721
+ /** Indicate whether the channel will be encrypted while bypassing walking the certificate chain to validate trust, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4722
+ trustServerCertificate?: any;
4723
+ /** The host name to use when validating the server certificate for the connection. When not specified, the server name from the Data Source is used for certificate validation, used by recommended version. Type: string (or Expression with resultType string). */
4724
+ hostNameInCertificate?: any;
4725
+ /** The application workload type when connecting to a server, used by recommended version. Possible values are ReadOnly and ReadWrite. Type: string (or Expression with resultType string). */
4726
+ applicationIntent?: any;
4727
+ /** The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
4728
+ connectTimeout?: any;
4729
+ /** The number of re-connections attempted after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 0 and 255. Type: integer (or Expression with resultType integer). */
4730
+ connectRetryCount?: any;
4731
+ /** The amount of time (in seconds) between each re-connection attempt after identifying that there was an idle connection failure, used by recommended version. This must be an integer between 1 and 60. Type: integer (or Expression with resultType integer). */
4732
+ connectRetryInterval?: any;
4733
+ /** The minimum time, in seconds, for the connection to live in the connection pool before being destroyed, used by recommended version. Type: integer (or Expression with resultType integer). */
4734
+ loadBalanceTimeout?: any;
4735
+ /** The default wait time (in seconds) before terminating the attempt to execute a command and generating an error, used by recommended version. Type: integer (or Expression with resultType integer). */
4736
+ commandTimeout?: any;
4737
+ /** Indicate whether User ID and Password are specified in the connection (when false) or whether the current Windows account credentials are used for authentication (when true), used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4738
+ integratedSecurity?: any;
4739
+ /** The name or address of the partner server to connect to if the primary server is down, used by recommended version. Type: string (or Expression with resultType string). */
4740
+ failoverPartner?: any;
4741
+ /** The maximum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
4742
+ maxPoolSize?: any;
4743
+ /** The minimum number of connections allowed in the connection pool for this specific connection string, used by recommended version. Type: integer (or Expression with resultType integer). */
4744
+ minPoolSize?: any;
4745
+ /** When true, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4746
+ multipleActiveResultSets?: any;
4747
+ /** If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover=true provides faster detection of and connection to the (currently) active server, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4748
+ multiSubnetFailover?: any;
4749
+ /** The size in bytes of the network packets used to communicate with an instance of server, used by recommended version. Type: integer (or Expression with resultType integer). */
4750
+ packetSize?: any;
4751
+ /** Indicate whether the connection will be pooled or explicitly opened every time that the connection is requested, used by recommended version. Type: Boolean (or Expression with resultType boolean). */
4752
+ pooling?: any;
4501
4753
  /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
4502
- connectionString: any;
4754
+ connectionString?: any;
4755
+ /** The type used for authentication. Type: string. */
4756
+ authenticationType?: AzureSqlMIAuthenticationType;
4757
+ /** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
4758
+ userName?: any;
4503
4759
  /** The Azure key vault secret reference of password in connection string. */
4504
4760
  password?: AzureKeyVaultSecretReference;
4505
4761
  /** The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string). */
4506
4762
  servicePrincipalId?: any;
4507
4763
  /** The key of the service principal used to authenticate against Azure SQL Managed Instance. */
4508
4764
  servicePrincipalKey?: SecretBaseUnion;
4765
+ /** 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). */
4766
+ servicePrincipalCredentialType?: any;
4767
+ /** 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. */
4768
+ servicePrincipalCredential?: SecretBaseUnion;
4509
4769
  /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
4510
4770
  tenant?: any;
4511
4771
  /** 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). */
@@ -4636,6 +4896,8 @@ export interface DynamicsCrmLinkedService extends LinkedService {
4636
4896
  servicePrincipalCredentialType?: any;
4637
4897
  /** 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. */
4638
4898
  servicePrincipalCredential?: SecretBaseUnion;
4899
+ /** The credential reference containing authentication information. */
4900
+ credential?: CredentialReference;
4639
4901
  /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4640
4902
  encryptedCredential?: string;
4641
4903
  }
@@ -7920,6 +8182,8 @@ export interface AzureDatabricksDeltaLakeDataset extends Dataset {
7920
8182
  export interface LakeHouseTableDataset extends Dataset {
7921
8183
  /** Polymorphic discriminator, which specifies the different types this object can be */
7922
8184
  type: "LakeHouseTable";
8185
+ /** The schema name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string). */
8186
+ schemaTypePropertiesSchema?: any;
7923
8187
  /** The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string). */
7924
8188
  table?: any;
7925
8189
  }
@@ -8178,12 +8442,6 @@ export interface LinkedServiceDebugResource extends SubResourceDebugResource {
8178
8442
  properties: LinkedServiceUnion;
8179
8443
  }
8180
8444
 
8181
- /** Managed identity credential. */
8182
- export interface ManagedIdentityCredential extends Credential {
8183
- /** Polymorphic discriminator, which specifies the different types this object can be */
8184
- type: "ManagedIdentity";
8185
- }
8186
-
8187
8445
  /** Service principal credential. */
8188
8446
  export interface ServicePrincipalCredential extends Credential {
8189
8447
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -8196,6 +8454,14 @@ export interface ServicePrincipalCredential extends Credential {
8196
8454
  tenant?: any;
8197
8455
  }
8198
8456
 
8457
+ /** Managed identity credential. */
8458
+ export interface ManagedIdentityCredential extends Credential {
8459
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8460
+ type: "ManagedIdentity";
8461
+ /** The resource id of user assigned managed identity */
8462
+ resourceId?: string;
8463
+ }
8464
+
8199
8465
  /** Azure Data Factory secure string definition. The string value will be masked with asterisks '*' during Get or List API calls. */
8200
8466
  export interface SecureString extends SecretBase {
8201
8467
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -8454,6 +8720,131 @@ export interface LinkedIntegrationRuntimeRbacAuthorization
8454
8720
  credential?: CredentialReference;
8455
8721
  }
8456
8722
 
8723
+ /** Azure SQL Data Warehouse linked service properties. */
8724
+ export interface AzureSqlDWLinkedServiceTypeProperties
8725
+ extends SqlServerBaseLinkedServiceTypeProperties {
8726
+ /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference. */
8727
+ connectionString?: any;
8728
+ /** The type used for authentication. Type: string. */
8729
+ authenticationType?: AzureSqlDWAuthenticationType;
8730
+ /** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
8731
+ userName?: any;
8732
+ /** The Azure key vault secret reference of password in connection string. */
8733
+ password?: AzureKeyVaultSecretReference;
8734
+ /** The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string). */
8735
+ servicePrincipalId?: any;
8736
+ /** The key of the service principal used to authenticate against Azure SQL Data Warehouse. */
8737
+ servicePrincipalKey?: SecretBaseUnion;
8738
+ /** 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). */
8739
+ servicePrincipalCredentialType?: any;
8740
+ /** 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. */
8741
+ servicePrincipalCredential?: SecretBaseUnion;
8742
+ /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
8743
+ tenant?: any;
8744
+ /** 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). */
8745
+ azureCloudType?: any;
8746
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
8747
+ encryptedCredential?: string;
8748
+ /** The credential reference containing authentication information. */
8749
+ credential?: CredentialReference;
8750
+ }
8751
+
8752
+ /** SQL Server linked service properties. */
8753
+ export interface SqlServerLinkedServiceTypeProperties
8754
+ extends SqlServerBaseLinkedServiceTypeProperties {
8755
+ /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
8756
+ connectionString?: any;
8757
+ /** The type used for authentication. Type: string. */
8758
+ authenticationType?: SqlServerAuthenticationType;
8759
+ /** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
8760
+ userName?: any;
8761
+ /** The on-premises Windows authentication password. */
8762
+ password?: SecretBaseUnion;
8763
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
8764
+ encryptedCredential?: string;
8765
+ /** Sql always encrypted properties. */
8766
+ alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
8767
+ }
8768
+
8769
+ /** Amazon Rds for SQL Server linked service properties. */
8770
+ export interface AmazonRdsForSqlServerLinkedServiceTypeProperties
8771
+ extends SqlServerBaseLinkedServiceTypeProperties {
8772
+ /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
8773
+ connectionString?: any;
8774
+ /** The type used for authentication. Type: string. */
8775
+ authenticationType?: AmazonRdsForSqlAuthenticationType;
8776
+ /** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
8777
+ userName?: any;
8778
+ /** The on-premises Windows authentication password. */
8779
+ password?: SecretBaseUnion;
8780
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
8781
+ encryptedCredential?: string;
8782
+ /** Sql always encrypted properties. */
8783
+ alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
8784
+ }
8785
+
8786
+ /** Azure SQL Database linked service properties. */
8787
+ export interface AzureSqlDatabaseLinkedServiceTypeProperties
8788
+ extends SqlServerBaseLinkedServiceTypeProperties {
8789
+ /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
8790
+ connectionString?: any;
8791
+ /** The type used for authentication. Type: string. */
8792
+ authenticationType?: AzureSqlDatabaseAuthenticationType;
8793
+ /** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
8794
+ userName?: any;
8795
+ /** The Azure key vault secret reference of password in connection string. */
8796
+ password?: AzureKeyVaultSecretReference;
8797
+ /** The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string). */
8798
+ servicePrincipalId?: any;
8799
+ /** The key of the service principal used to authenticate against Azure SQL Database. */
8800
+ servicePrincipalKey?: SecretBaseUnion;
8801
+ /** 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). */
8802
+ servicePrincipalCredentialType?: any;
8803
+ /** 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. */
8804
+ servicePrincipalCredential?: SecretBaseUnion;
8805
+ /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
8806
+ tenant?: any;
8807
+ /** 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). */
8808
+ azureCloudType?: any;
8809
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
8810
+ encryptedCredential?: string;
8811
+ /** Sql always encrypted properties. */
8812
+ alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
8813
+ /** The credential reference containing authentication information. */
8814
+ credential?: CredentialReference;
8815
+ }
8816
+
8817
+ /** Azure SQL Managed Instance linked service properties. */
8818
+ export interface AzureSqlMILinkedServiceTypeProperties
8819
+ extends SqlServerBaseLinkedServiceTypeProperties {
8820
+ /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
8821
+ connectionString?: any;
8822
+ /** The type used for authentication. Type: string. */
8823
+ authenticationType?: AzureSqlMIAuthenticationType;
8824
+ /** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
8825
+ userName?: any;
8826
+ /** The Azure key vault secret reference of password in connection string. */
8827
+ password?: AzureKeyVaultSecretReference;
8828
+ /** The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string). */
8829
+ servicePrincipalId?: any;
8830
+ /** The key of the service principal used to authenticate against Azure SQL Managed Instance. */
8831
+ servicePrincipalKey?: SecretBaseUnion;
8832
+ /** 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). */
8833
+ servicePrincipalCredentialType?: any;
8834
+ /** 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. */
8835
+ servicePrincipalCredential?: SecretBaseUnion;
8836
+ /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
8837
+ tenant?: any;
8838
+ /** 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). */
8839
+ azureCloudType?: any;
8840
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
8841
+ encryptedCredential?: string;
8842
+ /** Sql always encrypted properties. */
8843
+ alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
8844
+ /** The credential reference containing authentication information. */
8845
+ credential?: CredentialReference;
8846
+ }
8847
+
8457
8848
  /** A WebLinkedService that uses anonymous authentication to communicate with an HTTP endpoint. */
8458
8849
  export interface WebAnonymousAuthentication
8459
8850
  extends WebLinkedServiceTypeProperties {
@@ -9547,8 +9938,10 @@ export interface SharePointOnlineListSource extends CopySource {
9547
9938
  export interface SalesforceServiceCloudV2Source extends CopySource {
9548
9939
  /** Polymorphic discriminator, which specifies the different types this object can be */
9549
9940
  type: "SalesforceServiceCloudV2Source";
9550
- /** Database query. Type: string (or Expression with resultType string). */
9941
+ /** Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string). */
9551
9942
  soqlQuery?: any;
9943
+ /** You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL limitations, see this article: https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations. If query is not specified, all the data of the Salesforce object specified in ObjectApiName/reportId in dataset will be retrieved. Type: string (or Expression with resultType string). */
9944
+ query?: any;
9552
9945
  /** This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean). */
9553
9946
  includeDeletedObjects?: any;
9554
9947
  /** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
@@ -10165,18 +10558,6 @@ export interface SelfDependencyTumblingWindowTriggerReference
10165
10558
  size?: string;
10166
10559
  }
10167
10560
 
10168
- /** Credential resource type. */
10169
- export interface ManagedIdentityCredentialResource extends CredentialResource {
10170
- /** Managed Identity Credential properties. */
10171
- properties: ManagedIdentityCredential;
10172
- }
10173
-
10174
- /** Credential resource type. */
10175
- export interface ServicePrincipalCredentialResource extends CredentialResource {
10176
- /** Service Principal Credential properties. */
10177
- properties: ServicePrincipalCredential;
10178
- }
10179
-
10180
10561
  /** Execute pipeline activity. */
10181
10562
  export interface ExecutePipelineActivity extends ControlActivity {
10182
10563
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -11541,8 +11922,10 @@ export interface WarehouseSource extends TabularSource {
11541
11922
  export interface SalesforceV2Source extends TabularSource {
11542
11923
  /** Polymorphic discriminator, which specifies the different types this object can be */
11543
11924
  type: "SalesforceV2Source";
11544
- /** Database query. Type: string (or Expression with resultType string). */
11925
+ /** Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string). */
11545
11926
  soqlQuery?: any;
11927
+ /** You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL limitations, see this article: https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations. If query is not specified, all the data of the Salesforce object specified in ObjectApiName/reportId in dataset will be retrieved. Type: string (or Expression with resultType string). */
11928
+ query?: any;
11546
11929
  /** This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean). */
11547
11930
  includeDeletedObjects?: any;
11548
11931
  }
@@ -12445,6 +12828,48 @@ export enum KnownAzureStorageAuthenticationType {
12445
12828
  */
12446
12829
  export type AzureStorageAuthenticationType = string;
12447
12830
 
12831
+ /** Known values of {@link AzureSqlDWAuthenticationType} that the service accepts. */
12832
+ export enum KnownAzureSqlDWAuthenticationType {
12833
+ /** SQL */
12834
+ SQL = "SQL",
12835
+ /** ServicePrincipal */
12836
+ ServicePrincipal = "ServicePrincipal",
12837
+ /** SystemAssignedManagedIdentity */
12838
+ SystemAssignedManagedIdentity = "SystemAssignedManagedIdentity",
12839
+ /** UserAssignedManagedIdentity */
12840
+ UserAssignedManagedIdentity = "UserAssignedManagedIdentity",
12841
+ }
12842
+
12843
+ /**
12844
+ * Defines values for AzureSqlDWAuthenticationType. \
12845
+ * {@link KnownAzureSqlDWAuthenticationType} can be used interchangeably with AzureSqlDWAuthenticationType,
12846
+ * this enum contains the known values that the service supports.
12847
+ * ### Known values supported by the service
12848
+ * **SQL** \
12849
+ * **ServicePrincipal** \
12850
+ * **SystemAssignedManagedIdentity** \
12851
+ * **UserAssignedManagedIdentity**
12852
+ */
12853
+ export type AzureSqlDWAuthenticationType = string;
12854
+
12855
+ /** Known values of {@link SqlServerAuthenticationType} that the service accepts. */
12856
+ export enum KnownSqlServerAuthenticationType {
12857
+ /** SQL */
12858
+ SQL = "SQL",
12859
+ /** Windows */
12860
+ Windows = "Windows",
12861
+ }
12862
+
12863
+ /**
12864
+ * Defines values for SqlServerAuthenticationType. \
12865
+ * {@link KnownSqlServerAuthenticationType} can be used interchangeably with SqlServerAuthenticationType,
12866
+ * this enum contains the known values that the service supports.
12867
+ * ### Known values supported by the service
12868
+ * **SQL** \
12869
+ * **Windows**
12870
+ */
12871
+ export type SqlServerAuthenticationType = string;
12872
+
12448
12873
  /** Known values of {@link SqlAlwaysEncryptedAkvAuthType} that the service accepts. */
12449
12874
  export enum KnownSqlAlwaysEncryptedAkvAuthType {
12450
12875
  /** ServicePrincipal */
@@ -12466,6 +12891,72 @@ export enum KnownSqlAlwaysEncryptedAkvAuthType {
12466
12891
  */
12467
12892
  export type SqlAlwaysEncryptedAkvAuthType = string;
12468
12893
 
12894
+ /** Known values of {@link AmazonRdsForSqlAuthenticationType} that the service accepts. */
12895
+ export enum KnownAmazonRdsForSqlAuthenticationType {
12896
+ /** SQL */
12897
+ SQL = "SQL",
12898
+ /** Windows */
12899
+ Windows = "Windows",
12900
+ }
12901
+
12902
+ /**
12903
+ * Defines values for AmazonRdsForSqlAuthenticationType. \
12904
+ * {@link KnownAmazonRdsForSqlAuthenticationType} can be used interchangeably with AmazonRdsForSqlAuthenticationType,
12905
+ * this enum contains the known values that the service supports.
12906
+ * ### Known values supported by the service
12907
+ * **SQL** \
12908
+ * **Windows**
12909
+ */
12910
+ export type AmazonRdsForSqlAuthenticationType = string;
12911
+
12912
+ /** Known values of {@link AzureSqlDatabaseAuthenticationType} that the service accepts. */
12913
+ export enum KnownAzureSqlDatabaseAuthenticationType {
12914
+ /** SQL */
12915
+ SQL = "SQL",
12916
+ /** ServicePrincipal */
12917
+ ServicePrincipal = "ServicePrincipal",
12918
+ /** SystemAssignedManagedIdentity */
12919
+ SystemAssignedManagedIdentity = "SystemAssignedManagedIdentity",
12920
+ /** UserAssignedManagedIdentity */
12921
+ UserAssignedManagedIdentity = "UserAssignedManagedIdentity",
12922
+ }
12923
+
12924
+ /**
12925
+ * Defines values for AzureSqlDatabaseAuthenticationType. \
12926
+ * {@link KnownAzureSqlDatabaseAuthenticationType} can be used interchangeably with AzureSqlDatabaseAuthenticationType,
12927
+ * this enum contains the known values that the service supports.
12928
+ * ### Known values supported by the service
12929
+ * **SQL** \
12930
+ * **ServicePrincipal** \
12931
+ * **SystemAssignedManagedIdentity** \
12932
+ * **UserAssignedManagedIdentity**
12933
+ */
12934
+ export type AzureSqlDatabaseAuthenticationType = string;
12935
+
12936
+ /** Known values of {@link AzureSqlMIAuthenticationType} that the service accepts. */
12937
+ export enum KnownAzureSqlMIAuthenticationType {
12938
+ /** SQL */
12939
+ SQL = "SQL",
12940
+ /** ServicePrincipal */
12941
+ ServicePrincipal = "ServicePrincipal",
12942
+ /** SystemAssignedManagedIdentity */
12943
+ SystemAssignedManagedIdentity = "SystemAssignedManagedIdentity",
12944
+ /** UserAssignedManagedIdentity */
12945
+ UserAssignedManagedIdentity = "UserAssignedManagedIdentity",
12946
+ }
12947
+
12948
+ /**
12949
+ * Defines values for AzureSqlMIAuthenticationType. \
12950
+ * {@link KnownAzureSqlMIAuthenticationType} can be used interchangeably with AzureSqlMIAuthenticationType,
12951
+ * this enum contains the known values that the service supports.
12952
+ * ### Known values supported by the service
12953
+ * **SQL** \
12954
+ * **ServicePrincipal** \
12955
+ * **SystemAssignedManagedIdentity** \
12956
+ * **UserAssignedManagedIdentity**
12957
+ */
12958
+ export type AzureSqlMIAuthenticationType = string;
12959
+
12469
12960
  /** Known values of {@link CosmosDbConnectionMode} that the service accepts. */
12470
12961
  export enum KnownCosmosDbConnectionMode {
12471
12962
  /** Gateway */
@@ -13381,24 +13872,6 @@ export enum KnownWebHookActivityMethod {
13381
13872
  */
13382
13873
  export type WebHookActivityMethod = string;
13383
13874
 
13384
- /** Known values of {@link ScriptType} that the service accepts. */
13385
- export enum KnownScriptType {
13386
- /** Query */
13387
- Query = "Query",
13388
- /** NonQuery */
13389
- NonQuery = "NonQuery",
13390
- }
13391
-
13392
- /**
13393
- * Defines values for ScriptType. \
13394
- * {@link KnownScriptType} can be used interchangeably with ScriptType,
13395
- * this enum contains the known values that the service supports.
13396
- * ### Known values supported by the service
13397
- * **Query** \
13398
- * **NonQuery**
13399
- */
13400
- export type ScriptType = string;
13401
-
13402
13875
  /** Known values of {@link ScriptActivityParameterType} that the service accepts. */
13403
13876
  export enum KnownScriptActivityParameterType {
13404
13877
  /** Boolean */
@@ -13619,6 +14092,8 @@ export enum KnownExpressionV2Type {
13619
14092
  Unary = "Unary",
13620
14093
  /** Binary */
13621
14094
  Binary = "Binary",
14095
+ /** NAry */
14096
+ NAry = "NAry",
13622
14097
  }
13623
14098
 
13624
14099
  /**
@@ -13629,7 +14104,8 @@ export enum KnownExpressionV2Type {
13629
14104
  * **Constant** \
13630
14105
  * **Field** \
13631
14106
  * **Unary** \
13632
- * **Binary**
14107
+ * **Binary** \
14108
+ * **NAry**
13633
14109
  */
13634
14110
  export type ExpressionV2Type = string;
13635
14111
 
@@ -14044,6 +14520,24 @@ export enum KnownSqlDWWriteBehaviorEnum {
14044
14520
  */
14045
14521
  export type SqlDWWriteBehaviorEnum = string;
14046
14522
 
14523
+ /** Known values of {@link ScriptType} that the service accepts. */
14524
+ export enum KnownScriptType {
14525
+ /** Query */
14526
+ Query = "Query",
14527
+ /** NonQuery */
14528
+ NonQuery = "NonQuery",
14529
+ }
14530
+
14531
+ /**
14532
+ * Defines values for ScriptType. \
14533
+ * {@link KnownScriptType} can be used interchangeably with ScriptType,
14534
+ * this enum contains the known values that the service supports.
14535
+ * ### Known values supported by the service
14536
+ * **Query** \
14537
+ * **NonQuery**
14538
+ */
14539
+ export type ScriptType = string;
14540
+
14047
14541
  /** Known values of {@link SqlPartitionOption} that the service accepts. */
14048
14542
  export enum KnownSqlPartitionOption {
14049
14543
  /** None */