@@ -558,11 +558,16 @@ export interface AzureDatabricksDeltaLakeSource extends CopySource {
558
558
export interface AzureDatabricksLinkedService extends LinkedService {
559
559
accessToken?: SecretBaseUnion;
560
560
authentication?: any;
561
+ clusterOption?: any;
561
562
credential?: CredentialReference;
563
+ dataSecurityMode?: any;
562
564
domain: any;
563
565
encryptedCredential?: string;
564
566
existingClusterId?: any;
565
567
instancePoolId?: any;
568
+ newClusterAttributes?: {
569
+ [propertyName: string]: any;
570
+ };
566
571
newClusterCustomTags?: {
567
572
[propertyName: string]: any;
568
573
};
@@ -747,7 +752,7 @@ export interface AzureFunctionActivity extends ExecutionActivity {
747
752
body?: any;
748
753
functionName: any;
749
754
headers?: {
750
- [propertyName: string]: string ;
755
+ [propertyName: string]: any ;
751
756
};
752
757
method: AzureFunctionActivityMethod;
753
758
type: "AzureFunctionActivity";
@@ -1621,15 +1626,15 @@ export { Credential_2 as Credential }
1621
1626
// @public
1622
1627
export interface CredentialListResponse {
1623
1628
nextLink?: string;
1624
- value: ManagedIdentityCredentialResource [];
1629
+ value: CredentialResource [];
1625
1630
}
1626
1631
1627
1632
// @public
1628
1633
export interface CredentialOperations {
1629
- createOrUpdate(resourceGroupName: string, factoryName: string, credentialName: string, credential: ManagedIdentityCredentialResource , options?: CredentialOperationsCreateOrUpdateOptionalParams): Promise<CredentialOperationsCreateOrUpdateResponse>;
1634
+ createOrUpdate(resourceGroupName: string, factoryName: string, credentialName: string, credential: CredentialResource , options?: CredentialOperationsCreateOrUpdateOptionalParams): Promise<CredentialOperationsCreateOrUpdateResponse>;
1630
1635
delete(resourceGroupName: string, factoryName: string, credentialName: string, options?: CredentialOperationsDeleteOptionalParams): Promise<void>;
1631
1636
get(resourceGroupName: string, factoryName: string, credentialName: string, options?: CredentialOperationsGetOptionalParams): Promise<CredentialOperationsGetResponse>;
1632
- listByFactory(resourceGroupName: string, factoryName: string, options?: CredentialOperationsListByFactoryOptionalParams): PagedAsyncIterableIterator<ManagedIdentityCredentialResource >;
1637
+ listByFactory(resourceGroupName: string, factoryName: string, options?: CredentialOperationsListByFactoryOptionalParams): PagedAsyncIterableIterator<CredentialResource >;
1633
1638
}
1634
1639
1635
1640
// @public
@@ -1638,7 +1643,7 @@ export interface CredentialOperationsCreateOrUpdateOptionalParams extends coreCl
1638
1643
}
1639
1644
1640
1645
// @public
1641
- export type CredentialOperationsCreateOrUpdateResponse = ManagedIdentityCredentialResource ;
1646
+ export type CredentialOperationsCreateOrUpdateResponse = CredentialResource ;
1642
1647
1643
1648
// @public
1644
1649
export interface CredentialOperationsDeleteOptionalParams extends coreClient.OperationOptions {
@@ -1650,7 +1655,7 @@ export interface CredentialOperationsGetOptionalParams extends coreClient.Operat
1650
1655
}
1651
1656
1652
1657
// @public
1653
- export type CredentialOperationsGetResponse = ManagedIdentityCredentialResource ;
1658
+ export type CredentialOperationsGetResponse = CredentialResource ;
1654
1659
1655
1660
// @public
1656
1661
export interface CredentialOperationsListByFactoryNextOptionalParams extends coreClient.OperationOptions {
@@ -5363,12 +5368,11 @@ export interface MagentoSource extends TabularSource {
5363
5368
5364
5369
// @public
5365
5370
export interface ManagedIdentityCredential extends Credential_2 {
5366
- resourceId?: string;
5367
5371
type: "ManagedIdentity";
5368
5372
}
5369
5373
5370
5374
// @public
5371
- export interface ManagedIdentityCredentialResource extends SubResource {
5375
+ export interface ManagedIdentityCredentialResource extends CredentialResource {
5372
5376
properties: ManagedIdentityCredential;
5373
5377
}
5374
5378
@@ -7456,7 +7460,7 @@ export type ScriptActivityParameterType = string;
7456
7460
export interface ScriptActivityScriptBlock {
7457
7461
parameters?: ScriptActivityParameter[];
7458
7462
text: any;
7459
- type: ScriptType ;
7463
+ type: any ;
7460
7464
}
7461
7465
7462
7466
// @public
@@ -7620,6 +7624,11 @@ export interface ServicePrincipalCredential extends Credential_2 {
7620
7624
type: "ServicePrincipal";
7621
7625
}
7622
7626
7627
+ // @public
7628
+ export interface ServicePrincipalCredentialResource extends CredentialResource {
7629
+ properties: ServicePrincipalCredential;
7630
+ }
7631
+
7623
7632
// @public
7624
7633
export type ServicePrincipalCredentialType = string;
7625
7634
@@ -8885,7 +8894,7 @@ export interface WebActivity extends ExecutionActivity {
8885
8894
datasets?: DatasetReference[];
8886
8895
disableCertValidation?: boolean;
8887
8896
headers?: {
8888
- [propertyName: string]: string ;
8897
+ [propertyName: string]: any ;
8889
8898
};
8890
8899
httpRequestTimeout?: any;
8891
8900
linkedServices?: LinkedServiceReference[];
@@ -8936,7 +8945,7 @@ export interface WebHookActivity extends ControlActivity {
8936
8945
authentication?: WebActivityAuthentication;
8937
8946
body?: any;
8938
8947
headers?: {
8939
- [propertyName: string]: string ;
8948
+ [propertyName: string]: any ;
8940
8949
};
8941
8950
method: WebHookActivityMethod;
8942
8951
policy?: SecureInputOutputPolicy;
0 commit comments