@azure/arm-datafactory 15.0.1-alpha.20240610.1 → 16.0.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.
- package/CHANGELOG.md +142 -8
- package/dist/index.js +1095 -64
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/samples-dev/credentialOperationsCreateOrUpdateSample.js.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +1 -1
- package/dist-esm/src/models/index.d.ts +521 -46
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +62 -8
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +8 -4
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +3485 -2512
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.d.ts.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.js +6 -2
- package/dist-esm/test/datafactory_examples.spec.js.map +1 -1
- package/package.json +5 -4
- package/review/arm-datafactory.api.md +268 -19
- package/src/dataFactoryManagementClient.ts +1 -1
- package/src/models/index.ts +545 -51
- package/src/models/mappers.ts +1385 -234
- package/types/arm-datafactory.d.ts +516 -27
|
@@ -299,12 +299,78 @@ export declare interface AmazonRdsForOracleTableDataset extends Dataset {
|
|
|
299
299
|
table?: any;
|
|
300
300
|
}
|
|
301
301
|
|
|
302
|
+
/**
|
|
303
|
+
* Defines values for AmazonRdsForSqlAuthenticationType. \
|
|
304
|
+
* {@link KnownAmazonRdsForSqlAuthenticationType} can be used interchangeably with AmazonRdsForSqlAuthenticationType,
|
|
305
|
+
* this enum contains the known values that the service supports.
|
|
306
|
+
* ### Known values supported by the service
|
|
307
|
+
* **SQL** \
|
|
308
|
+
* **Windows**
|
|
309
|
+
*/
|
|
310
|
+
export declare type AmazonRdsForSqlAuthenticationType = string;
|
|
311
|
+
|
|
302
312
|
/** Amazon RDS for SQL Server linked service. */
|
|
303
313
|
export declare interface AmazonRdsForSqlServerLinkedService extends LinkedService {
|
|
304
314
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
305
315
|
type: "AmazonRdsForSqlServer";
|
|
316
|
+
/** 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). */
|
|
317
|
+
server?: any;
|
|
318
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
319
|
+
database?: any;
|
|
320
|
+
/** 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). */
|
|
321
|
+
encrypt?: any;
|
|
322
|
+
/** 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). */
|
|
323
|
+
trustServerCertificate?: any;
|
|
324
|
+
/** 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). */
|
|
325
|
+
hostNameInCertificate?: any;
|
|
326
|
+
/** 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). */
|
|
327
|
+
applicationIntent?: any;
|
|
328
|
+
/** 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). */
|
|
329
|
+
connectTimeout?: any;
|
|
330
|
+
/** 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). */
|
|
331
|
+
connectRetryCount?: any;
|
|
332
|
+
/** 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). */
|
|
333
|
+
connectRetryInterval?: any;
|
|
334
|
+
/** 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). */
|
|
335
|
+
loadBalanceTimeout?: any;
|
|
336
|
+
/** 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). */
|
|
337
|
+
commandTimeout?: any;
|
|
338
|
+
/** 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). */
|
|
339
|
+
integratedSecurity?: any;
|
|
340
|
+
/** 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). */
|
|
341
|
+
failoverPartner?: any;
|
|
342
|
+
/** 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). */
|
|
343
|
+
maxPoolSize?: any;
|
|
344
|
+
/** 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). */
|
|
345
|
+
minPoolSize?: any;
|
|
346
|
+
/** 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). */
|
|
347
|
+
multipleActiveResultSets?: any;
|
|
348
|
+
/** 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). */
|
|
349
|
+
multiSubnetFailover?: any;
|
|
350
|
+
/** 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). */
|
|
351
|
+
packetSize?: any;
|
|
352
|
+
/** 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). */
|
|
353
|
+
pooling?: any;
|
|
306
354
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
307
|
-
connectionString
|
|
355
|
+
connectionString?: any;
|
|
356
|
+
/** The type used for authentication. Type: string. */
|
|
357
|
+
authenticationType?: AmazonRdsForSqlAuthenticationType;
|
|
358
|
+
/** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
|
|
359
|
+
userName?: any;
|
|
360
|
+
/** The on-premises Windows authentication password. */
|
|
361
|
+
password?: SecretBaseUnion;
|
|
362
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
363
|
+
encryptedCredential?: string;
|
|
364
|
+
/** Sql always encrypted properties. */
|
|
365
|
+
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
/** Amazon Rds for SQL Server linked service properties. */
|
|
369
|
+
export declare interface AmazonRdsForSqlServerLinkedServiceTypeProperties extends SqlServerBaseLinkedServiceTypeProperties {
|
|
370
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
371
|
+
connectionString?: any;
|
|
372
|
+
/** The type used for authentication. Type: string. */
|
|
373
|
+
authenticationType?: AmazonRdsForSqlAuthenticationType;
|
|
308
374
|
/** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
|
|
309
375
|
userName?: any;
|
|
310
376
|
/** The on-premises Windows authentication password. */
|
|
@@ -1536,18 +1602,76 @@ export declare interface AzureSearchLinkedService extends LinkedService {
|
|
|
1536
1602
|
encryptedCredential?: string;
|
|
1537
1603
|
}
|
|
1538
1604
|
|
|
1605
|
+
/**
|
|
1606
|
+
* Defines values for AzureSqlDatabaseAuthenticationType. \
|
|
1607
|
+
* {@link KnownAzureSqlDatabaseAuthenticationType} can be used interchangeably with AzureSqlDatabaseAuthenticationType,
|
|
1608
|
+
* this enum contains the known values that the service supports.
|
|
1609
|
+
* ### Known values supported by the service
|
|
1610
|
+
* **SQL** \
|
|
1611
|
+
* **ServicePrincipal** \
|
|
1612
|
+
* **SystemAssignedManagedIdentity** \
|
|
1613
|
+
* **UserAssignedManagedIdentity**
|
|
1614
|
+
*/
|
|
1615
|
+
export declare type AzureSqlDatabaseAuthenticationType = string;
|
|
1616
|
+
|
|
1539
1617
|
/** Microsoft Azure SQL Database linked service. */
|
|
1540
1618
|
export declare interface AzureSqlDatabaseLinkedService extends LinkedService {
|
|
1541
1619
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1542
1620
|
type: "AzureSqlDatabase";
|
|
1621
|
+
/** 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). */
|
|
1622
|
+
server?: any;
|
|
1623
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
1624
|
+
database?: any;
|
|
1625
|
+
/** 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). */
|
|
1626
|
+
encrypt?: any;
|
|
1627
|
+
/** 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). */
|
|
1628
|
+
trustServerCertificate?: any;
|
|
1629
|
+
/** 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). */
|
|
1630
|
+
hostNameInCertificate?: any;
|
|
1631
|
+
/** 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). */
|
|
1632
|
+
applicationIntent?: any;
|
|
1633
|
+
/** 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). */
|
|
1634
|
+
connectTimeout?: any;
|
|
1635
|
+
/** 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). */
|
|
1636
|
+
connectRetryCount?: any;
|
|
1637
|
+
/** 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). */
|
|
1638
|
+
connectRetryInterval?: any;
|
|
1639
|
+
/** 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). */
|
|
1640
|
+
loadBalanceTimeout?: any;
|
|
1641
|
+
/** 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). */
|
|
1642
|
+
commandTimeout?: any;
|
|
1643
|
+
/** 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). */
|
|
1644
|
+
integratedSecurity?: any;
|
|
1645
|
+
/** 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). */
|
|
1646
|
+
failoverPartner?: any;
|
|
1647
|
+
/** 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). */
|
|
1648
|
+
maxPoolSize?: any;
|
|
1649
|
+
/** 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). */
|
|
1650
|
+
minPoolSize?: any;
|
|
1651
|
+
/** 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). */
|
|
1652
|
+
multipleActiveResultSets?: any;
|
|
1653
|
+
/** 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). */
|
|
1654
|
+
multiSubnetFailover?: any;
|
|
1655
|
+
/** 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). */
|
|
1656
|
+
packetSize?: any;
|
|
1657
|
+
/** 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). */
|
|
1658
|
+
pooling?: any;
|
|
1543
1659
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
1544
|
-
connectionString
|
|
1660
|
+
connectionString?: any;
|
|
1661
|
+
/** The type used for authentication. Type: string. */
|
|
1662
|
+
authenticationType?: AzureSqlDatabaseAuthenticationType;
|
|
1663
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
1664
|
+
userName?: any;
|
|
1545
1665
|
/** The Azure key vault secret reference of password in connection string. */
|
|
1546
1666
|
password?: AzureKeyVaultSecretReference;
|
|
1547
1667
|
/** The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string). */
|
|
1548
1668
|
servicePrincipalId?: any;
|
|
1549
1669
|
/** The key of the service principal used to authenticate against Azure SQL Database. */
|
|
1550
1670
|
servicePrincipalKey?: SecretBaseUnion;
|
|
1671
|
+
/** 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). */
|
|
1672
|
+
servicePrincipalCredentialType?: any;
|
|
1673
|
+
/** 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. */
|
|
1674
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
1551
1675
|
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
1552
1676
|
tenant?: any;
|
|
1553
1677
|
/** 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). */
|
|
@@ -1560,18 +1684,134 @@ export declare interface AzureSqlDatabaseLinkedService extends LinkedService {
|
|
|
1560
1684
|
credential?: CredentialReference;
|
|
1561
1685
|
}
|
|
1562
1686
|
|
|
1687
|
+
/** Azure SQL Database linked service properties. */
|
|
1688
|
+
export declare interface AzureSqlDatabaseLinkedServiceTypeProperties extends SqlServerBaseLinkedServiceTypeProperties {
|
|
1689
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
1690
|
+
connectionString?: any;
|
|
1691
|
+
/** The type used for authentication. Type: string. */
|
|
1692
|
+
authenticationType?: AzureSqlDatabaseAuthenticationType;
|
|
1693
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
1694
|
+
userName?: any;
|
|
1695
|
+
/** The Azure key vault secret reference of password in connection string. */
|
|
1696
|
+
password?: AzureKeyVaultSecretReference;
|
|
1697
|
+
/** The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string). */
|
|
1698
|
+
servicePrincipalId?: any;
|
|
1699
|
+
/** The key of the service principal used to authenticate against Azure SQL Database. */
|
|
1700
|
+
servicePrincipalKey?: SecretBaseUnion;
|
|
1701
|
+
/** 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). */
|
|
1702
|
+
servicePrincipalCredentialType?: any;
|
|
1703
|
+
/** 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. */
|
|
1704
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
1705
|
+
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
1706
|
+
tenant?: any;
|
|
1707
|
+
/** 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). */
|
|
1708
|
+
azureCloudType?: any;
|
|
1709
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
1710
|
+
encryptedCredential?: string;
|
|
1711
|
+
/** Sql always encrypted properties. */
|
|
1712
|
+
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
1713
|
+
/** The credential reference containing authentication information. */
|
|
1714
|
+
credential?: CredentialReference;
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
/**
|
|
1718
|
+
* Defines values for AzureSqlDWAuthenticationType. \
|
|
1719
|
+
* {@link KnownAzureSqlDWAuthenticationType} can be used interchangeably with AzureSqlDWAuthenticationType,
|
|
1720
|
+
* this enum contains the known values that the service supports.
|
|
1721
|
+
* ### Known values supported by the service
|
|
1722
|
+
* **SQL** \
|
|
1723
|
+
* **ServicePrincipal** \
|
|
1724
|
+
* **SystemAssignedManagedIdentity** \
|
|
1725
|
+
* **UserAssignedManagedIdentity**
|
|
1726
|
+
*/
|
|
1727
|
+
export declare type AzureSqlDWAuthenticationType = string;
|
|
1728
|
+
|
|
1563
1729
|
/** Azure SQL Data Warehouse linked service. */
|
|
1564
1730
|
export declare interface AzureSqlDWLinkedService extends LinkedService {
|
|
1565
1731
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1566
1732
|
type: "AzureSqlDW";
|
|
1733
|
+
/** 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). */
|
|
1734
|
+
server?: any;
|
|
1735
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
1736
|
+
database?: any;
|
|
1737
|
+
/** 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). */
|
|
1738
|
+
encrypt?: any;
|
|
1739
|
+
/** 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). */
|
|
1740
|
+
trustServerCertificate?: any;
|
|
1741
|
+
/** 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). */
|
|
1742
|
+
hostNameInCertificate?: any;
|
|
1743
|
+
/** 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). */
|
|
1744
|
+
applicationIntent?: any;
|
|
1745
|
+
/** 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). */
|
|
1746
|
+
connectTimeout?: any;
|
|
1747
|
+
/** 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). */
|
|
1748
|
+
connectRetryCount?: any;
|
|
1749
|
+
/** 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). */
|
|
1750
|
+
connectRetryInterval?: any;
|
|
1751
|
+
/** 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). */
|
|
1752
|
+
loadBalanceTimeout?: any;
|
|
1753
|
+
/** 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). */
|
|
1754
|
+
commandTimeout?: any;
|
|
1755
|
+
/** 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). */
|
|
1756
|
+
integratedSecurity?: any;
|
|
1757
|
+
/** 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). */
|
|
1758
|
+
failoverPartner?: any;
|
|
1759
|
+
/** 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). */
|
|
1760
|
+
maxPoolSize?: any;
|
|
1761
|
+
/** 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). */
|
|
1762
|
+
minPoolSize?: any;
|
|
1763
|
+
/** 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). */
|
|
1764
|
+
multipleActiveResultSets?: any;
|
|
1765
|
+
/** 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). */
|
|
1766
|
+
multiSubnetFailover?: any;
|
|
1767
|
+
/** 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). */
|
|
1768
|
+
packetSize?: any;
|
|
1769
|
+
/** 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). */
|
|
1770
|
+
pooling?: any;
|
|
1567
1771
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
1568
|
-
connectionString
|
|
1772
|
+
connectionString?: any;
|
|
1773
|
+
/** The type used for authentication. Type: string. */
|
|
1774
|
+
authenticationType?: AzureSqlDWAuthenticationType;
|
|
1775
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
1776
|
+
userName?: any;
|
|
1569
1777
|
/** The Azure key vault secret reference of password in connection string. */
|
|
1570
1778
|
password?: AzureKeyVaultSecretReference;
|
|
1571
1779
|
/** The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string). */
|
|
1572
1780
|
servicePrincipalId?: any;
|
|
1573
1781
|
/** The key of the service principal used to authenticate against Azure SQL Data Warehouse. */
|
|
1574
1782
|
servicePrincipalKey?: SecretBaseUnion;
|
|
1783
|
+
/** 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). */
|
|
1784
|
+
servicePrincipalCredentialType?: any;
|
|
1785
|
+
/** 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. */
|
|
1786
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
1787
|
+
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
1788
|
+
tenant?: any;
|
|
1789
|
+
/** 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). */
|
|
1790
|
+
azureCloudType?: any;
|
|
1791
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
1792
|
+
encryptedCredential?: string;
|
|
1793
|
+
/** The credential reference containing authentication information. */
|
|
1794
|
+
credential?: CredentialReference;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
/** Azure SQL Data Warehouse linked service properties. */
|
|
1798
|
+
export declare interface AzureSqlDWLinkedServiceTypeProperties extends SqlServerBaseLinkedServiceTypeProperties {
|
|
1799
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
1800
|
+
connectionString?: any;
|
|
1801
|
+
/** The type used for authentication. Type: string. */
|
|
1802
|
+
authenticationType?: AzureSqlDWAuthenticationType;
|
|
1803
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
1804
|
+
userName?: any;
|
|
1805
|
+
/** The Azure key vault secret reference of password in connection string. */
|
|
1806
|
+
password?: AzureKeyVaultSecretReference;
|
|
1807
|
+
/** The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string). */
|
|
1808
|
+
servicePrincipalId?: any;
|
|
1809
|
+
/** The key of the service principal used to authenticate against Azure SQL Data Warehouse. */
|
|
1810
|
+
servicePrincipalKey?: SecretBaseUnion;
|
|
1811
|
+
/** 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). */
|
|
1812
|
+
servicePrincipalCredentialType?: any;
|
|
1813
|
+
/** 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. */
|
|
1814
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
1575
1815
|
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
1576
1816
|
tenant?: any;
|
|
1577
1817
|
/** 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). */
|
|
@@ -1594,18 +1834,106 @@ export declare interface AzureSqlDWTableDataset extends Dataset {
|
|
|
1594
1834
|
table?: any;
|
|
1595
1835
|
}
|
|
1596
1836
|
|
|
1837
|
+
/**
|
|
1838
|
+
* Defines values for AzureSqlMIAuthenticationType. \
|
|
1839
|
+
* {@link KnownAzureSqlMIAuthenticationType} can be used interchangeably with AzureSqlMIAuthenticationType,
|
|
1840
|
+
* this enum contains the known values that the service supports.
|
|
1841
|
+
* ### Known values supported by the service
|
|
1842
|
+
* **SQL** \
|
|
1843
|
+
* **ServicePrincipal** \
|
|
1844
|
+
* **SystemAssignedManagedIdentity** \
|
|
1845
|
+
* **UserAssignedManagedIdentity**
|
|
1846
|
+
*/
|
|
1847
|
+
export declare type AzureSqlMIAuthenticationType = string;
|
|
1848
|
+
|
|
1597
1849
|
/** Azure SQL Managed Instance linked service. */
|
|
1598
1850
|
export declare interface AzureSqlMILinkedService extends LinkedService {
|
|
1599
1851
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1600
1852
|
type: "AzureSqlMI";
|
|
1853
|
+
/** 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). */
|
|
1854
|
+
server?: any;
|
|
1855
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
1856
|
+
database?: any;
|
|
1857
|
+
/** 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). */
|
|
1858
|
+
encrypt?: any;
|
|
1859
|
+
/** 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). */
|
|
1860
|
+
trustServerCertificate?: any;
|
|
1861
|
+
/** 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). */
|
|
1862
|
+
hostNameInCertificate?: any;
|
|
1863
|
+
/** 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). */
|
|
1864
|
+
applicationIntent?: any;
|
|
1865
|
+
/** 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). */
|
|
1866
|
+
connectTimeout?: any;
|
|
1867
|
+
/** 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). */
|
|
1868
|
+
connectRetryCount?: any;
|
|
1869
|
+
/** 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). */
|
|
1870
|
+
connectRetryInterval?: any;
|
|
1871
|
+
/** 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). */
|
|
1872
|
+
loadBalanceTimeout?: any;
|
|
1873
|
+
/** 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). */
|
|
1874
|
+
commandTimeout?: any;
|
|
1875
|
+
/** 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). */
|
|
1876
|
+
integratedSecurity?: any;
|
|
1877
|
+
/** 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). */
|
|
1878
|
+
failoverPartner?: any;
|
|
1879
|
+
/** 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). */
|
|
1880
|
+
maxPoolSize?: any;
|
|
1881
|
+
/** 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). */
|
|
1882
|
+
minPoolSize?: any;
|
|
1883
|
+
/** 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). */
|
|
1884
|
+
multipleActiveResultSets?: any;
|
|
1885
|
+
/** 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). */
|
|
1886
|
+
multiSubnetFailover?: any;
|
|
1887
|
+
/** 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). */
|
|
1888
|
+
packetSize?: any;
|
|
1889
|
+
/** 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). */
|
|
1890
|
+
pooling?: any;
|
|
1601
1891
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
1602
|
-
connectionString
|
|
1892
|
+
connectionString?: any;
|
|
1893
|
+
/** The type used for authentication. Type: string. */
|
|
1894
|
+
authenticationType?: AzureSqlMIAuthenticationType;
|
|
1895
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
1896
|
+
userName?: any;
|
|
1603
1897
|
/** The Azure key vault secret reference of password in connection string. */
|
|
1604
1898
|
password?: AzureKeyVaultSecretReference;
|
|
1605
1899
|
/** The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string). */
|
|
1606
1900
|
servicePrincipalId?: any;
|
|
1607
1901
|
/** The key of the service principal used to authenticate against Azure SQL Managed Instance. */
|
|
1608
1902
|
servicePrincipalKey?: SecretBaseUnion;
|
|
1903
|
+
/** 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). */
|
|
1904
|
+
servicePrincipalCredentialType?: any;
|
|
1905
|
+
/** 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. */
|
|
1906
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
1907
|
+
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
1908
|
+
tenant?: any;
|
|
1909
|
+
/** 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). */
|
|
1910
|
+
azureCloudType?: any;
|
|
1911
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
1912
|
+
encryptedCredential?: string;
|
|
1913
|
+
/** Sql always encrypted properties. */
|
|
1914
|
+
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
1915
|
+
/** The credential reference containing authentication information. */
|
|
1916
|
+
credential?: CredentialReference;
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
/** Azure SQL Managed Instance linked service properties. */
|
|
1920
|
+
export declare interface AzureSqlMILinkedServiceTypeProperties extends SqlServerBaseLinkedServiceTypeProperties {
|
|
1921
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
1922
|
+
connectionString?: any;
|
|
1923
|
+
/** The type used for authentication. Type: string. */
|
|
1924
|
+
authenticationType?: AzureSqlMIAuthenticationType;
|
|
1925
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
1926
|
+
userName?: any;
|
|
1927
|
+
/** The Azure key vault secret reference of password in connection string. */
|
|
1928
|
+
password?: AzureKeyVaultSecretReference;
|
|
1929
|
+
/** The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string). */
|
|
1930
|
+
servicePrincipalId?: any;
|
|
1931
|
+
/** The key of the service principal used to authenticate against Azure SQL Managed Instance. */
|
|
1932
|
+
servicePrincipalKey?: SecretBaseUnion;
|
|
1933
|
+
/** 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). */
|
|
1934
|
+
servicePrincipalCredentialType?: any;
|
|
1935
|
+
/** 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. */
|
|
1936
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
1609
1937
|
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
1610
1938
|
tenant?: any;
|
|
1611
1939
|
/** 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). */
|
|
@@ -2627,7 +2955,7 @@ export declare interface CreateRunResponse {
|
|
|
2627
2955
|
/** The Azure Data Factory nested object which contains the information and credential which can be used to connect with related store or compute resource. */
|
|
2628
2956
|
declare interface Credential_2 {
|
|
2629
2957
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
2630
|
-
type: "
|
|
2958
|
+
type: "ServicePrincipal" | "ManagedIdentity";
|
|
2631
2959
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
2632
2960
|
[property: string]: any;
|
|
2633
2961
|
/** Credential description. */
|
|
@@ -2742,7 +3070,7 @@ export declare interface CredentialResource extends SubResource {
|
|
|
2742
3070
|
properties: CredentialUnion;
|
|
2743
3071
|
}
|
|
2744
3072
|
|
|
2745
|
-
export declare type CredentialUnion = Credential_2 |
|
|
3073
|
+
export declare type CredentialUnion = Credential_2 | ServicePrincipalCredential | ManagedIdentityCredential;
|
|
2746
3074
|
|
|
2747
3075
|
/** Custom activity type. */
|
|
2748
3076
|
export declare interface CustomActivity extends ExecutionActivity {
|
|
@@ -3895,6 +4223,8 @@ export declare interface DynamicsCrmLinkedService extends LinkedService {
|
|
|
3895
4223
|
servicePrincipalCredentialType?: any;
|
|
3896
4224
|
/** 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. */
|
|
3897
4225
|
servicePrincipalCredential?: SecretBaseUnion;
|
|
4226
|
+
/** The credential reference containing authentication information. */
|
|
4227
|
+
credential?: CredentialReference;
|
|
3898
4228
|
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3899
4229
|
encryptedCredential?: string;
|
|
3900
4230
|
}
|
|
@@ -4387,8 +4717,8 @@ export declare interface ExpressionV2 {
|
|
|
4387
4717
|
type?: ExpressionV2Type;
|
|
4388
4718
|
/** Value for Constant/Field Type: string. */
|
|
4389
4719
|
value?: string;
|
|
4390
|
-
/** Expression operator value Type:
|
|
4391
|
-
|
|
4720
|
+
/** Expression operator value Type: list of strings. */
|
|
4721
|
+
operators?: string[];
|
|
4392
4722
|
/** List of nested expressions. */
|
|
4393
4723
|
operands?: ExpressionV2[];
|
|
4394
4724
|
}
|
|
@@ -4401,7 +4731,8 @@ export declare interface ExpressionV2 {
|
|
|
4401
4731
|
* **Constant** \
|
|
4402
4732
|
* **Field** \
|
|
4403
4733
|
* **Unary** \
|
|
4404
|
-
* **Binary**
|
|
4734
|
+
* **Binary** \
|
|
4735
|
+
* **NAry**
|
|
4405
4736
|
*/
|
|
4406
4737
|
export declare type ExpressionV2Type = string;
|
|
4407
4738
|
|
|
@@ -7069,6 +7400,14 @@ export declare enum KnownAmazonRdsForOraclePartitionOption {
|
|
|
7069
7400
|
DynamicRange = "DynamicRange"
|
|
7070
7401
|
}
|
|
7071
7402
|
|
|
7403
|
+
/** Known values of {@link AmazonRdsForSqlAuthenticationType} that the service accepts. */
|
|
7404
|
+
export declare enum KnownAmazonRdsForSqlAuthenticationType {
|
|
7405
|
+
/** SQL */
|
|
7406
|
+
SQL = "SQL",
|
|
7407
|
+
/** Windows */
|
|
7408
|
+
Windows = "Windows"
|
|
7409
|
+
}
|
|
7410
|
+
|
|
7072
7411
|
/** Known values of {@link AvroCompressionCodec} that the service accepts. */
|
|
7073
7412
|
export declare enum KnownAvroCompressionCodec {
|
|
7074
7413
|
/** None */
|
|
@@ -7109,6 +7448,42 @@ export declare enum KnownAzureSearchIndexWriteBehaviorType {
|
|
|
7109
7448
|
Upload = "Upload"
|
|
7110
7449
|
}
|
|
7111
7450
|
|
|
7451
|
+
/** Known values of {@link AzureSqlDatabaseAuthenticationType} that the service accepts. */
|
|
7452
|
+
export declare enum KnownAzureSqlDatabaseAuthenticationType {
|
|
7453
|
+
/** SQL */
|
|
7454
|
+
SQL = "SQL",
|
|
7455
|
+
/** ServicePrincipal */
|
|
7456
|
+
ServicePrincipal = "ServicePrincipal",
|
|
7457
|
+
/** SystemAssignedManagedIdentity */
|
|
7458
|
+
SystemAssignedManagedIdentity = "SystemAssignedManagedIdentity",
|
|
7459
|
+
/** UserAssignedManagedIdentity */
|
|
7460
|
+
UserAssignedManagedIdentity = "UserAssignedManagedIdentity"
|
|
7461
|
+
}
|
|
7462
|
+
|
|
7463
|
+
/** Known values of {@link AzureSqlDWAuthenticationType} that the service accepts. */
|
|
7464
|
+
export declare enum KnownAzureSqlDWAuthenticationType {
|
|
7465
|
+
/** SQL */
|
|
7466
|
+
SQL = "SQL",
|
|
7467
|
+
/** ServicePrincipal */
|
|
7468
|
+
ServicePrincipal = "ServicePrincipal",
|
|
7469
|
+
/** SystemAssignedManagedIdentity */
|
|
7470
|
+
SystemAssignedManagedIdentity = "SystemAssignedManagedIdentity",
|
|
7471
|
+
/** UserAssignedManagedIdentity */
|
|
7472
|
+
UserAssignedManagedIdentity = "UserAssignedManagedIdentity"
|
|
7473
|
+
}
|
|
7474
|
+
|
|
7475
|
+
/** Known values of {@link AzureSqlMIAuthenticationType} that the service accepts. */
|
|
7476
|
+
export declare enum KnownAzureSqlMIAuthenticationType {
|
|
7477
|
+
/** SQL */
|
|
7478
|
+
SQL = "SQL",
|
|
7479
|
+
/** ServicePrincipal */
|
|
7480
|
+
ServicePrincipal = "ServicePrincipal",
|
|
7481
|
+
/** SystemAssignedManagedIdentity */
|
|
7482
|
+
SystemAssignedManagedIdentity = "SystemAssignedManagedIdentity",
|
|
7483
|
+
/** UserAssignedManagedIdentity */
|
|
7484
|
+
UserAssignedManagedIdentity = "UserAssignedManagedIdentity"
|
|
7485
|
+
}
|
|
7486
|
+
|
|
7112
7487
|
/** Known values of {@link AzureStorageAuthenticationType} that the service accepts. */
|
|
7113
7488
|
export declare enum KnownAzureStorageAuthenticationType {
|
|
7114
7489
|
/** Anonymous */
|
|
@@ -7324,7 +7699,9 @@ export declare enum KnownExpressionV2Type {
|
|
|
7324
7699
|
/** Unary */
|
|
7325
7700
|
Unary = "Unary",
|
|
7326
7701
|
/** Binary */
|
|
7327
|
-
Binary = "Binary"
|
|
7702
|
+
Binary = "Binary",
|
|
7703
|
+
/** NAry */
|
|
7704
|
+
NAry = "NAry"
|
|
7328
7705
|
}
|
|
7329
7706
|
|
|
7330
7707
|
/** Known values of {@link FactoryIdentityType} that the service accepts. */
|
|
@@ -8115,6 +8492,14 @@ export declare enum KnownSqlPartitionOption {
|
|
|
8115
8492
|
DynamicRange = "DynamicRange"
|
|
8116
8493
|
}
|
|
8117
8494
|
|
|
8495
|
+
/** Known values of {@link SqlServerAuthenticationType} that the service accepts. */
|
|
8496
|
+
export declare enum KnownSqlServerAuthenticationType {
|
|
8497
|
+
/** SQL */
|
|
8498
|
+
SQL = "SQL",
|
|
8499
|
+
/** Windows */
|
|
8500
|
+
Windows = "Windows"
|
|
8501
|
+
}
|
|
8502
|
+
|
|
8118
8503
|
/** Known values of {@link SqlWriteBehaviorEnum} that the service accepts. */
|
|
8119
8504
|
export declare enum KnownSqlWriteBehaviorEnum {
|
|
8120
8505
|
/** Insert */
|
|
@@ -8351,6 +8736,8 @@ export declare interface LakeHouseReadSettings extends StoreReadSettings {
|
|
|
8351
8736
|
export declare interface LakeHouseTableDataset extends Dataset {
|
|
8352
8737
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
8353
8738
|
type: "LakeHouseTable";
|
|
8739
|
+
/** The schema name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string). */
|
|
8740
|
+
schemaTypePropertiesSchema?: any;
|
|
8354
8741
|
/** The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string). */
|
|
8355
8742
|
table?: any;
|
|
8356
8743
|
}
|
|
@@ -8652,12 +9039,8 @@ export declare interface MagentoSource extends TabularSource {
|
|
|
8652
9039
|
export declare interface ManagedIdentityCredential extends Credential_2 {
|
|
8653
9040
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
8654
9041
|
type: "ManagedIdentity";
|
|
8655
|
-
|
|
8656
|
-
|
|
8657
|
-
/** Credential resource type. */
|
|
8658
|
-
export declare interface ManagedIdentityCredentialResource extends CredentialResource {
|
|
8659
|
-
/** Managed Identity Credential properties. */
|
|
8660
|
-
properties: ManagedIdentityCredential;
|
|
9042
|
+
/** The resource id of user assigned managed identity */
|
|
9043
|
+
resourceId?: string;
|
|
8661
9044
|
}
|
|
8662
9045
|
|
|
8663
9046
|
/** Managed integration runtime, including managed elastic and managed dedicated integration runtimes. */
|
|
@@ -11580,8 +11963,10 @@ export declare interface SalesforceServiceCloudV2Sink extends CopySink {
|
|
|
11580
11963
|
export declare interface SalesforceServiceCloudV2Source extends CopySource {
|
|
11581
11964
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
11582
11965
|
type: "SalesforceServiceCloudV2Source";
|
|
11583
|
-
/**
|
|
11966
|
+
/** Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string). */
|
|
11584
11967
|
soqlQuery?: any;
|
|
11968
|
+
/** 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). */
|
|
11969
|
+
query?: any;
|
|
11585
11970
|
/** This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
11586
11971
|
includeDeletedObjects?: any;
|
|
11587
11972
|
/** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
|
|
@@ -11684,8 +12069,10 @@ export declare type SalesforceV2SinkWriteBehavior = string;
|
|
|
11684
12069
|
export declare interface SalesforceV2Source extends TabularSource {
|
|
11685
12070
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
11686
12071
|
type: "SalesforceV2Source";
|
|
11687
|
-
/**
|
|
12072
|
+
/** Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string). */
|
|
11688
12073
|
soqlQuery?: any;
|
|
12074
|
+
/** 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). */
|
|
12075
|
+
query?: any;
|
|
11689
12076
|
/** This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
11690
12077
|
includeDeletedObjects?: any;
|
|
11691
12078
|
}
|
|
@@ -12200,8 +12587,8 @@ export declare type ScriptActivityParameterType = string;
|
|
|
12200
12587
|
export declare interface ScriptActivityScriptBlock {
|
|
12201
12588
|
/** The query text. Type: string (or Expression with resultType string). */
|
|
12202
12589
|
text: any;
|
|
12203
|
-
/** The type of the query. Type: string. */
|
|
12204
|
-
type:
|
|
12590
|
+
/** The type of the query. Please refer to the ScriptType for valid options. Type: string (or Expression with resultType string). */
|
|
12591
|
+
type: any;
|
|
12205
12592
|
/** Array of script parameters. Type: array. */
|
|
12206
12593
|
parameters?: ScriptActivityParameter[];
|
|
12207
12594
|
}
|
|
@@ -12580,12 +12967,6 @@ export declare interface ServicePrincipalCredential extends Credential_2 {
|
|
|
12580
12967
|
tenant?: any;
|
|
12581
12968
|
}
|
|
12582
12969
|
|
|
12583
|
-
/** Credential resource type. */
|
|
12584
|
-
export declare interface ServicePrincipalCredentialResource extends CredentialResource {
|
|
12585
|
-
/** Service Principal Credential properties. */
|
|
12586
|
-
properties: ServicePrincipalCredential;
|
|
12587
|
-
}
|
|
12588
|
-
|
|
12589
12970
|
/**
|
|
12590
12971
|
* Defines values for ServicePrincipalCredentialType. \
|
|
12591
12972
|
* {@link KnownServicePrincipalCredentialType} can be used interchangeably with ServicePrincipalCredentialType,
|
|
@@ -13182,12 +13563,120 @@ export declare interface SqlPartitionSettings {
|
|
|
13182
13563
|
partitionLowerBound?: any;
|
|
13183
13564
|
}
|
|
13184
13565
|
|
|
13566
|
+
/**
|
|
13567
|
+
* Defines values for SqlServerAuthenticationType. \
|
|
13568
|
+
* {@link KnownSqlServerAuthenticationType} can be used interchangeably with SqlServerAuthenticationType,
|
|
13569
|
+
* this enum contains the known values that the service supports.
|
|
13570
|
+
* ### Known values supported by the service
|
|
13571
|
+
* **SQL** \
|
|
13572
|
+
* **Windows**
|
|
13573
|
+
*/
|
|
13574
|
+
export declare type SqlServerAuthenticationType = string;
|
|
13575
|
+
|
|
13576
|
+
/** Sql Server family connector common linked service properties. */
|
|
13577
|
+
export declare interface SqlServerBaseLinkedServiceTypeProperties {
|
|
13578
|
+
/** 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). */
|
|
13579
|
+
server?: any;
|
|
13580
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
13581
|
+
database?: any;
|
|
13582
|
+
/** 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). */
|
|
13583
|
+
encrypt?: any;
|
|
13584
|
+
/** 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). */
|
|
13585
|
+
trustServerCertificate?: any;
|
|
13586
|
+
/** 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). */
|
|
13587
|
+
hostNameInCertificate?: any;
|
|
13588
|
+
/** 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). */
|
|
13589
|
+
applicationIntent?: any;
|
|
13590
|
+
/** 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). */
|
|
13591
|
+
connectTimeout?: any;
|
|
13592
|
+
/** 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). */
|
|
13593
|
+
connectRetryCount?: any;
|
|
13594
|
+
/** 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). */
|
|
13595
|
+
connectRetryInterval?: any;
|
|
13596
|
+
/** 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). */
|
|
13597
|
+
loadBalanceTimeout?: any;
|
|
13598
|
+
/** 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). */
|
|
13599
|
+
commandTimeout?: any;
|
|
13600
|
+
/** 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). */
|
|
13601
|
+
integratedSecurity?: any;
|
|
13602
|
+
/** 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). */
|
|
13603
|
+
failoverPartner?: any;
|
|
13604
|
+
/** 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). */
|
|
13605
|
+
maxPoolSize?: any;
|
|
13606
|
+
/** 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). */
|
|
13607
|
+
minPoolSize?: any;
|
|
13608
|
+
/** 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). */
|
|
13609
|
+
multipleActiveResultSets?: any;
|
|
13610
|
+
/** 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). */
|
|
13611
|
+
multiSubnetFailover?: any;
|
|
13612
|
+
/** 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). */
|
|
13613
|
+
packetSize?: any;
|
|
13614
|
+
/** 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). */
|
|
13615
|
+
pooling?: any;
|
|
13616
|
+
}
|
|
13617
|
+
|
|
13185
13618
|
/** SQL Server linked service. */
|
|
13186
13619
|
export declare interface SqlServerLinkedService extends LinkedService {
|
|
13187
13620
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
13188
13621
|
type: "SqlServer";
|
|
13622
|
+
/** 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). */
|
|
13623
|
+
server?: any;
|
|
13624
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
13625
|
+
database?: any;
|
|
13626
|
+
/** 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). */
|
|
13627
|
+
encrypt?: any;
|
|
13628
|
+
/** 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). */
|
|
13629
|
+
trustServerCertificate?: any;
|
|
13630
|
+
/** 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). */
|
|
13631
|
+
hostNameInCertificate?: any;
|
|
13632
|
+
/** 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). */
|
|
13633
|
+
applicationIntent?: any;
|
|
13634
|
+
/** 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). */
|
|
13635
|
+
connectTimeout?: any;
|
|
13636
|
+
/** 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). */
|
|
13637
|
+
connectRetryCount?: any;
|
|
13638
|
+
/** 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). */
|
|
13639
|
+
connectRetryInterval?: any;
|
|
13640
|
+
/** 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). */
|
|
13641
|
+
loadBalanceTimeout?: any;
|
|
13642
|
+
/** 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). */
|
|
13643
|
+
commandTimeout?: any;
|
|
13644
|
+
/** 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). */
|
|
13645
|
+
integratedSecurity?: any;
|
|
13646
|
+
/** 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). */
|
|
13647
|
+
failoverPartner?: any;
|
|
13648
|
+
/** 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). */
|
|
13649
|
+
maxPoolSize?: any;
|
|
13650
|
+
/** 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). */
|
|
13651
|
+
minPoolSize?: any;
|
|
13652
|
+
/** 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). */
|
|
13653
|
+
multipleActiveResultSets?: any;
|
|
13654
|
+
/** 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). */
|
|
13655
|
+
multiSubnetFailover?: any;
|
|
13656
|
+
/** 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). */
|
|
13657
|
+
packetSize?: any;
|
|
13658
|
+
/** 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). */
|
|
13659
|
+
pooling?: any;
|
|
13189
13660
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
13190
|
-
connectionString
|
|
13661
|
+
connectionString?: any;
|
|
13662
|
+
/** The type used for authentication. Type: string. */
|
|
13663
|
+
authenticationType?: SqlServerAuthenticationType;
|
|
13664
|
+
/** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
|
|
13665
|
+
userName?: any;
|
|
13666
|
+
/** The on-premises Windows authentication password. */
|
|
13667
|
+
password?: SecretBaseUnion;
|
|
13668
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
13669
|
+
encryptedCredential?: string;
|
|
13670
|
+
/** Sql always encrypted properties. */
|
|
13671
|
+
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
13672
|
+
}
|
|
13673
|
+
|
|
13674
|
+
/** SQL Server linked service properties. */
|
|
13675
|
+
export declare interface SqlServerLinkedServiceTypeProperties extends SqlServerBaseLinkedServiceTypeProperties {
|
|
13676
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
13677
|
+
connectionString?: any;
|
|
13678
|
+
/** The type used for authentication. Type: string. */
|
|
13679
|
+
authenticationType?: SqlServerAuthenticationType;
|
|
13191
13680
|
/** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
|
|
13192
13681
|
userName?: any;
|
|
13193
13682
|
/** The on-premises Windows authentication password. */
|