@@ -1217,6 +1217,15 @@ export interface AzureStorageLinkedService extends LinkedService {
12171217 type: "AzureStorage";
12181218}
12191219
1220+ // @public
1221+ export interface AzureStorageLinkedServiceTypeProperties {
1222+ accountKey?: AzureKeyVaultSecretReference;
1223+ connectionString?: any;
1224+ encryptedCredential?: string;
1225+ sasToken?: AzureKeyVaultSecretReference;
1226+ sasUri?: any;
1227+ }
1228+
12201229// @public
12211230export interface AzureSynapseArtifactsLinkedService extends LinkedService {
12221231 authentication?: any;
@@ -1251,12 +1260,20 @@ export interface AzureTableSource extends TabularSource {
12511260export interface AzureTableStorageLinkedService extends LinkedService {
12521261 accountKey?: AzureKeyVaultSecretReference;
12531262 connectionString?: any;
1263+ credential?: CredentialReference;
12541264 encryptedCredential?: string;
12551265 sasToken?: AzureKeyVaultSecretReference;
12561266 sasUri?: any;
1267+ serviceEndpoint?: any;
12571268 type: "AzureTableStorage";
12581269}
12591270
1271+ // @public
1272+ export interface AzureTableStorageLinkedServiceTypeProperties extends AzureStorageLinkedServiceTypeProperties {
1273+ credential?: CredentialReference;
1274+ serviceEndpoint?: any;
1275+ }
1276+
12601277// @public
12611278export interface BigDataPoolParametrizationReference {
12621279 referenceName: any;
@@ -1483,6 +1500,7 @@ export interface CommonDataServiceForAppsEntityDataset extends Dataset {
14831500export interface CommonDataServiceForAppsLinkedService extends LinkedService {
14841501 authenticationType: any;
14851502 deploymentType: any;
1503+ domain?: any;
14861504 encryptedCredential?: string;
14871505 hostName?: any;
14881506 organizationName?: any;
@@ -1568,6 +1586,13 @@ export interface ConnectionStateProperties {
15681586// @public
15691587export type ConnectionType = string;
15701588
1589+ // @public
1590+ export interface ContinuationSettingsReference {
1591+ continuationTtlInMinutes?: any;
1592+ customizedCheckpointKey?: any;
1593+ idleCondition?: any;
1594+ }
1595+
15711596// @public
15721597export interface ControlActivity extends Activity {
15731598 type: "Container" | "ExecutePipeline" | "IfCondition" | "Switch" | "ForEach" | "Wait" | "Fail" | "Until" | "Validation" | "Filter" | "SetVariable" | "AppendVariable" | "WebHook";
@@ -2606,6 +2631,7 @@ export interface DynamicsCrmLinkedService extends LinkedService {
26062631 authenticationType: any;
26072632 credential?: CredentialReference;
26082633 deploymentType: any;
2634+ domain?: any;
26092635 encryptedCredential?: string;
26102636 hostName?: any;
26112637 organizationName?: any;
@@ -2648,6 +2674,7 @@ export interface DynamicsLinkedService extends LinkedService {
26482674 authenticationType: any;
26492675 credential?: CredentialReference;
26502676 deploymentType: any;
2677+ domain?: any;
26512678 encryptedCredential?: string;
26522679 hostName?: any;
26532680 organizationName?: any;
@@ -2749,6 +2776,7 @@ export interface ExcelSource extends CopySource {
27492776// @public
27502777export interface ExecuteDataFlowActivity extends ExecutionActivity {
27512778 compute?: ExecuteDataFlowActivityTypePropertiesCompute;
2779+ continuationSettings?: ContinuationSettingsReference;
27522780 continueOnError?: any;
27532781 dataFlow: DataFlowReference;
27542782 integrationRuntime?: IntegrationRuntimeReference;
@@ -2762,6 +2790,7 @@ export interface ExecuteDataFlowActivity extends ExecutionActivity {
27622790// @public
27632791export interface ExecuteDataFlowActivityTypeProperties {
27642792 compute?: ExecuteDataFlowActivityTypePropertiesCompute;
2793+ continuationSettings?: ContinuationSettingsReference;
27652794 continueOnError?: any;
27662795 dataFlow: DataFlowReference;
27672796 integrationRuntime?: IntegrationRuntimeReference;
@@ -2836,6 +2865,7 @@ export interface ExecuteSsisPackageActivity extends ExecutionActivity {
28362865// @public
28372866export interface ExecuteWranglingDataflowActivity extends Activity {
28382867 compute?: ExecuteDataFlowActivityTypePropertiesCompute;
2868+ continuationSettings?: ContinuationSettingsReference;
28392869 continueOnError?: any;
28402870 dataFlow: DataFlowReference;
28412871 integrationRuntime?: IntegrationRuntimeReference;
@@ -4622,6 +4652,7 @@ export enum KnownDependencyCondition {
46224652// @public
46234653export enum KnownDynamicsAuthenticationType {
46244654 AADServicePrincipal = "AADServicePrincipal",
4655+ ActiveDirectory = "Active Directory",
46254656 Ifd = "Ifd",
46264657 Office365 = "Office365"
46274658}
@@ -5200,6 +5231,7 @@ export enum KnownSqlPartitionOption {
52005231// @public
52015232export enum KnownSqlServerAuthenticationType {
52025233 SQL = "SQL",
5234+ UserAssignedManagedIdentity = "UserAssignedManagedIdentity",
52035235 Windows = "Windows"
52045236}
52055237
@@ -7952,6 +7984,7 @@ export interface SnowflakeExportCopyCommand extends ExportSettings {
79527984 additionalFormatOptions?: {
79537985 [propertyName: string]: any;
79547986 };
7987+ storageIntegration?: any;
79557988 type: "SnowflakeExportCopyCommand";
79567989}
79577990
@@ -7963,6 +7996,7 @@ export interface SnowflakeImportCopyCommand extends ImportSettings {
79637996 additionalFormatOptions?: {
79647997 [propertyName: string]: any;
79657998 };
7999+ storageIntegration?: any;
79668000 type: "SnowflakeImportCopyCommand";
79678001}
79688002
@@ -8198,6 +8232,7 @@ export interface SqlServerLinkedService extends LinkedService {
81988232 connectRetryCount?: any;
81998233 connectRetryInterval?: any;
82008234 connectTimeout?: any;
8235+ credential?: CredentialReference;
82018236 database?: any;
82028237 encrypt?: any;
82038238 encryptedCredential?: string;
@@ -8223,6 +8258,7 @@ export interface SqlServerLinkedServiceTypeProperties extends SqlServerBaseLinke
82238258 alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
82248259 authenticationType?: SqlServerAuthenticationType;
82258260 connectionString?: any;
8261+ credential?: CredentialReference;
82268262 encryptedCredential?: string;
82278263 password?: SecretBaseUnion;
82288264 userName?: any;
@@ -9063,9 +9099,13 @@ export type VariableType = string;
90639099// @public
90649100export interface VerticaLinkedService extends LinkedService {
90659101 connectionString?: any;
9102+ database?: any;
90669103 encryptedCredential?: string;
9104+ port?: any;
90679105 pwd?: AzureKeyVaultSecretReference;
9106+ server?: any;
90689107 type: "Vertica";
9108+ uid?: any;
90699109}
90709110
90719111// @public
0 commit comments