@azure/arm-datafactory 12.0.1-alpha.20240118.1 → 13.0.1-alpha.20240126.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 +44 -1
- package/dist/index.js +354 -26
- 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/changeDataCaptureListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/credentialOperationsListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/dataFlowDebugSessionQueryByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/dataFlowsListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/datasetsListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/factoriesListByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/factoriesListSample.js.map +1 -1
- package/dist-esm/samples-dev/globalParametersListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/integrationRuntimesListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/linkedServicesListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/managedPrivateEndpointsListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/managedVirtualNetworksListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/operationsListSample.js.map +1 -1
- package/dist-esm/samples-dev/pipelinesListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/privateEndPointConnectionsListByFactorySample.js.map +1 -1
- package/dist-esm/samples-dev/triggersListByFactorySample.js.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +193 -41
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +16 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +17 -1
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +329 -25
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/operations/changeDataCapture.js.map +1 -1
- package/dist-esm/src/operations/credentialOperations.js.map +1 -1
- package/dist-esm/src/operations/dataFlowDebugSession.js.map +1 -1
- package/dist-esm/src/operations/dataFlows.js.map +1 -1
- package/dist-esm/src/operations/datasets.js.map +1 -1
- package/dist-esm/src/operations/factories.js.map +1 -1
- package/dist-esm/src/operations/globalParameters.js.map +1 -1
- package/dist-esm/src/operations/integrationRuntimes.js.map +1 -1
- package/dist-esm/src/operations/linkedServices.js.map +1 -1
- package/dist-esm/src/operations/managedPrivateEndpoints.js.map +1 -1
- package/dist-esm/src/operations/managedVirtualNetworks.js.map +1 -1
- package/dist-esm/src/operations/operations.js.map +1 -1
- package/dist-esm/src/operations/pipelines.js.map +1 -1
- package/dist-esm/src/operations/privateEndPointConnections.js.map +1 -1
- package/dist-esm/src/operations/triggers.js.map +1 -1
- package/dist-esm/src/pagingHelper.js.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.js.map +1 -1
- package/package.json +2 -2
- package/review/arm-datafactory.api.md +110 -12
- package/src/dataFactoryManagementClient.ts +1 -1
- package/src/models/index.ts +223 -42
- package/src/models/mappers.ts +391 -24
- package/types/arm-datafactory.d.ts +198 -34
package/src/models/index.ts
CHANGED
|
@@ -141,7 +141,9 @@ export type LinkedServiceUnion =
|
|
|
141
141
|
| SnowflakeLinkedService
|
|
142
142
|
| SharePointOnlineListLinkedService
|
|
143
143
|
| AzureSynapseArtifactsLinkedService
|
|
144
|
-
| LakeHouseLinkedService
|
|
144
|
+
| LakeHouseLinkedService
|
|
145
|
+
| SalesforceV2LinkedService
|
|
146
|
+
| SalesforceServiceCloudV2LinkedService;
|
|
145
147
|
export type DatasetUnion =
|
|
146
148
|
| Dataset
|
|
147
149
|
| AmazonS3Dataset
|
|
@@ -240,7 +242,9 @@ export type DatasetUnion =
|
|
|
240
242
|
| SnowflakeDataset
|
|
241
243
|
| SharePointOnlineListResourceDataset
|
|
242
244
|
| AzureDatabricksDeltaLakeDataset
|
|
243
|
-
| LakeHouseTableDataset
|
|
245
|
+
| LakeHouseTableDataset
|
|
246
|
+
| SalesforceV2ObjectDataset
|
|
247
|
+
| SalesforceServiceCloudV2ObjectDataset;
|
|
244
248
|
export type ActivityUnion =
|
|
245
249
|
| Activity
|
|
246
250
|
| ControlActivityUnion
|
|
@@ -386,7 +390,8 @@ export type CopySourceUnion =
|
|
|
386
390
|
| LakeHouseTableSource
|
|
387
391
|
| SnowflakeSource
|
|
388
392
|
| AzureDatabricksDeltaLakeSource
|
|
389
|
-
| SharePointOnlineListSource
|
|
393
|
+
| SharePointOnlineListSource
|
|
394
|
+
| SalesforceServiceCloudV2Source;
|
|
390
395
|
export type CopySinkUnion =
|
|
391
396
|
| CopySink
|
|
392
397
|
| DelimitedTextSink
|
|
@@ -428,7 +433,9 @@ export type CopySinkUnion =
|
|
|
428
433
|
| MongoDbAtlasSink
|
|
429
434
|
| MongoDbV2Sink
|
|
430
435
|
| CosmosDbMongoDbApiSink
|
|
431
|
-
| LakeHouseTableSink
|
|
436
|
+
| LakeHouseTableSink
|
|
437
|
+
| SalesforceV2Sink
|
|
438
|
+
| SalesforceServiceCloudV2Sink;
|
|
432
439
|
export type ExportSettingsUnion =
|
|
433
440
|
| ExportSettings
|
|
434
441
|
| SnowflakeExportCopyCommand
|
|
@@ -550,7 +557,8 @@ export type TabularSourceUnion =
|
|
|
550
557
|
| DynamicsAXSource
|
|
551
558
|
| OracleServiceCloudSource
|
|
552
559
|
| GoogleAdWordsSource
|
|
553
|
-
| AmazonRedshiftSource
|
|
560
|
+
| AmazonRedshiftSource
|
|
561
|
+
| SalesforceV2Source;
|
|
554
562
|
export type TriggerDependencyReferenceUnion =
|
|
555
563
|
| TriggerDependencyReference
|
|
556
564
|
| TumblingWindowTriggerDependencyReference;
|
|
@@ -1368,7 +1376,9 @@ export interface LinkedService {
|
|
|
1368
1376
|
| "Snowflake"
|
|
1369
1377
|
| "SharePointOnlineList"
|
|
1370
1378
|
| "AzureSynapseArtifacts"
|
|
1371
|
-
| "LakeHouse"
|
|
1379
|
+
| "LakeHouse"
|
|
1380
|
+
| "SalesforceV2"
|
|
1381
|
+
| "SalesforceServiceCloudV2";
|
|
1372
1382
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
1373
1383
|
[property: string]: any;
|
|
1374
1384
|
/** The integration runtime reference. */
|
|
@@ -1507,7 +1517,9 @@ export interface Dataset {
|
|
|
1507
1517
|
| "SnowflakeTable"
|
|
1508
1518
|
| "SharePointOnlineListResource"
|
|
1509
1519
|
| "AzureDatabricksDeltaLakeDataset"
|
|
1510
|
-
| "LakeHouseTable"
|
|
1520
|
+
| "LakeHouseTable"
|
|
1521
|
+
| "SalesforceV2Object"
|
|
1522
|
+
| "SalesforceServiceCloudV2Object";
|
|
1511
1523
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
1512
1524
|
[property: string]: any;
|
|
1513
1525
|
/** Dataset description. */
|
|
@@ -3110,6 +3122,16 @@ export interface StoreWriteSettings {
|
|
|
3110
3122
|
disableMetricsCollection?: any;
|
|
3111
3123
|
/** The type of copy behavior for copy sink. */
|
|
3112
3124
|
copyBehavior?: any;
|
|
3125
|
+
/** Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects). */
|
|
3126
|
+
metadata?: MetadataItem[];
|
|
3127
|
+
}
|
|
3128
|
+
|
|
3129
|
+
/** Specify the name and value of custom metadata item. */
|
|
3130
|
+
export interface MetadataItem {
|
|
3131
|
+
/** Metadata item key name. Type: string (or Expression with resultType string). */
|
|
3132
|
+
name?: any;
|
|
3133
|
+
/** Metadata item value. Type: string (or Expression with resultType string). */
|
|
3134
|
+
value?: any;
|
|
3113
3135
|
}
|
|
3114
3136
|
|
|
3115
3137
|
/** Distcp settings. */
|
|
@@ -3256,7 +3278,9 @@ export interface CopySource {
|
|
|
3256
3278
|
| "LakeHouseTableSource"
|
|
3257
3279
|
| "SnowflakeSource"
|
|
3258
3280
|
| "AzureDatabricksDeltaLakeSource"
|
|
3259
|
-
| "SharePointOnlineListSource"
|
|
3281
|
+
| "SharePointOnlineListSource"
|
|
3282
|
+
| "SalesforceV2Source"
|
|
3283
|
+
| "SalesforceServiceCloudV2Source";
|
|
3260
3284
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
3261
3285
|
[property: string]: any;
|
|
3262
3286
|
/** Source retry count. Type: integer (or Expression with resultType integer). */
|
|
@@ -3312,7 +3336,9 @@ export interface CopySink {
|
|
|
3312
3336
|
| "MongoDbAtlasSink"
|
|
3313
3337
|
| "MongoDbV2Sink"
|
|
3314
3338
|
| "CosmosDbMongoDbApiSink"
|
|
3315
|
-
| "LakeHouseTableSink"
|
|
3339
|
+
| "LakeHouseTableSink"
|
|
3340
|
+
| "SalesforceV2Sink"
|
|
3341
|
+
| "SalesforceServiceCloudV2Sink";
|
|
3316
3342
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
3317
3343
|
[property: string]: any;
|
|
3318
3344
|
/** Write batch size. Type: integer (or Expression with resultType integer), minimum: 0. */
|
|
@@ -3523,14 +3549,6 @@ export interface StoredProcedureParameter {
|
|
|
3523
3549
|
type?: StoredProcedureParameterType;
|
|
3524
3550
|
}
|
|
3525
3551
|
|
|
3526
|
-
/** Specify the name and value of custom metadata item. */
|
|
3527
|
-
export interface MetadataItem {
|
|
3528
|
-
/** Metadata item key name. Type: string (or Expression with resultType string). */
|
|
3529
|
-
name?: any;
|
|
3530
|
-
/** Metadata item value. Type: string (or Expression with resultType string). */
|
|
3531
|
-
value?: any;
|
|
3532
|
-
}
|
|
3533
|
-
|
|
3534
3552
|
/** Sql upsert option settings */
|
|
3535
3553
|
export interface SqlUpsertSettings {
|
|
3536
3554
|
/** Specifies whether to use temp db for upsert interim table. Type: boolean (or Expression with resultType boolean). */
|
|
@@ -4758,8 +4776,22 @@ export interface AzureMySqlLinkedService extends LinkedService {
|
|
|
4758
4776
|
export interface MySqlLinkedService extends LinkedService {
|
|
4759
4777
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
4760
4778
|
type: "MySql";
|
|
4779
|
+
/** The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. */
|
|
4780
|
+
driverVersion?: any;
|
|
4761
4781
|
/** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
4762
|
-
connectionString
|
|
4782
|
+
connectionString?: any;
|
|
4783
|
+
/** Server name for connection. Type: string. */
|
|
4784
|
+
server?: any;
|
|
4785
|
+
/** The port for the connection. Type: integer. */
|
|
4786
|
+
port?: any;
|
|
4787
|
+
/** Username for authentication. Type: string. */
|
|
4788
|
+
username?: any;
|
|
4789
|
+
/** Database name for connection. Type: string. */
|
|
4790
|
+
database?: any;
|
|
4791
|
+
/** SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full. */
|
|
4792
|
+
sslMode?: any;
|
|
4793
|
+
/** Use system trust store for connection. Type: integer. 0: enable, 1: disable. */
|
|
4794
|
+
useSystemTrustStore?: any;
|
|
4763
4795
|
/** The Azure key vault secret reference of password in connection string. */
|
|
4764
4796
|
password?: AzureKeyVaultSecretReference;
|
|
4765
4797
|
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
@@ -4966,7 +4998,7 @@ export interface ODataLinkedService extends LinkedService {
|
|
|
4966
4998
|
userName?: any;
|
|
4967
4999
|
/** Password of the OData service. */
|
|
4968
5000
|
password?: SecretBaseUnion;
|
|
4969
|
-
/** The additional HTTP headers in the request to RESTful API used for authorization. Type:
|
|
5001
|
+
/** The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type). */
|
|
4970
5002
|
authHeaders?: any;
|
|
4971
5003
|
/** Specify the tenant information (domain name or tenant ID) under which your application resides. Type: string (or Expression with resultType string). */
|
|
4972
5004
|
tenant?: any;
|
|
@@ -5502,7 +5534,7 @@ export interface HttpLinkedService extends LinkedService {
|
|
|
5502
5534
|
userName?: any;
|
|
5503
5535
|
/** Password for Basic, Digest, Windows, or ClientCertificate with EmbeddedCertData authentication. */
|
|
5504
5536
|
password?: SecretBaseUnion;
|
|
5505
|
-
/** The additional HTTP headers in the request to RESTful API used for authorization. Type:
|
|
5537
|
+
/** The additional HTTP headers in the request to RESTful API used for authorization. Type: key value pairs (value should be string type). */
|
|
5506
5538
|
authHeaders?: any;
|
|
5507
5539
|
/** Base64 encoded certificate data for ClientCertificate authentication. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string). */
|
|
5508
5540
|
embeddedCertData?: any;
|
|
@@ -5908,10 +5940,20 @@ export interface MagentoLinkedService extends LinkedService {
|
|
|
5908
5940
|
export interface MariaDBLinkedService extends LinkedService {
|
|
5909
5941
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
5910
5942
|
type: "MariaDB";
|
|
5943
|
+
/** The version of the MariaDB driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string. */
|
|
5944
|
+
driverVersion?: any;
|
|
5911
5945
|
/** An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
5912
5946
|
connectionString?: any;
|
|
5947
|
+
/** Server name for connection. Type: string. */
|
|
5948
|
+
server?: any;
|
|
5949
|
+
/** The port for the connection. Type: integer. */
|
|
5950
|
+
port?: any;
|
|
5951
|
+
/** Username for authentication. Type: string. */
|
|
5952
|
+
username?: any;
|
|
5953
|
+
/** Database name for connection. Type: string. */
|
|
5954
|
+
database?: any;
|
|
5913
5955
|
/** The Azure key vault secret reference of password in connection string. */
|
|
5914
|
-
|
|
5956
|
+
password?: AzureKeyVaultSecretReference;
|
|
5915
5957
|
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
5916
5958
|
encryptedCredential?: string;
|
|
5917
5959
|
}
|
|
@@ -6251,7 +6293,7 @@ export interface SalesforceMarketingCloudLinkedService extends LinkedService {
|
|
|
6251
6293
|
export interface HDInsightOnDemandLinkedService extends LinkedService {
|
|
6252
6294
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6253
6295
|
type: "HDInsightOnDemand";
|
|
6254
|
-
/** Number of worker/data nodes in the cluster. Suggestion value: 4. Type:
|
|
6296
|
+
/** Number of worker/data nodes in the cluster. Suggestion value: 4. Type: int (or Expression with resultType int). */
|
|
6255
6297
|
clusterSize: any;
|
|
6256
6298
|
/** The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string). */
|
|
6257
6299
|
timeToLive: any;
|
|
@@ -6561,7 +6603,7 @@ export interface AzureDataExplorerLinkedService extends LinkedService {
|
|
|
6561
6603
|
export interface AzureFunctionLinkedService extends LinkedService {
|
|
6562
6604
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6563
6605
|
type: "AzureFunction";
|
|
6564
|
-
/** The endpoint of the Azure Function App. URL will be in the format https://<accountName>.azurewebsites.net. */
|
|
6606
|
+
/** The endpoint of the Azure Function App. URL will be in the format https://<accountName>.azurewebsites.net. Type: string (or Expression with resultType string). */
|
|
6565
6607
|
functionAppUrl: any;
|
|
6566
6608
|
/** Function or Host key for Azure Function App. */
|
|
6567
6609
|
functionKey?: SecretBaseUnion;
|
|
@@ -6569,7 +6611,7 @@ export interface AzureFunctionLinkedService extends LinkedService {
|
|
|
6569
6611
|
encryptedCredential?: string;
|
|
6570
6612
|
/** The credential reference containing authentication information. */
|
|
6571
6613
|
credential?: CredentialReference;
|
|
6572
|
-
/** Allowed token audiences for azure function. */
|
|
6614
|
+
/** Allowed token audiences for azure function. Type: string (or Expression with resultType string). */
|
|
6573
6615
|
resourceId?: any;
|
|
6574
6616
|
/** Type of authentication (Required to specify MSI) used to connect to AzureFunction. Type: string (or Expression with resultType string). */
|
|
6575
6617
|
authentication?: any;
|
|
@@ -6637,6 +6679,38 @@ export interface LakeHouseLinkedService extends LinkedService {
|
|
|
6637
6679
|
servicePrincipalCredential?: SecretBaseUnion;
|
|
6638
6680
|
}
|
|
6639
6681
|
|
|
6682
|
+
/** Linked service for Salesforce V2. */
|
|
6683
|
+
export interface SalesforceV2LinkedService extends LinkedService {
|
|
6684
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6685
|
+
type: "SalesforceV2";
|
|
6686
|
+
/** The URL of Salesforce instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string). */
|
|
6687
|
+
environmentUrl?: any;
|
|
6688
|
+
/** The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string). */
|
|
6689
|
+
clientId?: any;
|
|
6690
|
+
/** The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. */
|
|
6691
|
+
clientSecret?: SecretBaseUnion;
|
|
6692
|
+
/** The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string). */
|
|
6693
|
+
apiVersion?: any;
|
|
6694
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
6695
|
+
encryptedCredential?: string;
|
|
6696
|
+
}
|
|
6697
|
+
|
|
6698
|
+
/** Linked service for Salesforce Service Cloud V2. */
|
|
6699
|
+
export interface SalesforceServiceCloudV2LinkedService extends LinkedService {
|
|
6700
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
6701
|
+
type: "SalesforceServiceCloudV2";
|
|
6702
|
+
/** The URL of Salesforce Service Cloud instance. For example, 'https://[domain].my.salesforce.com'. Type: string (or Expression with resultType string). */
|
|
6703
|
+
environmentUrl?: any;
|
|
6704
|
+
/** The client Id for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. Type: string (or Expression with resultType string). */
|
|
6705
|
+
clientId?: any;
|
|
6706
|
+
/** The client secret for OAuth 2.0 Client Credentials Flow authentication of the Salesforce instance. */
|
|
6707
|
+
clientSecret?: SecretBaseUnion;
|
|
6708
|
+
/** The Salesforce API version used in ADF. The version must be larger than or equal to 47.0 which is required by Salesforce BULK API 2.0. Type: string (or Expression with resultType string). */
|
|
6709
|
+
apiVersion?: any;
|
|
6710
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
6711
|
+
encryptedCredential?: string;
|
|
6712
|
+
}
|
|
6713
|
+
|
|
6640
6714
|
/** A single Amazon Simple Storage Service (S3) object or a set of S3 objects. */
|
|
6641
6715
|
export interface AmazonS3Dataset extends Dataset {
|
|
6642
6716
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -7634,6 +7708,26 @@ export interface LakeHouseTableDataset extends Dataset {
|
|
|
7634
7708
|
table?: any;
|
|
7635
7709
|
}
|
|
7636
7710
|
|
|
7711
|
+
/** The Salesforce V2 object dataset. */
|
|
7712
|
+
export interface SalesforceV2ObjectDataset extends Dataset {
|
|
7713
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7714
|
+
type: "SalesforceV2Object";
|
|
7715
|
+
/** The Salesforce V2 object API name. Type: string (or Expression with resultType string). */
|
|
7716
|
+
objectApiName?: any;
|
|
7717
|
+
/** The Salesforce V2 report Id. Type: string (or Expression with resultType string). */
|
|
7718
|
+
reportId?: any;
|
|
7719
|
+
}
|
|
7720
|
+
|
|
7721
|
+
/** The Salesforce Service Cloud V2 object dataset. */
|
|
7722
|
+
export interface SalesforceServiceCloudV2ObjectDataset extends Dataset {
|
|
7723
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7724
|
+
type: "SalesforceServiceCloudV2Object";
|
|
7725
|
+
/** The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string). */
|
|
7726
|
+
objectApiName?: any;
|
|
7727
|
+
/** The Salesforce Service Cloud V2 reportId. Type: string (or Expression with resultType string). */
|
|
7728
|
+
reportId?: any;
|
|
7729
|
+
}
|
|
7730
|
+
|
|
7637
7731
|
/** Base class for all control activities like IfCondition, ForEach , Until. */
|
|
7638
7732
|
export interface ControlActivity extends Activity {
|
|
7639
7733
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -8072,9 +8166,9 @@ export interface ParquetFormat extends DatasetStorageFormat {
|
|
|
8072
8166
|
export interface CmdkeySetup extends CustomSetupBase {
|
|
8073
8167
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
8074
8168
|
type: "CmdkeySetup";
|
|
8075
|
-
/** The server name of data source access. */
|
|
8169
|
+
/** The server name of data source access. Type: string. */
|
|
8076
8170
|
targetName: any;
|
|
8077
|
-
/** The user name of data source access. */
|
|
8171
|
+
/** The user name of data source access. Type: string. */
|
|
8078
8172
|
userName: any;
|
|
8079
8173
|
/** The password of data source access. */
|
|
8080
8174
|
password: SecretBaseUnion;
|
|
@@ -8839,7 +8933,8 @@ export interface TabularSource extends CopySource {
|
|
|
8839
8933
|
| "DynamicsAXSource"
|
|
8840
8934
|
| "OracleServiceCloudSource"
|
|
8841
8935
|
| "GoogleAdWordsSource"
|
|
8842
|
-
| "AmazonRedshiftSource"
|
|
8936
|
+
| "AmazonRedshiftSource"
|
|
8937
|
+
| "SalesforceV2Source";
|
|
8843
8938
|
/** Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
|
|
8844
8939
|
queryTimeout?: any;
|
|
8845
8940
|
/** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
|
|
@@ -8978,7 +9073,7 @@ export interface RestSource extends CopySource {
|
|
|
8978
9073
|
httpRequestTimeout?: any;
|
|
8979
9074
|
/** The time to await before sending next page request. */
|
|
8980
9075
|
requestInterval?: any;
|
|
8981
|
-
/** Specifies the additional columns to be added to source data. Type:
|
|
9076
|
+
/** Specifies the additional columns to be added to source data. Type: key value pairs (value should be string type). */
|
|
8982
9077
|
additionalColumns?: any;
|
|
8983
9078
|
}
|
|
8984
9079
|
|
|
@@ -9202,6 +9297,18 @@ export interface SharePointOnlineListSource extends CopySource {
|
|
|
9202
9297
|
httpRequestTimeout?: any;
|
|
9203
9298
|
}
|
|
9204
9299
|
|
|
9300
|
+
/** A copy activity Salesforce Service Cloud V2 source. */
|
|
9301
|
+
export interface SalesforceServiceCloudV2Source extends CopySource {
|
|
9302
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
9303
|
+
type: "SalesforceServiceCloudV2Source";
|
|
9304
|
+
/** Database query. Type: string (or Expression with resultType string). */
|
|
9305
|
+
soqlQuery?: any;
|
|
9306
|
+
/** The read behavior for the operation. Default is query. Allowed values: query/queryAll. Type: string (or Expression with resultType string). */
|
|
9307
|
+
readBehavior?: any;
|
|
9308
|
+
/** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
|
|
9309
|
+
additionalColumns?: any;
|
|
9310
|
+
}
|
|
9311
|
+
|
|
9205
9312
|
/** A copy activity DelimitedText sink. */
|
|
9206
9313
|
export interface DelimitedTextSink extends CopySink {
|
|
9207
9314
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -9238,13 +9345,13 @@ export interface RestSink extends CopySink {
|
|
|
9238
9345
|
type: "RestSink";
|
|
9239
9346
|
/** The HTTP method used to call the RESTful API. The default is POST. Type: string (or Expression with resultType string). */
|
|
9240
9347
|
requestMethod?: any;
|
|
9241
|
-
/** The additional HTTP headers in the request to the RESTful API. Type:
|
|
9348
|
+
/** The additional HTTP headers in the request to the RESTful API. Type: key value pairs (value should be string type). */
|
|
9242
9349
|
additionalHeaders?: any;
|
|
9243
9350
|
/** The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:01:40. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
|
|
9244
9351
|
httpRequestTimeout?: any;
|
|
9245
9352
|
/** The time to await before sending next request, in milliseconds */
|
|
9246
9353
|
requestInterval?: any;
|
|
9247
|
-
/** Http Compression Type to Send data in compressed format with Optimal Compression Level, Default is None. And The Only Supported option is Gzip. */
|
|
9354
|
+
/** Http Compression Type to Send data in compressed format with Optimal Compression Level, Default is None. And The Only Supported option is Gzip. Type: string (or Expression with resultType string). */
|
|
9248
9355
|
httpCompressionType?: any;
|
|
9249
9356
|
}
|
|
9250
9357
|
|
|
@@ -9392,7 +9499,7 @@ export interface SqlSink extends CopySink {
|
|
|
9392
9499
|
tableOption?: any;
|
|
9393
9500
|
/** Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean). */
|
|
9394
9501
|
sqlWriterUseTableLock?: any;
|
|
9395
|
-
/** Write behavior when copying data into sql. Type:
|
|
9502
|
+
/** Write behavior when copying data into sql. Type: string (or Expression with resultType string). */
|
|
9396
9503
|
writeBehavior?: any;
|
|
9397
9504
|
/** SQL upsert settings. */
|
|
9398
9505
|
upsertSettings?: SqlUpsertSettings;
|
|
@@ -9416,7 +9523,7 @@ export interface SqlServerSink extends CopySink {
|
|
|
9416
9523
|
tableOption?: any;
|
|
9417
9524
|
/** Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean). */
|
|
9418
9525
|
sqlWriterUseTableLock?: any;
|
|
9419
|
-
/** Write behavior when copying data into sql server. Type:
|
|
9526
|
+
/** Write behavior when copying data into sql server. Type: string (or Expression with resultType string). */
|
|
9420
9527
|
writeBehavior?: any;
|
|
9421
9528
|
/** SQL upsert settings. */
|
|
9422
9529
|
upsertSettings?: SqlUpsertSettings;
|
|
@@ -9464,7 +9571,7 @@ export interface SqlMISink extends CopySink {
|
|
|
9464
9571
|
tableOption?: any;
|
|
9465
9572
|
/** Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean). */
|
|
9466
9573
|
sqlWriterUseTableLock?: any;
|
|
9467
|
-
/** White behavior when copying data into azure SQL MI. Type:
|
|
9574
|
+
/** White behavior when copying data into azure SQL MI. Type: string (or Expression with resultType string) */
|
|
9468
9575
|
writeBehavior?: any;
|
|
9469
9576
|
/** SQL upsert settings. */
|
|
9470
9577
|
upsertSettings?: SqlUpsertSettings;
|
|
@@ -9672,6 +9779,30 @@ export interface LakeHouseTableSink extends CopySink {
|
|
|
9672
9779
|
partitionNameList?: any;
|
|
9673
9780
|
}
|
|
9674
9781
|
|
|
9782
|
+
/** A copy activity Salesforce V2 sink. */
|
|
9783
|
+
export interface SalesforceV2Sink extends CopySink {
|
|
9784
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
9785
|
+
type: "SalesforceV2Sink";
|
|
9786
|
+
/** The write behavior for the operation. Default is Insert. */
|
|
9787
|
+
writeBehavior?: SalesforceV2SinkWriteBehavior;
|
|
9788
|
+
/** The name of the external ID field for upsert operation. Default value is 'Id' column. Type: string (or Expression with resultType string). */
|
|
9789
|
+
externalIdFieldName?: any;
|
|
9790
|
+
/** The flag indicating whether or not to ignore null values from input dataset (except key fields) during write operation. Default value is false. If set it to true, it means ADF will leave the data in the destination object unchanged when doing upsert/update operation and insert defined default value when doing insert operation, versus ADF will update the data in the destination object to NULL when doing upsert/update operation and insert NULL value when doing insert operation. Type: boolean (or Expression with resultType boolean). */
|
|
9791
|
+
ignoreNullValues?: any;
|
|
9792
|
+
}
|
|
9793
|
+
|
|
9794
|
+
/** A copy activity Salesforce Service Cloud V2 sink. */
|
|
9795
|
+
export interface SalesforceServiceCloudV2Sink extends CopySink {
|
|
9796
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
9797
|
+
type: "SalesforceServiceCloudV2Sink";
|
|
9798
|
+
/** The write behavior for the operation. Default is Insert. */
|
|
9799
|
+
writeBehavior?: SalesforceV2SinkWriteBehavior;
|
|
9800
|
+
/** The name of the external ID field for upsert operation. Default value is 'Id' column. Type: string (or Expression with resultType string). */
|
|
9801
|
+
externalIdFieldName?: any;
|
|
9802
|
+
/** The flag indicating whether or not to ignore null values from input dataset (except key fields) during write operation. Default value is false. If set it to true, it means ADF will leave the data in the destination object unchanged when doing upsert/update operation and insert defined default value when doing insert operation, versus ADF will update the data in the destination object to NULL when doing upsert/update operation and insert NULL value when doing insert operation. Type: boolean (or Expression with resultType boolean). */
|
|
9803
|
+
ignoreNullValues?: any;
|
|
9804
|
+
}
|
|
9805
|
+
|
|
9675
9806
|
/** Snowflake export command settings. */
|
|
9676
9807
|
export interface SnowflakeExportCopyCommand extends ExportSettings {
|
|
9677
9808
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -9906,7 +10037,7 @@ export interface WebHookActivity extends ControlActivity {
|
|
|
9906
10037
|
url: any;
|
|
9907
10038
|
/** The timeout within which the webhook should be called back. If there is no value specified, it defaults to 10 minutes. Type: string. Pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
|
|
9908
10039
|
timeout?: string;
|
|
9909
|
-
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type:
|
|
10040
|
+
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: dictionary (or Expression with resultType dictionary). */
|
|
9910
10041
|
headers?: any;
|
|
9911
10042
|
/** Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string). */
|
|
9912
10043
|
body?: any;
|
|
@@ -10182,7 +10313,7 @@ export interface WebActivity extends ExecutionActivity {
|
|
|
10182
10313
|
method: WebActivityMethod;
|
|
10183
10314
|
/** Web activity target endpoint and path. Type: string (or Expression with resultType string). */
|
|
10184
10315
|
url: any;
|
|
10185
|
-
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type:
|
|
10316
|
+
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: dictionary (or Expression with resultType dictionary). */
|
|
10186
10317
|
headers?: any;
|
|
10187
10318
|
/** Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string). */
|
|
10188
10319
|
body?: any;
|
|
@@ -10190,6 +10321,10 @@ export interface WebActivity extends ExecutionActivity {
|
|
|
10190
10321
|
authentication?: WebActivityAuthentication;
|
|
10191
10322
|
/** When set to true, Certificate validation will be disabled. */
|
|
10192
10323
|
disableCertValidation?: boolean;
|
|
10324
|
+
/** Timeout for the HTTP request to get a response. Format is in TimeSpan (hh:mm:ss). This value is the timeout to get a response, not the activity timeout. The default value is 00:01:00 (1 minute). The range is from 1 to 10 minutes */
|
|
10325
|
+
httpRequestTimeout?: any;
|
|
10326
|
+
/** Option to disable invoking HTTP GET on location given in response header of a HTTP 202 Response. If set true, it stops invoking HTTP GET on http location given in response header. If set false then continues to invoke HTTP GET call on location given in http response headers. */
|
|
10327
|
+
turnOffAsync?: boolean;
|
|
10193
10328
|
/** List of datasets passed to web endpoint. */
|
|
10194
10329
|
datasets?: DatasetReference[];
|
|
10195
10330
|
/** List of linked services passed to web endpoint. */
|
|
@@ -10250,7 +10385,7 @@ export interface AzureMLExecutePipelineActivity extends ExecutionActivity {
|
|
|
10250
10385
|
experimentName?: any;
|
|
10251
10386
|
/** Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object). */
|
|
10252
10387
|
mlPipelineParameters?: any;
|
|
10253
|
-
/** Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object
|
|
10388
|
+
/** Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object). */
|
|
10254
10389
|
dataPathAssignments?: any;
|
|
10255
10390
|
/** The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string). */
|
|
10256
10391
|
mlParentRunId?: any;
|
|
@@ -10322,7 +10457,7 @@ export interface AzureFunctionActivity extends ExecutionActivity {
|
|
|
10322
10457
|
method: AzureFunctionActivityMethod;
|
|
10323
10458
|
/** Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string) */
|
|
10324
10459
|
functionName: any;
|
|
10325
|
-
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type:
|
|
10460
|
+
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: dictionary (or Expression with resultType dictionary). */
|
|
10326
10461
|
headers?: any;
|
|
10327
10462
|
/** Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string). */
|
|
10328
10463
|
body?: any;
|
|
@@ -10662,7 +10797,7 @@ export interface SqlSource extends TabularSource {
|
|
|
10662
10797
|
storedProcedureParameters?: any;
|
|
10663
10798
|
/** Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string). */
|
|
10664
10799
|
isolationLevel?: any;
|
|
10665
|
-
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
10800
|
+
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string). */
|
|
10666
10801
|
partitionOption?: any;
|
|
10667
10802
|
/** The settings that will be leveraged for Sql source partitioning. */
|
|
10668
10803
|
partitionSettings?: SqlPartitionSettings;
|
|
@@ -10682,7 +10817,7 @@ export interface SqlServerSource extends TabularSource {
|
|
|
10682
10817
|
isolationLevel?: any;
|
|
10683
10818
|
/** Which additional types to produce. */
|
|
10684
10819
|
produceAdditionalTypes?: any;
|
|
10685
|
-
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
10820
|
+
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string). */
|
|
10686
10821
|
partitionOption?: any;
|
|
10687
10822
|
/** The settings that will be leveraged for Sql source partitioning. */
|
|
10688
10823
|
partitionSettings?: SqlPartitionSettings;
|
|
@@ -10722,7 +10857,7 @@ export interface AzureSqlSource extends TabularSource {
|
|
|
10722
10857
|
isolationLevel?: any;
|
|
10723
10858
|
/** Which additional types to produce. */
|
|
10724
10859
|
produceAdditionalTypes?: any;
|
|
10725
|
-
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
10860
|
+
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string). */
|
|
10726
10861
|
partitionOption?: any;
|
|
10727
10862
|
/** The settings that will be leveraged for Sql source partitioning. */
|
|
10728
10863
|
partitionSettings?: SqlPartitionSettings;
|
|
@@ -10742,7 +10877,7 @@ export interface SqlMISource extends TabularSource {
|
|
|
10742
10877
|
isolationLevel?: any;
|
|
10743
10878
|
/** Which additional types to produce. */
|
|
10744
10879
|
produceAdditionalTypes?: any;
|
|
10745
|
-
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
10880
|
+
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string). */
|
|
10746
10881
|
partitionOption?: any;
|
|
10747
10882
|
/** The settings that will be leveraged for Sql source partitioning. */
|
|
10748
10883
|
partitionSettings?: SqlPartitionSettings;
|
|
@@ -10760,7 +10895,7 @@ export interface SqlDWSource extends TabularSource {
|
|
|
10760
10895
|
storedProcedureParameters?: any;
|
|
10761
10896
|
/** Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string). */
|
|
10762
10897
|
isolationLevel?: any;
|
|
10763
|
-
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
10898
|
+
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string). */
|
|
10764
10899
|
partitionOption?: any;
|
|
10765
10900
|
/** The settings that will be leveraged for Sql source partitioning. */
|
|
10766
10901
|
partitionSettings?: SqlPartitionSettings;
|
|
@@ -11084,6 +11219,16 @@ export interface AmazonRedshiftSource extends TabularSource {
|
|
|
11084
11219
|
redshiftUnloadSettings?: RedshiftUnloadSettings;
|
|
11085
11220
|
}
|
|
11086
11221
|
|
|
11222
|
+
/** A copy activity Salesforce V2 source. */
|
|
11223
|
+
export interface SalesforceV2Source extends TabularSource {
|
|
11224
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
11225
|
+
type: "SalesforceV2Source";
|
|
11226
|
+
/** Database query. Type: string (or Expression with resultType string). */
|
|
11227
|
+
soqlQuery?: any;
|
|
11228
|
+
/** The read behavior for the operation. Default is query. Allowed values: query/queryAll. Type: string (or Expression with resultType string). */
|
|
11229
|
+
readBehavior?: any;
|
|
11230
|
+
}
|
|
11231
|
+
|
|
11087
11232
|
/** Referenced tumbling window trigger dependency. */
|
|
11088
11233
|
export interface TumblingWindowTriggerDependencyReference
|
|
11089
11234
|
extends TriggerDependencyReference {
|
|
@@ -13063,6 +13208,24 @@ export enum KnownSparkJobReferenceType {
|
|
|
13063
13208
|
*/
|
|
13064
13209
|
export type SparkJobReferenceType = string;
|
|
13065
13210
|
|
|
13211
|
+
/** Known values of {@link SalesforceV2SinkWriteBehavior} that the service accepts. */
|
|
13212
|
+
export enum KnownSalesforceV2SinkWriteBehavior {
|
|
13213
|
+
/** Insert */
|
|
13214
|
+
Insert = "Insert",
|
|
13215
|
+
/** Upsert */
|
|
13216
|
+
Upsert = "Upsert"
|
|
13217
|
+
}
|
|
13218
|
+
|
|
13219
|
+
/**
|
|
13220
|
+
* Defines values for SalesforceV2SinkWriteBehavior. \
|
|
13221
|
+
* {@link KnownSalesforceV2SinkWriteBehavior} can be used interchangeably with SalesforceV2SinkWriteBehavior,
|
|
13222
|
+
* this enum contains the known values that the service supports.
|
|
13223
|
+
* ### Known values supported by the service
|
|
13224
|
+
* **Insert** \
|
|
13225
|
+
* **Upsert**
|
|
13226
|
+
*/
|
|
13227
|
+
export type SalesforceV2SinkWriteBehavior = string;
|
|
13228
|
+
|
|
13066
13229
|
/** Known values of {@link RecurrenceFrequency} that the service accepts. */
|
|
13067
13230
|
export enum KnownRecurrenceFrequency {
|
|
13068
13231
|
/** NotSpecified */
|
|
@@ -13608,6 +13771,24 @@ export enum KnownNetezzaPartitionOption {
|
|
|
13608
13771
|
* **DynamicRange**
|
|
13609
13772
|
*/
|
|
13610
13773
|
export type NetezzaPartitionOption = string;
|
|
13774
|
+
|
|
13775
|
+
/** Known values of {@link SalesforceV2SourceReadBehavior} that the service accepts. */
|
|
13776
|
+
export enum KnownSalesforceV2SourceReadBehavior {
|
|
13777
|
+
/** Query */
|
|
13778
|
+
Query = "query",
|
|
13779
|
+
/** QueryAll */
|
|
13780
|
+
QueryAll = "queryAll"
|
|
13781
|
+
}
|
|
13782
|
+
|
|
13783
|
+
/**
|
|
13784
|
+
* Defines values for SalesforceV2SourceReadBehavior. \
|
|
13785
|
+
* {@link KnownSalesforceV2SourceReadBehavior} can be used interchangeably with SalesforceV2SourceReadBehavior,
|
|
13786
|
+
* this enum contains the known values that the service supports.
|
|
13787
|
+
* ### Known values supported by the service
|
|
13788
|
+
* **query** \
|
|
13789
|
+
* **queryAll**
|
|
13790
|
+
*/
|
|
13791
|
+
export type SalesforceV2SourceReadBehavior = string;
|
|
13611
13792
|
/** Defines values for DaysOfWeek. */
|
|
13612
13793
|
export type DaysOfWeek =
|
|
13613
13794
|
| "Sunday"
|