@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.
- 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 +3 -2
- 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
- package/types/tsdoc-metadata.json +1 -1
|
@@ -8,7 +8,7 @@ export type DatasetUnion = Dataset | AmazonS3Dataset | AvroDataset | ExcelDatase
|
|
|
8
8
|
export type ActivityUnion = Activity | ControlActivityUnion | ExecutionActivityUnion | ExecuteWranglingDataflowActivity;
|
|
9
9
|
export type TriggerUnion = Trigger | MultiplePipelineTriggerUnion | TumblingWindowTrigger | RerunTumblingWindowTrigger | ChainingTrigger;
|
|
10
10
|
export type DataFlowUnion = DataFlow | MappingDataFlow | Flowlet | WranglingDataFlow;
|
|
11
|
-
export type CredentialUnion = Credential |
|
|
11
|
+
export type CredentialUnion = Credential | ServicePrincipalCredential | ManagedIdentityCredential;
|
|
12
12
|
export type SecretBaseUnion = SecretBase | SecureString | AzureKeyVaultSecretReference;
|
|
13
13
|
export type DatasetLocationUnion = DatasetLocation | AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation | LakeHouseLocation;
|
|
14
14
|
export type DatasetStorageFormatUnion = DatasetStorageFormat | TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat;
|
|
@@ -1406,7 +1406,7 @@ export interface CredentialListResponse {
|
|
|
1406
1406
|
/** The Azure Data Factory nested object which contains the information and credential which can be used to connect with related store or compute resource. */
|
|
1407
1407
|
export interface Credential {
|
|
1408
1408
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1409
|
-
type: "
|
|
1409
|
+
type: "ServicePrincipal" | "ManagedIdentity";
|
|
1410
1410
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
1411
1411
|
[property: string]: any;
|
|
1412
1412
|
/** Credential description. */
|
|
@@ -2076,6 +2076,47 @@ export interface SsisVariable {
|
|
|
2076
2076
|
/** Variable sensitive value. */
|
|
2077
2077
|
sensitiveValue?: string;
|
|
2078
2078
|
}
|
|
2079
|
+
/** Sql Server family connector common linked service properties. */
|
|
2080
|
+
export interface SqlServerBaseLinkedServiceTypeProperties {
|
|
2081
|
+
/** 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). */
|
|
2082
|
+
server?: any;
|
|
2083
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
2084
|
+
database?: any;
|
|
2085
|
+
/** 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). */
|
|
2086
|
+
encrypt?: any;
|
|
2087
|
+
/** 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). */
|
|
2088
|
+
trustServerCertificate?: any;
|
|
2089
|
+
/** 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). */
|
|
2090
|
+
hostNameInCertificate?: any;
|
|
2091
|
+
/** 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). */
|
|
2092
|
+
applicationIntent?: any;
|
|
2093
|
+
/** 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). */
|
|
2094
|
+
connectTimeout?: any;
|
|
2095
|
+
/** 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). */
|
|
2096
|
+
connectRetryCount?: any;
|
|
2097
|
+
/** 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). */
|
|
2098
|
+
connectRetryInterval?: any;
|
|
2099
|
+
/** 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). */
|
|
2100
|
+
loadBalanceTimeout?: any;
|
|
2101
|
+
/** 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). */
|
|
2102
|
+
commandTimeout?: any;
|
|
2103
|
+
/** 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). */
|
|
2104
|
+
integratedSecurity?: any;
|
|
2105
|
+
/** 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). */
|
|
2106
|
+
failoverPartner?: any;
|
|
2107
|
+
/** 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). */
|
|
2108
|
+
maxPoolSize?: any;
|
|
2109
|
+
/** 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). */
|
|
2110
|
+
minPoolSize?: any;
|
|
2111
|
+
/** 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). */
|
|
2112
|
+
multipleActiveResultSets?: any;
|
|
2113
|
+
/** 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). */
|
|
2114
|
+
multiSubnetFailover?: any;
|
|
2115
|
+
/** 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). */
|
|
2116
|
+
packetSize?: any;
|
|
2117
|
+
/** 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). */
|
|
2118
|
+
pooling?: any;
|
|
2119
|
+
}
|
|
2079
2120
|
/** Sql always encrypted properties. */
|
|
2080
2121
|
export interface SqlAlwaysEncryptedProperties {
|
|
2081
2122
|
/** Sql always encrypted AKV authentication type. Type: string. */
|
|
@@ -2629,8 +2670,8 @@ export interface PowerQuerySinkMapping {
|
|
|
2629
2670
|
export interface ScriptActivityScriptBlock {
|
|
2630
2671
|
/** The query text. Type: string (or Expression with resultType string). */
|
|
2631
2672
|
text: any;
|
|
2632
|
-
/** The type of the query. Type: string. */
|
|
2633
|
-
type:
|
|
2673
|
+
/** The type of the query. Please refer to the ScriptType for valid options. Type: string (or Expression with resultType string). */
|
|
2674
|
+
type: any;
|
|
2634
2675
|
/** Array of script parameters. Type: array. */
|
|
2635
2676
|
parameters?: ScriptActivityParameter[];
|
|
2636
2677
|
}
|
|
@@ -2695,8 +2736,8 @@ export interface ExpressionV2 {
|
|
|
2695
2736
|
type?: ExpressionV2Type;
|
|
2696
2737
|
/** Value for Constant/Field Type: string. */
|
|
2697
2738
|
value?: string;
|
|
2698
|
-
/** Expression operator value Type:
|
|
2699
|
-
|
|
2739
|
+
/** Expression operator value Type: list of strings. */
|
|
2740
|
+
operators?: string[];
|
|
2700
2741
|
/** List of nested expressions. */
|
|
2701
2742
|
operands?: ExpressionV2[];
|
|
2702
2743
|
}
|
|
@@ -3169,14 +3210,60 @@ export interface AzureTableStorageLinkedService extends LinkedService {
|
|
|
3169
3210
|
export interface AzureSqlDWLinkedService extends LinkedService {
|
|
3170
3211
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3171
3212
|
type: "AzureSqlDW";
|
|
3213
|
+
/** 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). */
|
|
3214
|
+
server?: any;
|
|
3215
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
3216
|
+
database?: any;
|
|
3217
|
+
/** 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). */
|
|
3218
|
+
encrypt?: any;
|
|
3219
|
+
/** 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). */
|
|
3220
|
+
trustServerCertificate?: any;
|
|
3221
|
+
/** 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). */
|
|
3222
|
+
hostNameInCertificate?: any;
|
|
3223
|
+
/** 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). */
|
|
3224
|
+
applicationIntent?: any;
|
|
3225
|
+
/** 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). */
|
|
3226
|
+
connectTimeout?: any;
|
|
3227
|
+
/** 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). */
|
|
3228
|
+
connectRetryCount?: any;
|
|
3229
|
+
/** 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). */
|
|
3230
|
+
connectRetryInterval?: any;
|
|
3231
|
+
/** 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). */
|
|
3232
|
+
loadBalanceTimeout?: any;
|
|
3233
|
+
/** 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). */
|
|
3234
|
+
commandTimeout?: any;
|
|
3235
|
+
/** 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). */
|
|
3236
|
+
integratedSecurity?: any;
|
|
3237
|
+
/** 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). */
|
|
3238
|
+
failoverPartner?: any;
|
|
3239
|
+
/** 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). */
|
|
3240
|
+
maxPoolSize?: any;
|
|
3241
|
+
/** 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). */
|
|
3242
|
+
minPoolSize?: any;
|
|
3243
|
+
/** 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). */
|
|
3244
|
+
multipleActiveResultSets?: any;
|
|
3245
|
+
/** 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). */
|
|
3246
|
+
multiSubnetFailover?: any;
|
|
3247
|
+
/** 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). */
|
|
3248
|
+
packetSize?: any;
|
|
3249
|
+
/** 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). */
|
|
3250
|
+
pooling?: any;
|
|
3172
3251
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3173
|
-
connectionString
|
|
3252
|
+
connectionString?: any;
|
|
3253
|
+
/** The type used for authentication. Type: string. */
|
|
3254
|
+
authenticationType?: AzureSqlDWAuthenticationType;
|
|
3255
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
3256
|
+
userName?: any;
|
|
3174
3257
|
/** The Azure key vault secret reference of password in connection string. */
|
|
3175
3258
|
password?: AzureKeyVaultSecretReference;
|
|
3176
3259
|
/** The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string). */
|
|
3177
3260
|
servicePrincipalId?: any;
|
|
3178
3261
|
/** The key of the service principal used to authenticate against Azure SQL Data Warehouse. */
|
|
3179
3262
|
servicePrincipalKey?: SecretBaseUnion;
|
|
3263
|
+
/** 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). */
|
|
3264
|
+
servicePrincipalCredentialType?: any;
|
|
3265
|
+
/** 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. */
|
|
3266
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
3180
3267
|
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
3181
3268
|
tenant?: any;
|
|
3182
3269
|
/** 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). */
|
|
@@ -3190,8 +3277,48 @@ export interface AzureSqlDWLinkedService extends LinkedService {
|
|
|
3190
3277
|
export interface SqlServerLinkedService extends LinkedService {
|
|
3191
3278
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3192
3279
|
type: "SqlServer";
|
|
3280
|
+
/** 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). */
|
|
3281
|
+
server?: any;
|
|
3282
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
3283
|
+
database?: any;
|
|
3284
|
+
/** 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). */
|
|
3285
|
+
encrypt?: any;
|
|
3286
|
+
/** 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). */
|
|
3287
|
+
trustServerCertificate?: any;
|
|
3288
|
+
/** 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). */
|
|
3289
|
+
hostNameInCertificate?: any;
|
|
3290
|
+
/** 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). */
|
|
3291
|
+
applicationIntent?: any;
|
|
3292
|
+
/** 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). */
|
|
3293
|
+
connectTimeout?: any;
|
|
3294
|
+
/** 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). */
|
|
3295
|
+
connectRetryCount?: any;
|
|
3296
|
+
/** 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). */
|
|
3297
|
+
connectRetryInterval?: any;
|
|
3298
|
+
/** 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). */
|
|
3299
|
+
loadBalanceTimeout?: any;
|
|
3300
|
+
/** 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). */
|
|
3301
|
+
commandTimeout?: any;
|
|
3302
|
+
/** 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). */
|
|
3303
|
+
integratedSecurity?: any;
|
|
3304
|
+
/** 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). */
|
|
3305
|
+
failoverPartner?: any;
|
|
3306
|
+
/** 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). */
|
|
3307
|
+
maxPoolSize?: any;
|
|
3308
|
+
/** 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). */
|
|
3309
|
+
minPoolSize?: any;
|
|
3310
|
+
/** 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). */
|
|
3311
|
+
multipleActiveResultSets?: any;
|
|
3312
|
+
/** 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). */
|
|
3313
|
+
multiSubnetFailover?: any;
|
|
3314
|
+
/** 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). */
|
|
3315
|
+
packetSize?: any;
|
|
3316
|
+
/** 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). */
|
|
3317
|
+
pooling?: any;
|
|
3193
3318
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3194
|
-
connectionString
|
|
3319
|
+
connectionString?: any;
|
|
3320
|
+
/** The type used for authentication. Type: string. */
|
|
3321
|
+
authenticationType?: SqlServerAuthenticationType;
|
|
3195
3322
|
/** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
|
|
3196
3323
|
userName?: any;
|
|
3197
3324
|
/** The on-premises Windows authentication password. */
|
|
@@ -3205,8 +3332,48 @@ export interface SqlServerLinkedService extends LinkedService {
|
|
|
3205
3332
|
export interface AmazonRdsForSqlServerLinkedService extends LinkedService {
|
|
3206
3333
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3207
3334
|
type: "AmazonRdsForSqlServer";
|
|
3335
|
+
/** 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). */
|
|
3336
|
+
server?: any;
|
|
3337
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
3338
|
+
database?: any;
|
|
3339
|
+
/** 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). */
|
|
3340
|
+
encrypt?: any;
|
|
3341
|
+
/** 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). */
|
|
3342
|
+
trustServerCertificate?: any;
|
|
3343
|
+
/** 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). */
|
|
3344
|
+
hostNameInCertificate?: any;
|
|
3345
|
+
/** 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). */
|
|
3346
|
+
applicationIntent?: any;
|
|
3347
|
+
/** 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). */
|
|
3348
|
+
connectTimeout?: any;
|
|
3349
|
+
/** 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). */
|
|
3350
|
+
connectRetryCount?: any;
|
|
3351
|
+
/** 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). */
|
|
3352
|
+
connectRetryInterval?: any;
|
|
3353
|
+
/** 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). */
|
|
3354
|
+
loadBalanceTimeout?: any;
|
|
3355
|
+
/** 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). */
|
|
3356
|
+
commandTimeout?: any;
|
|
3357
|
+
/** 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). */
|
|
3358
|
+
integratedSecurity?: any;
|
|
3359
|
+
/** 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). */
|
|
3360
|
+
failoverPartner?: any;
|
|
3361
|
+
/** 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). */
|
|
3362
|
+
maxPoolSize?: any;
|
|
3363
|
+
/** 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). */
|
|
3364
|
+
minPoolSize?: any;
|
|
3365
|
+
/** 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). */
|
|
3366
|
+
multipleActiveResultSets?: any;
|
|
3367
|
+
/** 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). */
|
|
3368
|
+
multiSubnetFailover?: any;
|
|
3369
|
+
/** 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). */
|
|
3370
|
+
packetSize?: any;
|
|
3371
|
+
/** 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). */
|
|
3372
|
+
pooling?: any;
|
|
3208
3373
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3209
|
-
connectionString
|
|
3374
|
+
connectionString?: any;
|
|
3375
|
+
/** The type used for authentication. Type: string. */
|
|
3376
|
+
authenticationType?: AmazonRdsForSqlAuthenticationType;
|
|
3210
3377
|
/** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
|
|
3211
3378
|
userName?: any;
|
|
3212
3379
|
/** The on-premises Windows authentication password. */
|
|
@@ -3220,14 +3387,60 @@ export interface AmazonRdsForSqlServerLinkedService extends LinkedService {
|
|
|
3220
3387
|
export interface AzureSqlDatabaseLinkedService extends LinkedService {
|
|
3221
3388
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3222
3389
|
type: "AzureSqlDatabase";
|
|
3390
|
+
/** 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). */
|
|
3391
|
+
server?: any;
|
|
3392
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
3393
|
+
database?: any;
|
|
3394
|
+
/** 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). */
|
|
3395
|
+
encrypt?: any;
|
|
3396
|
+
/** 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). */
|
|
3397
|
+
trustServerCertificate?: any;
|
|
3398
|
+
/** 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). */
|
|
3399
|
+
hostNameInCertificate?: any;
|
|
3400
|
+
/** 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). */
|
|
3401
|
+
applicationIntent?: any;
|
|
3402
|
+
/** 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). */
|
|
3403
|
+
connectTimeout?: any;
|
|
3404
|
+
/** 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). */
|
|
3405
|
+
connectRetryCount?: any;
|
|
3406
|
+
/** 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). */
|
|
3407
|
+
connectRetryInterval?: any;
|
|
3408
|
+
/** 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). */
|
|
3409
|
+
loadBalanceTimeout?: any;
|
|
3410
|
+
/** 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). */
|
|
3411
|
+
commandTimeout?: any;
|
|
3412
|
+
/** 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). */
|
|
3413
|
+
integratedSecurity?: any;
|
|
3414
|
+
/** 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). */
|
|
3415
|
+
failoverPartner?: any;
|
|
3416
|
+
/** 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). */
|
|
3417
|
+
maxPoolSize?: any;
|
|
3418
|
+
/** 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). */
|
|
3419
|
+
minPoolSize?: any;
|
|
3420
|
+
/** 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). */
|
|
3421
|
+
multipleActiveResultSets?: any;
|
|
3422
|
+
/** 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). */
|
|
3423
|
+
multiSubnetFailover?: any;
|
|
3424
|
+
/** 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). */
|
|
3425
|
+
packetSize?: any;
|
|
3426
|
+
/** 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). */
|
|
3427
|
+
pooling?: any;
|
|
3223
3428
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3224
|
-
connectionString
|
|
3429
|
+
connectionString?: any;
|
|
3430
|
+
/** The type used for authentication. Type: string. */
|
|
3431
|
+
authenticationType?: AzureSqlDatabaseAuthenticationType;
|
|
3432
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
3433
|
+
userName?: any;
|
|
3225
3434
|
/** The Azure key vault secret reference of password in connection string. */
|
|
3226
3435
|
password?: AzureKeyVaultSecretReference;
|
|
3227
3436
|
/** The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string). */
|
|
3228
3437
|
servicePrincipalId?: any;
|
|
3229
3438
|
/** The key of the service principal used to authenticate against Azure SQL Database. */
|
|
3230
3439
|
servicePrincipalKey?: SecretBaseUnion;
|
|
3440
|
+
/** 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). */
|
|
3441
|
+
servicePrincipalCredentialType?: any;
|
|
3442
|
+
/** 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. */
|
|
3443
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
3231
3444
|
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
3232
3445
|
tenant?: any;
|
|
3233
3446
|
/** 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). */
|
|
@@ -3243,14 +3456,60 @@ export interface AzureSqlDatabaseLinkedService extends LinkedService {
|
|
|
3243
3456
|
export interface AzureSqlMILinkedService extends LinkedService {
|
|
3244
3457
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3245
3458
|
type: "AzureSqlMI";
|
|
3459
|
+
/** 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). */
|
|
3460
|
+
server?: any;
|
|
3461
|
+
/** The name of the database, used by recommended version. Type: string (or Expression with resultType string). */
|
|
3462
|
+
database?: any;
|
|
3463
|
+
/** 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). */
|
|
3464
|
+
encrypt?: any;
|
|
3465
|
+
/** 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). */
|
|
3466
|
+
trustServerCertificate?: any;
|
|
3467
|
+
/** 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). */
|
|
3468
|
+
hostNameInCertificate?: any;
|
|
3469
|
+
/** 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). */
|
|
3470
|
+
applicationIntent?: any;
|
|
3471
|
+
/** 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). */
|
|
3472
|
+
connectTimeout?: any;
|
|
3473
|
+
/** 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). */
|
|
3474
|
+
connectRetryCount?: any;
|
|
3475
|
+
/** 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). */
|
|
3476
|
+
connectRetryInterval?: any;
|
|
3477
|
+
/** 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). */
|
|
3478
|
+
loadBalanceTimeout?: any;
|
|
3479
|
+
/** 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). */
|
|
3480
|
+
commandTimeout?: any;
|
|
3481
|
+
/** 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). */
|
|
3482
|
+
integratedSecurity?: any;
|
|
3483
|
+
/** 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). */
|
|
3484
|
+
failoverPartner?: any;
|
|
3485
|
+
/** 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). */
|
|
3486
|
+
maxPoolSize?: any;
|
|
3487
|
+
/** 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). */
|
|
3488
|
+
minPoolSize?: any;
|
|
3489
|
+
/** 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). */
|
|
3490
|
+
multipleActiveResultSets?: any;
|
|
3491
|
+
/** 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). */
|
|
3492
|
+
multiSubnetFailover?: any;
|
|
3493
|
+
/** 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). */
|
|
3494
|
+
packetSize?: any;
|
|
3495
|
+
/** 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). */
|
|
3496
|
+
pooling?: any;
|
|
3246
3497
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3247
|
-
connectionString
|
|
3498
|
+
connectionString?: any;
|
|
3499
|
+
/** The type used for authentication. Type: string. */
|
|
3500
|
+
authenticationType?: AzureSqlMIAuthenticationType;
|
|
3501
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
3502
|
+
userName?: any;
|
|
3248
3503
|
/** The Azure key vault secret reference of password in connection string. */
|
|
3249
3504
|
password?: AzureKeyVaultSecretReference;
|
|
3250
3505
|
/** The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string). */
|
|
3251
3506
|
servicePrincipalId?: any;
|
|
3252
3507
|
/** The key of the service principal used to authenticate against Azure SQL Managed Instance. */
|
|
3253
3508
|
servicePrincipalKey?: SecretBaseUnion;
|
|
3509
|
+
/** 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). */
|
|
3510
|
+
servicePrincipalCredentialType?: any;
|
|
3511
|
+
/** 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. */
|
|
3512
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
3254
3513
|
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
3255
3514
|
tenant?: any;
|
|
3256
3515
|
/** 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). */
|
|
@@ -3376,6 +3635,8 @@ export interface DynamicsCrmLinkedService extends LinkedService {
|
|
|
3376
3635
|
servicePrincipalCredentialType?: any;
|
|
3377
3636
|
/** 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. */
|
|
3378
3637
|
servicePrincipalCredential?: SecretBaseUnion;
|
|
3638
|
+
/** The credential reference containing authentication information. */
|
|
3639
|
+
credential?: CredentialReference;
|
|
3379
3640
|
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3380
3641
|
encryptedCredential?: string;
|
|
3381
3642
|
}
|
|
@@ -6462,6 +6723,8 @@ export interface AzureDatabricksDeltaLakeDataset extends Dataset {
|
|
|
6462
6723
|
export interface LakeHouseTableDataset extends Dataset {
|
|
6463
6724
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6464
6725
|
type: "LakeHouseTable";
|
|
6726
|
+
/** The schema name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string). */
|
|
6727
|
+
schemaTypePropertiesSchema?: any;
|
|
6465
6728
|
/** The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string). */
|
|
6466
6729
|
table?: any;
|
|
6467
6730
|
}
|
|
@@ -6657,11 +6920,6 @@ export interface LinkedServiceDebugResource extends SubResourceDebugResource {
|
|
|
6657
6920
|
/** Properties of linked service. */
|
|
6658
6921
|
properties: LinkedServiceUnion;
|
|
6659
6922
|
}
|
|
6660
|
-
/** Managed identity credential. */
|
|
6661
|
-
export interface ManagedIdentityCredential extends Credential {
|
|
6662
|
-
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6663
|
-
type: "ManagedIdentity";
|
|
6664
|
-
}
|
|
6665
6923
|
/** Service principal credential. */
|
|
6666
6924
|
export interface ServicePrincipalCredential extends Credential {
|
|
6667
6925
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -6673,6 +6931,13 @@ export interface ServicePrincipalCredential extends Credential {
|
|
|
6673
6931
|
/** The ID of the tenant to which the service principal belongs */
|
|
6674
6932
|
tenant?: any;
|
|
6675
6933
|
}
|
|
6934
|
+
/** Managed identity credential. */
|
|
6935
|
+
export interface ManagedIdentityCredential extends Credential {
|
|
6936
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6937
|
+
type: "ManagedIdentity";
|
|
6938
|
+
/** The resource id of user assigned managed identity */
|
|
6939
|
+
resourceId?: string;
|
|
6940
|
+
}
|
|
6676
6941
|
/** Azure Data Factory secure string definition. The string value will be masked with asterisks '*' during Get or List API calls. */
|
|
6677
6942
|
export interface SecureString extends SecretBase {
|
|
6678
6943
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -6900,6 +7165,121 @@ export interface LinkedIntegrationRuntimeRbacAuthorization extends LinkedIntegra
|
|
|
6900
7165
|
/** The credential reference containing authentication information. */
|
|
6901
7166
|
credential?: CredentialReference;
|
|
6902
7167
|
}
|
|
7168
|
+
/** Azure SQL Data Warehouse linked service properties. */
|
|
7169
|
+
export interface AzureSqlDWLinkedServiceTypeProperties extends SqlServerBaseLinkedServiceTypeProperties {
|
|
7170
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
7171
|
+
connectionString?: any;
|
|
7172
|
+
/** The type used for authentication. Type: string. */
|
|
7173
|
+
authenticationType?: AzureSqlDWAuthenticationType;
|
|
7174
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
7175
|
+
userName?: any;
|
|
7176
|
+
/** The Azure key vault secret reference of password in connection string. */
|
|
7177
|
+
password?: AzureKeyVaultSecretReference;
|
|
7178
|
+
/** The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string). */
|
|
7179
|
+
servicePrincipalId?: any;
|
|
7180
|
+
/** The key of the service principal used to authenticate against Azure SQL Data Warehouse. */
|
|
7181
|
+
servicePrincipalKey?: SecretBaseUnion;
|
|
7182
|
+
/** 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). */
|
|
7183
|
+
servicePrincipalCredentialType?: any;
|
|
7184
|
+
/** 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. */
|
|
7185
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
7186
|
+
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
7187
|
+
tenant?: any;
|
|
7188
|
+
/** 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). */
|
|
7189
|
+
azureCloudType?: any;
|
|
7190
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
7191
|
+
encryptedCredential?: string;
|
|
7192
|
+
/** The credential reference containing authentication information. */
|
|
7193
|
+
credential?: CredentialReference;
|
|
7194
|
+
}
|
|
7195
|
+
/** SQL Server linked service properties. */
|
|
7196
|
+
export interface SqlServerLinkedServiceTypeProperties extends SqlServerBaseLinkedServiceTypeProperties {
|
|
7197
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
7198
|
+
connectionString?: any;
|
|
7199
|
+
/** The type used for authentication. Type: string. */
|
|
7200
|
+
authenticationType?: SqlServerAuthenticationType;
|
|
7201
|
+
/** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
|
|
7202
|
+
userName?: any;
|
|
7203
|
+
/** The on-premises Windows authentication password. */
|
|
7204
|
+
password?: SecretBaseUnion;
|
|
7205
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
7206
|
+
encryptedCredential?: string;
|
|
7207
|
+
/** Sql always encrypted properties. */
|
|
7208
|
+
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
7209
|
+
}
|
|
7210
|
+
/** Amazon Rds for SQL Server linked service properties. */
|
|
7211
|
+
export interface AmazonRdsForSqlServerLinkedServiceTypeProperties extends SqlServerBaseLinkedServiceTypeProperties {
|
|
7212
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
7213
|
+
connectionString?: any;
|
|
7214
|
+
/** The type used for authentication. Type: string. */
|
|
7215
|
+
authenticationType?: AmazonRdsForSqlAuthenticationType;
|
|
7216
|
+
/** The on-premises Windows authentication user name. Type: string (or Expression with resultType string). */
|
|
7217
|
+
userName?: any;
|
|
7218
|
+
/** The on-premises Windows authentication password. */
|
|
7219
|
+
password?: SecretBaseUnion;
|
|
7220
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
7221
|
+
encryptedCredential?: string;
|
|
7222
|
+
/** Sql always encrypted properties. */
|
|
7223
|
+
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
7224
|
+
}
|
|
7225
|
+
/** Azure SQL Database linked service properties. */
|
|
7226
|
+
export interface AzureSqlDatabaseLinkedServiceTypeProperties extends SqlServerBaseLinkedServiceTypeProperties {
|
|
7227
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
7228
|
+
connectionString?: any;
|
|
7229
|
+
/** The type used for authentication. Type: string. */
|
|
7230
|
+
authenticationType?: AzureSqlDatabaseAuthenticationType;
|
|
7231
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
7232
|
+
userName?: any;
|
|
7233
|
+
/** The Azure key vault secret reference of password in connection string. */
|
|
7234
|
+
password?: AzureKeyVaultSecretReference;
|
|
7235
|
+
/** The ID of the service principal used to authenticate against Azure SQL Database. Type: string (or Expression with resultType string). */
|
|
7236
|
+
servicePrincipalId?: any;
|
|
7237
|
+
/** The key of the service principal used to authenticate against Azure SQL Database. */
|
|
7238
|
+
servicePrincipalKey?: SecretBaseUnion;
|
|
7239
|
+
/** 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). */
|
|
7240
|
+
servicePrincipalCredentialType?: any;
|
|
7241
|
+
/** 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. */
|
|
7242
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
7243
|
+
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
7244
|
+
tenant?: any;
|
|
7245
|
+
/** 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). */
|
|
7246
|
+
azureCloudType?: any;
|
|
7247
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
7248
|
+
encryptedCredential?: string;
|
|
7249
|
+
/** Sql always encrypted properties. */
|
|
7250
|
+
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
7251
|
+
/** The credential reference containing authentication information. */
|
|
7252
|
+
credential?: CredentialReference;
|
|
7253
|
+
}
|
|
7254
|
+
/** Azure SQL Managed Instance linked service properties. */
|
|
7255
|
+
export interface AzureSqlMILinkedServiceTypeProperties extends SqlServerBaseLinkedServiceTypeProperties {
|
|
7256
|
+
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
7257
|
+
connectionString?: any;
|
|
7258
|
+
/** The type used for authentication. Type: string. */
|
|
7259
|
+
authenticationType?: AzureSqlMIAuthenticationType;
|
|
7260
|
+
/** The user name to be used when connecting to server. Type: string (or Expression with resultType string). */
|
|
7261
|
+
userName?: any;
|
|
7262
|
+
/** The Azure key vault secret reference of password in connection string. */
|
|
7263
|
+
password?: AzureKeyVaultSecretReference;
|
|
7264
|
+
/** The ID of the service principal used to authenticate against Azure SQL Managed Instance. Type: string (or Expression with resultType string). */
|
|
7265
|
+
servicePrincipalId?: any;
|
|
7266
|
+
/** The key of the service principal used to authenticate against Azure SQL Managed Instance. */
|
|
7267
|
+
servicePrincipalKey?: SecretBaseUnion;
|
|
7268
|
+
/** 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). */
|
|
7269
|
+
servicePrincipalCredentialType?: any;
|
|
7270
|
+
/** 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. */
|
|
7271
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
7272
|
+
/** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
|
|
7273
|
+
tenant?: any;
|
|
7274
|
+
/** 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). */
|
|
7275
|
+
azureCloudType?: any;
|
|
7276
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
7277
|
+
encryptedCredential?: string;
|
|
7278
|
+
/** Sql always encrypted properties. */
|
|
7279
|
+
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
7280
|
+
/** The credential reference containing authentication information. */
|
|
7281
|
+
credential?: CredentialReference;
|
|
7282
|
+
}
|
|
6903
7283
|
/** A WebLinkedService that uses anonymous authentication to communicate with an HTTP endpoint. */
|
|
6904
7284
|
export interface WebAnonymousAuthentication extends WebLinkedServiceTypeProperties {
|
|
6905
7285
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -7850,8 +8230,10 @@ export interface SharePointOnlineListSource extends CopySource {
|
|
|
7850
8230
|
export interface SalesforceServiceCloudV2Source extends CopySource {
|
|
7851
8231
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7852
8232
|
type: "SalesforceServiceCloudV2Source";
|
|
7853
|
-
/**
|
|
8233
|
+
/** Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string). */
|
|
7854
8234
|
soqlQuery?: any;
|
|
8235
|
+
/** 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). */
|
|
8236
|
+
query?: any;
|
|
7855
8237
|
/** This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
7856
8238
|
includeDeletedObjects?: any;
|
|
7857
8239
|
/** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
|
|
@@ -8421,16 +8803,6 @@ export interface SelfDependencyTumblingWindowTriggerReference extends Dependency
|
|
|
8421
8803
|
/** The size of the window when evaluating the dependency. If undefined the frequency of the tumbling window will be used. */
|
|
8422
8804
|
size?: string;
|
|
8423
8805
|
}
|
|
8424
|
-
/** Credential resource type. */
|
|
8425
|
-
export interface ManagedIdentityCredentialResource extends CredentialResource {
|
|
8426
|
-
/** Managed Identity Credential properties. */
|
|
8427
|
-
properties: ManagedIdentityCredential;
|
|
8428
|
-
}
|
|
8429
|
-
/** Credential resource type. */
|
|
8430
|
-
export interface ServicePrincipalCredentialResource extends CredentialResource {
|
|
8431
|
-
/** Service Principal Credential properties. */
|
|
8432
|
-
properties: ServicePrincipalCredential;
|
|
8433
|
-
}
|
|
8434
8806
|
/** Execute pipeline activity. */
|
|
8435
8807
|
export interface ExecutePipelineActivity extends ControlActivity {
|
|
8436
8808
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -9743,8 +10115,10 @@ export interface WarehouseSource extends TabularSource {
|
|
|
9743
10115
|
export interface SalesforceV2Source extends TabularSource {
|
|
9744
10116
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
9745
10117
|
type: "SalesforceV2Source";
|
|
9746
|
-
/**
|
|
10118
|
+
/** Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string). */
|
|
9747
10119
|
soqlQuery?: any;
|
|
10120
|
+
/** 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). */
|
|
10121
|
+
query?: any;
|
|
9748
10122
|
/** This property control whether query result contains Deleted objects. Default is false. Type: boolean (or Expression with resultType boolean). */
|
|
9749
10123
|
includeDeletedObjects?: any;
|
|
9750
10124
|
}
|
|
@@ -10565,6 +10939,44 @@ export declare enum KnownAzureStorageAuthenticationType {
|
|
|
10565
10939
|
* **Msi**
|
|
10566
10940
|
*/
|
|
10567
10941
|
export type AzureStorageAuthenticationType = string;
|
|
10942
|
+
/** Known values of {@link AzureSqlDWAuthenticationType} that the service accepts. */
|
|
10943
|
+
export declare enum KnownAzureSqlDWAuthenticationType {
|
|
10944
|
+
/** SQL */
|
|
10945
|
+
SQL = "SQL",
|
|
10946
|
+
/** ServicePrincipal */
|
|
10947
|
+
ServicePrincipal = "ServicePrincipal",
|
|
10948
|
+
/** SystemAssignedManagedIdentity */
|
|
10949
|
+
SystemAssignedManagedIdentity = "SystemAssignedManagedIdentity",
|
|
10950
|
+
/** UserAssignedManagedIdentity */
|
|
10951
|
+
UserAssignedManagedIdentity = "UserAssignedManagedIdentity"
|
|
10952
|
+
}
|
|
10953
|
+
/**
|
|
10954
|
+
* Defines values for AzureSqlDWAuthenticationType. \
|
|
10955
|
+
* {@link KnownAzureSqlDWAuthenticationType} can be used interchangeably with AzureSqlDWAuthenticationType,
|
|
10956
|
+
* this enum contains the known values that the service supports.
|
|
10957
|
+
* ### Known values supported by the service
|
|
10958
|
+
* **SQL** \
|
|
10959
|
+
* **ServicePrincipal** \
|
|
10960
|
+
* **SystemAssignedManagedIdentity** \
|
|
10961
|
+
* **UserAssignedManagedIdentity**
|
|
10962
|
+
*/
|
|
10963
|
+
export type AzureSqlDWAuthenticationType = string;
|
|
10964
|
+
/** Known values of {@link SqlServerAuthenticationType} that the service accepts. */
|
|
10965
|
+
export declare enum KnownSqlServerAuthenticationType {
|
|
10966
|
+
/** SQL */
|
|
10967
|
+
SQL = "SQL",
|
|
10968
|
+
/** Windows */
|
|
10969
|
+
Windows = "Windows"
|
|
10970
|
+
}
|
|
10971
|
+
/**
|
|
10972
|
+
* Defines values for SqlServerAuthenticationType. \
|
|
10973
|
+
* {@link KnownSqlServerAuthenticationType} can be used interchangeably with SqlServerAuthenticationType,
|
|
10974
|
+
* this enum contains the known values that the service supports.
|
|
10975
|
+
* ### Known values supported by the service
|
|
10976
|
+
* **SQL** \
|
|
10977
|
+
* **Windows**
|
|
10978
|
+
*/
|
|
10979
|
+
export type SqlServerAuthenticationType = string;
|
|
10568
10980
|
/** Known values of {@link SqlAlwaysEncryptedAkvAuthType} that the service accepts. */
|
|
10569
10981
|
export declare enum KnownSqlAlwaysEncryptedAkvAuthType {
|
|
10570
10982
|
/** ServicePrincipal */
|
|
@@ -10584,6 +10996,66 @@ export declare enum KnownSqlAlwaysEncryptedAkvAuthType {
|
|
|
10584
10996
|
* **UserAssignedManagedIdentity**
|
|
10585
10997
|
*/
|
|
10586
10998
|
export type SqlAlwaysEncryptedAkvAuthType = string;
|
|
10999
|
+
/** Known values of {@link AmazonRdsForSqlAuthenticationType} that the service accepts. */
|
|
11000
|
+
export declare enum KnownAmazonRdsForSqlAuthenticationType {
|
|
11001
|
+
/** SQL */
|
|
11002
|
+
SQL = "SQL",
|
|
11003
|
+
/** Windows */
|
|
11004
|
+
Windows = "Windows"
|
|
11005
|
+
}
|
|
11006
|
+
/**
|
|
11007
|
+
* Defines values for AmazonRdsForSqlAuthenticationType. \
|
|
11008
|
+
* {@link KnownAmazonRdsForSqlAuthenticationType} can be used interchangeably with AmazonRdsForSqlAuthenticationType,
|
|
11009
|
+
* this enum contains the known values that the service supports.
|
|
11010
|
+
* ### Known values supported by the service
|
|
11011
|
+
* **SQL** \
|
|
11012
|
+
* **Windows**
|
|
11013
|
+
*/
|
|
11014
|
+
export type AmazonRdsForSqlAuthenticationType = string;
|
|
11015
|
+
/** Known values of {@link AzureSqlDatabaseAuthenticationType} that the service accepts. */
|
|
11016
|
+
export declare enum KnownAzureSqlDatabaseAuthenticationType {
|
|
11017
|
+
/** SQL */
|
|
11018
|
+
SQL = "SQL",
|
|
11019
|
+
/** ServicePrincipal */
|
|
11020
|
+
ServicePrincipal = "ServicePrincipal",
|
|
11021
|
+
/** SystemAssignedManagedIdentity */
|
|
11022
|
+
SystemAssignedManagedIdentity = "SystemAssignedManagedIdentity",
|
|
11023
|
+
/** UserAssignedManagedIdentity */
|
|
11024
|
+
UserAssignedManagedIdentity = "UserAssignedManagedIdentity"
|
|
11025
|
+
}
|
|
11026
|
+
/**
|
|
11027
|
+
* Defines values for AzureSqlDatabaseAuthenticationType. \
|
|
11028
|
+
* {@link KnownAzureSqlDatabaseAuthenticationType} can be used interchangeably with AzureSqlDatabaseAuthenticationType,
|
|
11029
|
+
* this enum contains the known values that the service supports.
|
|
11030
|
+
* ### Known values supported by the service
|
|
11031
|
+
* **SQL** \
|
|
11032
|
+
* **ServicePrincipal** \
|
|
11033
|
+
* **SystemAssignedManagedIdentity** \
|
|
11034
|
+
* **UserAssignedManagedIdentity**
|
|
11035
|
+
*/
|
|
11036
|
+
export type AzureSqlDatabaseAuthenticationType = string;
|
|
11037
|
+
/** Known values of {@link AzureSqlMIAuthenticationType} that the service accepts. */
|
|
11038
|
+
export declare enum KnownAzureSqlMIAuthenticationType {
|
|
11039
|
+
/** SQL */
|
|
11040
|
+
SQL = "SQL",
|
|
11041
|
+
/** ServicePrincipal */
|
|
11042
|
+
ServicePrincipal = "ServicePrincipal",
|
|
11043
|
+
/** SystemAssignedManagedIdentity */
|
|
11044
|
+
SystemAssignedManagedIdentity = "SystemAssignedManagedIdentity",
|
|
11045
|
+
/** UserAssignedManagedIdentity */
|
|
11046
|
+
UserAssignedManagedIdentity = "UserAssignedManagedIdentity"
|
|
11047
|
+
}
|
|
11048
|
+
/**
|
|
11049
|
+
* Defines values for AzureSqlMIAuthenticationType. \
|
|
11050
|
+
* {@link KnownAzureSqlMIAuthenticationType} can be used interchangeably with AzureSqlMIAuthenticationType,
|
|
11051
|
+
* this enum contains the known values that the service supports.
|
|
11052
|
+
* ### Known values supported by the service
|
|
11053
|
+
* **SQL** \
|
|
11054
|
+
* **ServicePrincipal** \
|
|
11055
|
+
* **SystemAssignedManagedIdentity** \
|
|
11056
|
+
* **UserAssignedManagedIdentity**
|
|
11057
|
+
*/
|
|
11058
|
+
export type AzureSqlMIAuthenticationType = string;
|
|
10587
11059
|
/** Known values of {@link CosmosDbConnectionMode} that the service accepts. */
|
|
10588
11060
|
export declare enum KnownCosmosDbConnectionMode {
|
|
10589
11061
|
/** Gateway */
|
|
@@ -11411,22 +11883,6 @@ export declare enum KnownWebHookActivityMethod {
|
|
|
11411
11883
|
* **POST**
|
|
11412
11884
|
*/
|
|
11413
11885
|
export type WebHookActivityMethod = string;
|
|
11414
|
-
/** Known values of {@link ScriptType} that the service accepts. */
|
|
11415
|
-
export declare enum KnownScriptType {
|
|
11416
|
-
/** Query */
|
|
11417
|
-
Query = "Query",
|
|
11418
|
-
/** NonQuery */
|
|
11419
|
-
NonQuery = "NonQuery"
|
|
11420
|
-
}
|
|
11421
|
-
/**
|
|
11422
|
-
* Defines values for ScriptType. \
|
|
11423
|
-
* {@link KnownScriptType} can be used interchangeably with ScriptType,
|
|
11424
|
-
* this enum contains the known values that the service supports.
|
|
11425
|
-
* ### Known values supported by the service
|
|
11426
|
-
* **Query** \
|
|
11427
|
-
* **NonQuery**
|
|
11428
|
-
*/
|
|
11429
|
-
export type ScriptType = string;
|
|
11430
11886
|
/** Known values of {@link ScriptActivityParameterType} that the service accepts. */
|
|
11431
11887
|
export declare enum KnownScriptActivityParameterType {
|
|
11432
11888
|
/** Boolean */
|
|
@@ -11626,7 +12082,9 @@ export declare enum KnownExpressionV2Type {
|
|
|
11626
12082
|
/** Unary */
|
|
11627
12083
|
Unary = "Unary",
|
|
11628
12084
|
/** Binary */
|
|
11629
|
-
Binary = "Binary"
|
|
12085
|
+
Binary = "Binary",
|
|
12086
|
+
/** NAry */
|
|
12087
|
+
NAry = "NAry"
|
|
11630
12088
|
}
|
|
11631
12089
|
/**
|
|
11632
12090
|
* Defines values for ExpressionV2Type. \
|
|
@@ -11636,7 +12094,8 @@ export declare enum KnownExpressionV2Type {
|
|
|
11636
12094
|
* **Constant** \
|
|
11637
12095
|
* **Field** \
|
|
11638
12096
|
* **Unary** \
|
|
11639
|
-
* **Binary**
|
|
12097
|
+
* **Binary** \
|
|
12098
|
+
* **NAry**
|
|
11640
12099
|
*/
|
|
11641
12100
|
export type ExpressionV2Type = string;
|
|
11642
12101
|
/** Known values of {@link RecurrenceFrequency} that the service accepts. */
|
|
@@ -12012,6 +12471,22 @@ export declare enum KnownSqlDWWriteBehaviorEnum {
|
|
|
12012
12471
|
* **Upsert**
|
|
12013
12472
|
*/
|
|
12014
12473
|
export type SqlDWWriteBehaviorEnum = string;
|
|
12474
|
+
/** Known values of {@link ScriptType} that the service accepts. */
|
|
12475
|
+
export declare enum KnownScriptType {
|
|
12476
|
+
/** Query */
|
|
12477
|
+
Query = "Query",
|
|
12478
|
+
/** NonQuery */
|
|
12479
|
+
NonQuery = "NonQuery"
|
|
12480
|
+
}
|
|
12481
|
+
/**
|
|
12482
|
+
* Defines values for ScriptType. \
|
|
12483
|
+
* {@link KnownScriptType} can be used interchangeably with ScriptType,
|
|
12484
|
+
* this enum contains the known values that the service supports.
|
|
12485
|
+
* ### Known values supported by the service
|
|
12486
|
+
* **Query** \
|
|
12487
|
+
* **NonQuery**
|
|
12488
|
+
*/
|
|
12489
|
+
export type ScriptType = string;
|
|
12015
12490
|
/** Known values of {@link SqlPartitionOption} that the service accepts. */
|
|
12016
12491
|
export declare enum KnownSqlPartitionOption {
|
|
12017
12492
|
/** None */
|