@azure/arm-datafactory 10.8.1-alpha.20221014.1 → 10.9.0
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 +10 -10
- package/dist/index.js +81 -77
- 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/dataFlowsCreateOrUpdateSample.js +48 -2
- package/dist-esm/samples-dev/dataFlowsCreateOrUpdateSample.js.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +1 -1
- package/dist-esm/src/models/index.d.ts +58 -68
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +18 -18
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +1 -1
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +61 -57
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.js +2 -2
- package/package.json +4 -4
- package/review/arm-datafactory.api.md +14 -28
- package/src/dataFactoryManagementClient.ts +1 -1
- package/src/models/index.ts +61 -71
- package/src/models/mappers.ts +65 -58
- package/types/arm-datafactory.d.ts +20 -30
|
@@ -299,9 +299,7 @@ export declare interface AmazonRdsForSqlServerSource extends TabularSource {
|
|
|
299
299
|
/** Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). */
|
|
300
300
|
sqlReaderStoredProcedureName?: any;
|
|
301
301
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
302
|
-
storedProcedureParameters?:
|
|
303
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
304
|
-
};
|
|
302
|
+
storedProcedureParameters?: any;
|
|
305
303
|
/** Which additional types to produce. */
|
|
306
304
|
produceAdditionalTypes?: any;
|
|
307
305
|
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
@@ -1604,9 +1602,7 @@ export declare interface AzureSqlSink extends CopySink {
|
|
|
1604
1602
|
/** SQL pre-copy script. Type: string (or Expression with resultType string). */
|
|
1605
1603
|
preCopyScript?: any;
|
|
1606
1604
|
/** SQL stored procedure parameters. */
|
|
1607
|
-
storedProcedureParameters?:
|
|
1608
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
1609
|
-
};
|
|
1605
|
+
storedProcedureParameters?: any;
|
|
1610
1606
|
/** The stored procedure parameter name of the table type. Type: string (or Expression with resultType string). */
|
|
1611
1607
|
storedProcedureTableTypeParameterName?: any;
|
|
1612
1608
|
/** The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string). */
|
|
@@ -1628,9 +1624,7 @@ export declare interface AzureSqlSource extends TabularSource {
|
|
|
1628
1624
|
/** Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). */
|
|
1629
1625
|
sqlReaderStoredProcedureName?: any;
|
|
1630
1626
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
1631
|
-
storedProcedureParameters?:
|
|
1632
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
1633
|
-
};
|
|
1627
|
+
storedProcedureParameters?: any;
|
|
1634
1628
|
/** Which additional types to produce. */
|
|
1635
1629
|
produceAdditionalTypes?: any;
|
|
1636
1630
|
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
@@ -1675,6 +1669,8 @@ export declare interface AzureSynapseArtifactsLinkedService extends LinkedServic
|
|
|
1675
1669
|
endpoint: any;
|
|
1676
1670
|
/** Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string). */
|
|
1677
1671
|
authentication?: any;
|
|
1672
|
+
/** The resource ID of the Synapse workspace. The format should be: /subscriptions/{subscriptionID}/resourceGroups/{resourceGroup}/providers/Microsoft.Synapse/workspaces/{workspaceName}. Type: string (or Expression with resultType string). */
|
|
1673
|
+
workspaceResourceId?: any;
|
|
1678
1674
|
}
|
|
1679
1675
|
|
|
1680
1676
|
/** The Azure Table storage dataset. */
|
|
@@ -4313,6 +4309,8 @@ export declare interface FactoryRepoConfiguration {
|
|
|
4313
4309
|
rootFolder: string;
|
|
4314
4310
|
/** Last commit id. */
|
|
4315
4311
|
lastCommitId?: string;
|
|
4312
|
+
/** Disable manual publish operation in ADF studio to favor automated publish. */
|
|
4313
|
+
disablePublish?: boolean;
|
|
4316
4314
|
}
|
|
4317
4315
|
|
|
4318
4316
|
export declare type FactoryRepoConfigurationUnion = FactoryRepoConfiguration | FactoryVstsConfiguration | FactoryGitHubConfiguration;
|
|
@@ -11967,9 +11965,7 @@ export declare interface SqlMISink extends CopySink {
|
|
|
11967
11965
|
/** SQL pre-copy script. Type: string (or Expression with resultType string). */
|
|
11968
11966
|
preCopyScript?: any;
|
|
11969
11967
|
/** SQL stored procedure parameters. */
|
|
11970
|
-
storedProcedureParameters?:
|
|
11971
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
11972
|
-
};
|
|
11968
|
+
storedProcedureParameters?: any;
|
|
11973
11969
|
/** The stored procedure parameter name of the table type. Type: string (or Expression with resultType string). */
|
|
11974
11970
|
storedProcedureTableTypeParameterName?: any;
|
|
11975
11971
|
/** The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string). */
|
|
@@ -11991,9 +11987,7 @@ export declare interface SqlMISource extends TabularSource {
|
|
|
11991
11987
|
/** Name of the stored procedure for a Azure SQL Managed Instance source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). */
|
|
11992
11988
|
sqlReaderStoredProcedureName?: any;
|
|
11993
11989
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
11994
|
-
storedProcedureParameters?:
|
|
11995
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
11996
|
-
};
|
|
11990
|
+
storedProcedureParameters?: any;
|
|
11997
11991
|
/** Which additional types to produce. */
|
|
11998
11992
|
produceAdditionalTypes?: any;
|
|
11999
11993
|
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
@@ -12050,9 +12044,7 @@ export declare interface SqlServerSink extends CopySink {
|
|
|
12050
12044
|
/** SQL pre-copy script. Type: string (or Expression with resultType string). */
|
|
12051
12045
|
preCopyScript?: any;
|
|
12052
12046
|
/** SQL stored procedure parameters. */
|
|
12053
|
-
storedProcedureParameters?:
|
|
12054
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
12055
|
-
};
|
|
12047
|
+
storedProcedureParameters?: any;
|
|
12056
12048
|
/** The stored procedure parameter name of the table type. Type: string (or Expression with resultType string). */
|
|
12057
12049
|
storedProcedureTableTypeParameterName?: any;
|
|
12058
12050
|
/** The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string). */
|
|
@@ -12074,9 +12066,7 @@ export declare interface SqlServerSource extends TabularSource {
|
|
|
12074
12066
|
/** Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). */
|
|
12075
12067
|
sqlReaderStoredProcedureName?: any;
|
|
12076
12068
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
12077
|
-
storedProcedureParameters?:
|
|
12078
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
12079
|
-
};
|
|
12069
|
+
storedProcedureParameters?: any;
|
|
12080
12070
|
/** Which additional types to produce. */
|
|
12081
12071
|
produceAdditionalTypes?: any;
|
|
12082
12072
|
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
@@ -12118,9 +12108,7 @@ export declare interface SqlSink extends CopySink {
|
|
|
12118
12108
|
/** SQL pre-copy script. Type: string (or Expression with resultType string). */
|
|
12119
12109
|
preCopyScript?: any;
|
|
12120
12110
|
/** SQL stored procedure parameters. */
|
|
12121
|
-
storedProcedureParameters?:
|
|
12122
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
12123
|
-
};
|
|
12111
|
+
storedProcedureParameters?: any;
|
|
12124
12112
|
/** The stored procedure parameter name of the table type. Type: string (or Expression with resultType string). */
|
|
12125
12113
|
storedProcedureTableTypeParameterName?: any;
|
|
12126
12114
|
/** The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string). */
|
|
@@ -12142,9 +12130,7 @@ export declare interface SqlSource extends TabularSource {
|
|
|
12142
12130
|
/** Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string). */
|
|
12143
12131
|
sqlReaderStoredProcedureName?: any;
|
|
12144
12132
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
12145
|
-
storedProcedureParameters?:
|
|
12146
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
12147
|
-
};
|
|
12133
|
+
storedProcedureParameters?: any;
|
|
12148
12134
|
/** 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). */
|
|
12149
12135
|
isolationLevel?: any;
|
|
12150
12136
|
/** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
|
|
@@ -12668,8 +12654,12 @@ export declare interface SynapseSparkJobDefinitionActivity extends ExecutionActi
|
|
|
12668
12654
|
file?: any;
|
|
12669
12655
|
/** The fully-qualified identifier or the main class that is in the main definition file, which will override the 'className' of the spark job definition you provide. Type: string (or Expression with resultType string). */
|
|
12670
12656
|
className?: any;
|
|
12671
|
-
/** Additional files used for reference in the main definition file, which will override the 'files' of the spark job definition you provide. */
|
|
12657
|
+
/** (Deprecated. Please use pythonCodeReference and filesV2) Additional files used for reference in the main definition file, which will override the 'files' of the spark job definition you provide. */
|
|
12672
12658
|
files?: any[];
|
|
12659
|
+
/** Additional python code files used for reference in the main definition file, which will override the 'pyFiles' of the spark job definition you provide. */
|
|
12660
|
+
pythonCodeReference?: any[];
|
|
12661
|
+
/** Additional files used for reference in the main definition file, which will override the 'jars' and 'files' of the spark job definition you provide. */
|
|
12662
|
+
filesV2?: any[];
|
|
12673
12663
|
/** The name of the big data pool which will be used to execute the spark batch job, which will override the 'targetBigDataPool' of the spark job definition you provide. */
|
|
12674
12664
|
targetBigDataPool?: BigDataPoolParametrizationReference;
|
|
12675
12665
|
/** Number of core and memory to be used for executors allocated in the specified Spark pool for the job, which will be used for overriding 'executorCores' and 'executorMemory' of the spark job definition you provide. Type: string (or Expression with resultType string). */
|
|
@@ -12686,8 +12676,8 @@ export declare interface SynapseSparkJobDefinitionActivity extends ExecutionActi
|
|
|
12686
12676
|
export declare interface SynapseSparkJobReference {
|
|
12687
12677
|
/** Synapse spark job reference type. */
|
|
12688
12678
|
type: SparkJobReferenceType;
|
|
12689
|
-
/** Reference spark job name. */
|
|
12690
|
-
referenceName:
|
|
12679
|
+
/** Reference spark job name. Expression with resultType string. */
|
|
12680
|
+
referenceName: any;
|
|
12691
12681
|
}
|
|
12692
12682
|
|
|
12693
12683
|
/** Copy activity sources of tabular type. */
|