Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ class AzureDatabricksLinkedService extends models['LinkedService'] {
* user-specified Spark environment variables key-value pairs.
* @property {object} [newClusterCustomTags] Additional tags for cluster
* resources.
* @property {object} [newClusterDriverNodeType] The driver node type for the
* new cluster. Type: string (or Expression with resultType string).
* @property {object} [newClusterInitScripts] User-defined initialization
* scripts for the new cluster. Type: array of strings (or Expression with
* resultType array of strings).
* @property {object} [newClusterEnableElasticDisk] Enable the elastic disk
* on the new cluster. Type: boolean (or Expression with resultType boolean).
* @property {object} [encryptedCredential] The encrypted credential used for
* authentication. Credentials are encrypted using the integration runtime
* credential manager. Type: string (or Expression with resultType string).
Expand Down Expand Up @@ -213,6 +220,27 @@ class AzureDatabricksLinkedService extends models['LinkedService'] {
}
}
},
newClusterDriverNodeType: {
required: false,
serializedName: 'typeProperties.newClusterDriverNodeType',
type: {
name: 'Object'
}
},
newClusterInitScripts: {
required: false,
serializedName: 'typeProperties.newClusterInitScripts',
type: {
name: 'Object'
}
},
newClusterEnableElasticDisk: {
required: false,
serializedName: 'typeProperties.newClusterEnableElasticDisk',
type: {
name: 'Object'
}
},
encryptedCredential: {
required: false,
serializedName: 'typeProperties.encryptedCredential',
Expand Down
10 changes: 10 additions & 0 deletions lib/services/datafactoryManagement/lib/models/customActivity.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ class CustomActivity extends models['ExecutionActivity'] {
* is no restriction on the keys or values that can be used. The user
* specified custom activity has the full responsibility to consume and
* interpret the content defined.
* @property {object} [retentionTimeInDays] The retention time for the files
* submitted for custom activity. Type: double (or Expression with resultType
* double).
*/
constructor() {
super();
Expand Down Expand Up @@ -197,6 +200,13 @@ class CustomActivity extends models['ExecutionActivity'] {
}
}
}
},
retentionTimeInDays: {
required: false,
serializedName: 'typeProperties.retentionTimeInDays',
type: {
name: 'Object'
}
}
}
}
Expand Down
19 changes: 19 additions & 0 deletions lib/services/datafactoryManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1750,6 +1750,20 @@ export interface AzureDatabricksLinkedService extends LinkedService {
* Additional tags for cluster resources.
*/
newClusterCustomTags?: { [propertyName: string]: any };
/**
* The driver node type for the new cluster. Type: string (or Expression with resultType string).
*/
newClusterDriverNodeType?: any;
/**
* User-defined initialization scripts for the new cluster. Type: array of strings (or Expression
* with resultType array of strings).
*/
newClusterInitScripts?: any;
/**
* Enable the elastic disk on the new cluster. Type: boolean (or Expression with resultType
* boolean).
*/
newClusterEnableElasticDisk?: any;
/**
* The encrypted credential used for authentication. Credentials are encrypted using the
* integration runtime credential manager. Type: string (or Expression with resultType string).
Expand Down Expand Up @@ -6320,6 +6334,11 @@ export interface CustomActivity extends ExecutionActivity {
* content defined.
*/
extendedProperties?: { [propertyName: string]: any };
/**
* The retention time for the files submitted for custom activity. Type: double (or Expression
* with resultType double).
*/
retentionTimeInDays?: any;
}

/**
Expand Down