@azure/arm-datafactory 10.7.0 → 10.8.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 +22 -0
- package/dist/index.js +616 -313
- 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/src/dataFactoryManagementClient.d.ts.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +21 -13
- package/dist-esm/src/dataFactoryManagementClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +160 -7
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +30 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +112 -100
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +557 -300
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.d.ts +4 -0
- package/dist-esm/test/datafactory_examples.spec.d.ts.map +1 -0
- package/dist-esm/test/datafactory_examples.spec.js +106 -0
- package/dist-esm/test/datafactory_examples.spec.js.map +1 -0
- package/package.json +2 -2
- package/review/arm-datafactory.api.md +107 -5
- package/src/dataFactoryManagementClient.ts +26 -16
- package/src/models/index.ts +184 -7
- package/src/models/mappers.ts +599 -300
- package/types/arm-datafactory.d.ts +176 -7
- package/dist-esm/test/sampleTest.d.ts +0 -2
- package/dist-esm/test/sampleTest.d.ts.map +0 -1
- package/dist-esm/test/sampleTest.js +0 -38
- package/dist-esm/test/sampleTest.js.map +0 -1
|
@@ -17,7 +17,7 @@ export declare interface AccessPolicyResponse {
|
|
|
17
17
|
/** A pipeline activity. */
|
|
18
18
|
export declare interface Activity {
|
|
19
19
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
20
|
-
type: "Container" | "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "ExecutePipeline" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "IfCondition" | "Switch" | "ForEach" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "Wait" | "Fail" | "Until" | "Validation" | "Filter" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "SetVariable" | "AppendVariable" | "AzureFunctionActivity" | "WebHook" | "ExecuteDataFlow" | "ExecuteWranglingDataflow" | "Script";
|
|
20
|
+
type: "Container" | "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "ExecutePipeline" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "IfCondition" | "Switch" | "ForEach" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "Wait" | "Fail" | "Until" | "Validation" | "Filter" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "SetVariable" | "AppendVariable" | "AzureFunctionActivity" | "WebHook" | "ExecuteDataFlow" | "ExecuteWranglingDataflow" | "Script" | "SynapseNotebook" | "SparkJob";
|
|
21
21
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
22
22
|
[property: string]: any;
|
|
23
23
|
/** Activity name. */
|
|
@@ -1667,6 +1667,16 @@ export declare interface AzureStorageLinkedService extends LinkedService {
|
|
|
1667
1667
|
encryptedCredential?: string;
|
|
1668
1668
|
}
|
|
1669
1669
|
|
|
1670
|
+
/** Azure Synapse Analytics (Artifacts) linked service. */
|
|
1671
|
+
export declare interface AzureSynapseArtifactsLinkedService extends LinkedService {
|
|
1672
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
1673
|
+
type: "AzureSynapseArtifacts";
|
|
1674
|
+
/** https://<workspacename>.dev.azuresynapse.net, Azure Synapse Analytics workspace URL. Type: string (or Expression with resultType string). */
|
|
1675
|
+
endpoint: any;
|
|
1676
|
+
/** Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string). */
|
|
1677
|
+
authentication?: any;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1670
1680
|
/** The Azure Table storage dataset. */
|
|
1671
1681
|
export declare interface AzureTableDataset extends Dataset {
|
|
1672
1682
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -1715,6 +1725,23 @@ export declare interface AzureTableStorageLinkedService extends LinkedService {
|
|
|
1715
1725
|
encryptedCredential?: string;
|
|
1716
1726
|
}
|
|
1717
1727
|
|
|
1728
|
+
/** Big data pool reference type. */
|
|
1729
|
+
export declare interface BigDataPoolParametrizationReference {
|
|
1730
|
+
/** Big data pool reference type. */
|
|
1731
|
+
type: BigDataPoolReferenceType;
|
|
1732
|
+
/** Reference big data pool name. Type: string (or Expression with resultType string). */
|
|
1733
|
+
referenceName: any;
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
/**
|
|
1737
|
+
* Defines values for BigDataPoolReferenceType. \
|
|
1738
|
+
* {@link KnownBigDataPoolReferenceType} can be used interchangeably with BigDataPoolReferenceType,
|
|
1739
|
+
* this enum contains the known values that the service supports.
|
|
1740
|
+
* ### Known values supported by the service
|
|
1741
|
+
* **BigDataPoolReference**
|
|
1742
|
+
*/
|
|
1743
|
+
export declare type BigDataPoolReferenceType = string;
|
|
1744
|
+
|
|
1718
1745
|
/** Binary dataset. */
|
|
1719
1746
|
export declare interface BinaryDataset extends Dataset {
|
|
1720
1747
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -3931,14 +3958,14 @@ export declare interface ExecuteWranglingDataflowActivity extends Activity {
|
|
|
3931
3958
|
/** Base class for all execution activities. */
|
|
3932
3959
|
export declare interface ExecutionActivity extends Activity {
|
|
3933
3960
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3934
|
-
type: "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "AzureFunctionActivity" | "ExecuteDataFlow" | "Script";
|
|
3961
|
+
type: "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "AzureFunctionActivity" | "ExecuteDataFlow" | "Script" | "SynapseNotebook" | "SparkJob";
|
|
3935
3962
|
/** Linked service reference. */
|
|
3936
3963
|
linkedServiceName?: LinkedServiceReference;
|
|
3937
3964
|
/** Activity policy. */
|
|
3938
3965
|
policy?: ActivityPolicy;
|
|
3939
3966
|
}
|
|
3940
3967
|
|
|
3941
|
-
export declare type ExecutionActivityUnion = ExecutionActivity | CopyActivity | HDInsightHiveActivity | HDInsightPigActivity | HDInsightMapReduceActivity | HDInsightStreamingActivity | HDInsightSparkActivity | ExecuteSsisPackageActivity | CustomActivity | SqlServerStoredProcedureActivity | DeleteActivity | AzureDataExplorerCommandActivity | LookupActivity | WebActivity | GetMetadataActivity | AzureMLBatchExecutionActivity | AzureMLUpdateResourceActivity | AzureMLExecutePipelineActivity | DataLakeAnalyticsUsqlActivity | DatabricksNotebookActivity | DatabricksSparkJarActivity | DatabricksSparkPythonActivity | AzureFunctionActivity | ExecuteDataFlowActivity | ScriptActivity;
|
|
3968
|
+
export declare type ExecutionActivityUnion = ExecutionActivity | CopyActivity | HDInsightHiveActivity | HDInsightPigActivity | HDInsightMapReduceActivity | HDInsightStreamingActivity | HDInsightSparkActivity | ExecuteSsisPackageActivity | CustomActivity | SqlServerStoredProcedureActivity | DeleteActivity | AzureDataExplorerCommandActivity | LookupActivity | WebActivity | GetMetadataActivity | AzureMLBatchExecutionActivity | AzureMLUpdateResourceActivity | AzureMLExecutePipelineActivity | DataLakeAnalyticsUsqlActivity | DatabricksNotebookActivity | DatabricksSparkJarActivity | DatabricksSparkPythonActivity | AzureFunctionActivity | ExecuteDataFlowActivity | ScriptActivity | SynapseNotebookActivity | SynapseSparkJobDefinitionActivity;
|
|
3942
3969
|
|
|
3943
3970
|
/** Export command settings. */
|
|
3944
3971
|
export declare interface ExportSettings {
|
|
@@ -4868,6 +4895,16 @@ export declare interface GoogleCloudStorageReadSettings extends StoreReadSetting
|
|
|
4868
4895
|
modifiedDatetimeEnd?: any;
|
|
4869
4896
|
}
|
|
4870
4897
|
|
|
4898
|
+
/** Linked service for GoogleSheets. */
|
|
4899
|
+
export declare interface GoogleSheetsLinkedService extends LinkedService {
|
|
4900
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
4901
|
+
type: "GoogleSheets";
|
|
4902
|
+
/** The api token for the GoogleSheets source. */
|
|
4903
|
+
apiToken: SecretBaseUnion;
|
|
4904
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
|
|
4905
|
+
encryptedCredential?: any;
|
|
4906
|
+
}
|
|
4907
|
+
|
|
4871
4908
|
/** Greenplum Database linked service. */
|
|
4872
4909
|
export declare interface GreenplumLinkedService extends LinkedService {
|
|
4873
4910
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -5387,7 +5424,7 @@ export declare interface HttpDataset extends Dataset {
|
|
|
5387
5424
|
export declare interface HttpLinkedService extends LinkedService {
|
|
5388
5425
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
5389
5426
|
type: "HttpServer";
|
|
5390
|
-
/** The base URL of the HTTP endpoint, e.g.
|
|
5427
|
+
/** The base URL of the HTTP endpoint, e.g. https://www.microsoft.com. Type: string (or Expression with resultType string). */
|
|
5391
5428
|
url: any;
|
|
5392
5429
|
/** The authentication type to be used to connect to the HTTP server. */
|
|
5393
5430
|
authenticationType?: HttpAuthenticationType;
|
|
@@ -6625,6 +6662,12 @@ export declare enum KnownAzureSearchIndexWriteBehaviorType {
|
|
|
6625
6662
|
Upload = "Upload"
|
|
6626
6663
|
}
|
|
6627
6664
|
|
|
6665
|
+
/** Known values of {@link BigDataPoolReferenceType} that the service accepts. */
|
|
6666
|
+
export declare enum KnownBigDataPoolReferenceType {
|
|
6667
|
+
/** BigDataPoolReference */
|
|
6668
|
+
BigDataPoolReference = "BigDataPoolReference"
|
|
6669
|
+
}
|
|
6670
|
+
|
|
6628
6671
|
/** Known values of {@link BlobEventTypes} that the service accepts. */
|
|
6629
6672
|
export declare enum KnownBlobEventTypes {
|
|
6630
6673
|
/** MicrosoftStorageBlobCreated */
|
|
@@ -7093,6 +7136,24 @@ export declare enum KnownNetezzaPartitionOption {
|
|
|
7093
7136
|
DynamicRange = "DynamicRange"
|
|
7094
7137
|
}
|
|
7095
7138
|
|
|
7139
|
+
/** Known values of {@link NotebookParameterType} that the service accepts. */
|
|
7140
|
+
export declare enum KnownNotebookParameterType {
|
|
7141
|
+
/** String */
|
|
7142
|
+
String = "string",
|
|
7143
|
+
/** Int */
|
|
7144
|
+
Int = "int",
|
|
7145
|
+
/** Float */
|
|
7146
|
+
Float = "float",
|
|
7147
|
+
/** Bool */
|
|
7148
|
+
Bool = "bool"
|
|
7149
|
+
}
|
|
7150
|
+
|
|
7151
|
+
/** Known values of {@link NotebookReferenceType} that the service accepts. */
|
|
7152
|
+
export declare enum KnownNotebookReferenceType {
|
|
7153
|
+
/** NotebookReference */
|
|
7154
|
+
NotebookReference = "NotebookReference"
|
|
7155
|
+
}
|
|
7156
|
+
|
|
7096
7157
|
/** Known values of {@link ODataAadServicePrincipalCredentialType} that the service accepts. */
|
|
7097
7158
|
export declare enum KnownODataAadServicePrincipalCredentialType {
|
|
7098
7159
|
/** ServicePrincipalKey */
|
|
@@ -7459,6 +7520,12 @@ export declare enum KnownSparkAuthenticationType {
|
|
|
7459
7520
|
WindowsAzureHDInsightService = "WindowsAzureHDInsightService"
|
|
7460
7521
|
}
|
|
7461
7522
|
|
|
7523
|
+
/** Known values of {@link SparkJobReferenceType} that the service accepts. */
|
|
7524
|
+
export declare enum KnownSparkJobReferenceType {
|
|
7525
|
+
/** SparkJobDefinitionReference */
|
|
7526
|
+
SparkJobDefinitionReference = "SparkJobDefinitionReference"
|
|
7527
|
+
}
|
|
7528
|
+
|
|
7462
7529
|
/** Known values of {@link SparkServerType} that the service accepts. */
|
|
7463
7530
|
export declare enum KnownSparkServerType {
|
|
7464
7531
|
/** SharkServer */
|
|
@@ -7751,7 +7818,7 @@ export declare type LinkedIntegrationRuntimeTypeUnion = LinkedIntegrationRuntime
|
|
|
7751
7818
|
/** The nested object which contains the information and credential which can be used to connect with related store or compute resource. */
|
|
7752
7819
|
export declare interface LinkedService {
|
|
7753
7820
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7754
|
-
type: "AzureStorage" | "AzureBlobStorage" | "AzureTableStorage" | "AzureSqlDW" | "SqlServer" | "AmazonRdsForSqlServer" | "AzureSqlDatabase" | "AzureSqlMI" | "AzureBatch" | "AzureKeyVault" | "CosmosDb" | "Dynamics" | "DynamicsCrm" | "CommonDataServiceForApps" | "HDInsight" | "FileServer" | "AzureFileStorage" | "AmazonS3Compatible" | "OracleCloudStorage" | "GoogleCloudStorage" | "Oracle" | "AmazonRdsForOracle" | "AzureMySql" | "MySql" | "PostgreSql" | "Sybase" | "Db2" | "Teradata" | "AzureML" | "AzureMLService" | "Odbc" | "Informix" | "MicrosoftAccess" | "Hdfs" | "OData" | "Web" | "Cassandra" | "MongoDb" | "MongoDbAtlas" | "MongoDbV2" | "CosmosDbMongoDbApi" | "AzureDataLakeStore" | "AzureBlobFS" | "Office365" | "Salesforce" | "SalesforceServiceCloud" | "SapCloudForCustomer" | "SapEcc" | "SapOpenHub" | "SapOdp" | "RestService" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "Dataworld" | "AppFigures" | "Asana" | "Twilio" | "AmazonS3" | "AmazonRedshift" | "CustomDataSource" | "AzureSearch" | "HttpServer" | "FtpServer" | "Sftp" | "SapBW" | "SapHana" | "AmazonMWS" | "AzurePostgreSql" | "Concur" | "Couchbase" | "Drill" | "Eloqua" | "GoogleBigQuery" | "Greenplum" | "HBase" | "Hive" | "Hubspot" | "Impala" | "Jira" | "Magento" | "MariaDB" | "AzureMariaDB" | "Marketo" | "Paypal" | "Phoenix" | "Presto" | "QuickBooks" | "ServiceNow" | "Shopify" | "Spark" | "Square" | "Xero" | "Zoho" | "Vertica" | "Netezza" | "SalesforceMarketingCloud" | "HDInsightOnDemand" | "AzureDataLakeAnalytics" | "AzureDatabricks" | "AzureDatabricksDeltaLake" | "Responsys" | "DynamicsAX" | "OracleServiceCloud" | "GoogleAdWords" | "SapTable" | "AzureDataExplorer" | "AzureFunction" | "Snowflake" | "SharePointOnlineList";
|
|
7821
|
+
type: "AzureStorage" | "AzureBlobStorage" | "AzureTableStorage" | "AzureSqlDW" | "SqlServer" | "AmazonRdsForSqlServer" | "AzureSqlDatabase" | "AzureSqlMI" | "AzureBatch" | "AzureKeyVault" | "CosmosDb" | "Dynamics" | "DynamicsCrm" | "CommonDataServiceForApps" | "HDInsight" | "FileServer" | "AzureFileStorage" | "AmazonS3Compatible" | "OracleCloudStorage" | "GoogleCloudStorage" | "Oracle" | "AmazonRdsForOracle" | "AzureMySql" | "MySql" | "PostgreSql" | "Sybase" | "Db2" | "Teradata" | "AzureML" | "AzureMLService" | "Odbc" | "Informix" | "MicrosoftAccess" | "Hdfs" | "OData" | "Web" | "Cassandra" | "MongoDb" | "MongoDbAtlas" | "MongoDbV2" | "CosmosDbMongoDbApi" | "AzureDataLakeStore" | "AzureBlobFS" | "Office365" | "Salesforce" | "SalesforceServiceCloud" | "SapCloudForCustomer" | "SapEcc" | "SapOpenHub" | "SapOdp" | "RestService" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "Dataworld" | "AppFigures" | "Asana" | "Twilio" | "GoogleSheets" | "AmazonS3" | "AmazonRedshift" | "CustomDataSource" | "AzureSearch" | "HttpServer" | "FtpServer" | "Sftp" | "SapBW" | "SapHana" | "AmazonMWS" | "AzurePostgreSql" | "Concur" | "Couchbase" | "Drill" | "Eloqua" | "GoogleBigQuery" | "Greenplum" | "HBase" | "Hive" | "Hubspot" | "Impala" | "Jira" | "Magento" | "MariaDB" | "AzureMariaDB" | "Marketo" | "Paypal" | "Phoenix" | "Presto" | "QuickBooks" | "ServiceNow" | "Shopify" | "Spark" | "Square" | "Xero" | "Zoho" | "Vertica" | "Netezza" | "SalesforceMarketingCloud" | "HDInsightOnDemand" | "AzureDataLakeAnalytics" | "AzureDatabricks" | "AzureDatabricksDeltaLake" | "Responsys" | "DynamicsAX" | "OracleServiceCloud" | "GoogleAdWords" | "SapTable" | "AzureDataExplorer" | "AzureFunction" | "Snowflake" | "SharePointOnlineList" | "AzureSynapseArtifacts";
|
|
7755
7822
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
7756
7823
|
[property: string]: any;
|
|
7757
7824
|
/** The integration runtime reference. */
|
|
@@ -7870,7 +7937,7 @@ export declare interface LinkedServicesListByFactoryOptionalParams extends coreC
|
|
|
7870
7937
|
/** Contains response data for the listByFactory operation. */
|
|
7871
7938
|
export declare type LinkedServicesListByFactoryResponse = LinkedServiceListResponse;
|
|
7872
7939
|
|
|
7873
|
-
export declare type LinkedServiceUnion = LinkedService | AzureStorageLinkedService | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService | FileServerLinkedService | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | AzureMLServiceLinkedService | OdbcLinkedService | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | SapOpenHubLinkedService | SapOdpLinkedService | RestServiceLinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | AmazonS3LinkedService | AmazonRedshiftLinkedService | CustomDataSourceLinkedService | AzureSearchLinkedService | HttpLinkedService | FtpServerLinkedService | SftpServerLinkedService | SapBWLinkedService | SapHanaLinkedService | AmazonMWSLinkedService | AzurePostgreSqlLinkedService | ConcurLinkedService | CouchbaseLinkedService | DrillLinkedService | EloquaLinkedService | GoogleBigQueryLinkedService | GreenplumLinkedService | HBaseLinkedService | HiveLinkedService | HubspotLinkedService | ImpalaLinkedService | JiraLinkedService | MagentoLinkedService | MariaDBLinkedService | AzureMariaDBLinkedService | MarketoLinkedService | PaypalLinkedService | PhoenixLinkedService | PrestoLinkedService | QuickBooksLinkedService | ServiceNowLinkedService | ShopifyLinkedService | SparkLinkedService | SquareLinkedService | XeroLinkedService | ZohoLinkedService | VerticaLinkedService | NetezzaLinkedService | SalesforceMarketingCloudLinkedService | HDInsightOnDemandLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDatabricksLinkedService | AzureDatabricksDeltaLakeLinkedService | ResponsysLinkedService | DynamicsAXLinkedService | OracleServiceCloudLinkedService | GoogleAdWordsLinkedService | SapTableLinkedService | AzureDataExplorerLinkedService | AzureFunctionLinkedService | SnowflakeLinkedService | SharePointOnlineListLinkedService;
|
|
7940
|
+
export declare type LinkedServiceUnion = LinkedService | AzureStorageLinkedService | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService | FileServerLinkedService | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | AzureMLServiceLinkedService | OdbcLinkedService | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | SapOpenHubLinkedService | SapOdpLinkedService | RestServiceLinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | GoogleSheetsLinkedService | AmazonS3LinkedService | AmazonRedshiftLinkedService | CustomDataSourceLinkedService | AzureSearchLinkedService | HttpLinkedService | FtpServerLinkedService | SftpServerLinkedService | SapBWLinkedService | SapHanaLinkedService | AmazonMWSLinkedService | AzurePostgreSqlLinkedService | ConcurLinkedService | CouchbaseLinkedService | DrillLinkedService | EloquaLinkedService | GoogleBigQueryLinkedService | GreenplumLinkedService | HBaseLinkedService | HiveLinkedService | HubspotLinkedService | ImpalaLinkedService | JiraLinkedService | MagentoLinkedService | MariaDBLinkedService | AzureMariaDBLinkedService | MarketoLinkedService | PaypalLinkedService | PhoenixLinkedService | PrestoLinkedService | QuickBooksLinkedService | ServiceNowLinkedService | ShopifyLinkedService | SparkLinkedService | SquareLinkedService | XeroLinkedService | ZohoLinkedService | VerticaLinkedService | NetezzaLinkedService | SalesforceMarketingCloudLinkedService | HDInsightOnDemandLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDatabricksLinkedService | AzureDatabricksDeltaLakeLinkedService | ResponsysLinkedService | DynamicsAXLinkedService | OracleServiceCloudLinkedService | GoogleAdWordsLinkedService | SapTableLinkedService | AzureDataExplorerLinkedService | AzureFunctionLinkedService | SnowflakeLinkedService | SharePointOnlineListLinkedService | AzureSynapseArtifactsLinkedService;
|
|
7874
7941
|
|
|
7875
7942
|
/** Log location settings. */
|
|
7876
7943
|
export declare interface LogLocationSettings {
|
|
@@ -8695,6 +8762,35 @@ export declare interface NetezzaTableDataset extends Dataset {
|
|
|
8695
8762
|
schemaTypePropertiesSchema?: any;
|
|
8696
8763
|
}
|
|
8697
8764
|
|
|
8765
|
+
/** Notebook parameter. */
|
|
8766
|
+
export declare interface NotebookParameter {
|
|
8767
|
+
/** Notebook parameter value. Type: string (or Expression with resultType string). */
|
|
8768
|
+
value?: any;
|
|
8769
|
+
/** Notebook parameter type. */
|
|
8770
|
+
type?: NotebookParameterType;
|
|
8771
|
+
}
|
|
8772
|
+
|
|
8773
|
+
/**
|
|
8774
|
+
* Defines values for NotebookParameterType. \
|
|
8775
|
+
* {@link KnownNotebookParameterType} can be used interchangeably with NotebookParameterType,
|
|
8776
|
+
* this enum contains the known values that the service supports.
|
|
8777
|
+
* ### Known values supported by the service
|
|
8778
|
+
* **string** \
|
|
8779
|
+
* **int** \
|
|
8780
|
+
* **float** \
|
|
8781
|
+
* **bool**
|
|
8782
|
+
*/
|
|
8783
|
+
export declare type NotebookParameterType = string;
|
|
8784
|
+
|
|
8785
|
+
/**
|
|
8786
|
+
* Defines values for NotebookReferenceType. \
|
|
8787
|
+
* {@link KnownNotebookReferenceType} can be used interchangeably with NotebookReferenceType,
|
|
8788
|
+
* this enum contains the known values that the service supports.
|
|
8789
|
+
* ### Known values supported by the service
|
|
8790
|
+
* **NotebookReference**
|
|
8791
|
+
*/
|
|
8792
|
+
export declare type NotebookReferenceType = string;
|
|
8793
|
+
|
|
8698
8794
|
/**
|
|
8699
8795
|
* Defines values for ODataAadServicePrincipalCredentialType. \
|
|
8700
8796
|
* {@link KnownODataAadServicePrincipalCredentialType} can be used interchangeably with ODataAadServicePrincipalCredentialType,
|
|
@@ -11694,6 +11790,15 @@ export declare interface SnowflakeSource extends CopySource {
|
|
|
11694
11790
|
*/
|
|
11695
11791
|
export declare type SparkAuthenticationType = string;
|
|
11696
11792
|
|
|
11793
|
+
/**
|
|
11794
|
+
* Defines values for SparkJobReferenceType. \
|
|
11795
|
+
* {@link KnownSparkJobReferenceType} can be used interchangeably with SparkJobReferenceType,
|
|
11796
|
+
* this enum contains the known values that the service supports.
|
|
11797
|
+
* ### Known values supported by the service
|
|
11798
|
+
* **SparkJobDefinitionReference**
|
|
11799
|
+
*/
|
|
11800
|
+
export declare type SparkJobReferenceType = string;
|
|
11801
|
+
|
|
11697
11802
|
/** Spark Server linked service. */
|
|
11698
11803
|
export declare interface SparkLinkedService extends LinkedService {
|
|
11699
11804
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -12521,6 +12626,70 @@ export declare interface SybaseTableDataset extends Dataset {
|
|
|
12521
12626
|
tableName?: any;
|
|
12522
12627
|
}
|
|
12523
12628
|
|
|
12629
|
+
/** Execute Synapse notebook activity. */
|
|
12630
|
+
export declare interface SynapseNotebookActivity extends ExecutionActivity {
|
|
12631
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
12632
|
+
type: "SynapseNotebook";
|
|
12633
|
+
/** Synapse notebook reference. */
|
|
12634
|
+
notebook: SynapseNotebookReference;
|
|
12635
|
+
/** The name of the big data pool which will be used to execute the notebook. */
|
|
12636
|
+
sparkPool?: BigDataPoolParametrizationReference;
|
|
12637
|
+
/** Notebook parameters. */
|
|
12638
|
+
parameters?: {
|
|
12639
|
+
[propertyName: string]: NotebookParameter;
|
|
12640
|
+
};
|
|
12641
|
+
/** Number of core and memory to be used for executors allocated in the specified Spark pool for the session, which will be used for overriding 'executorCores' and 'executorMemory' of the notebook you provide. Type: string (or Expression with resultType string). */
|
|
12642
|
+
executorSize?: any;
|
|
12643
|
+
/** Spark configuration properties, which will override the 'conf' of the notebook you provide. */
|
|
12644
|
+
conf?: any;
|
|
12645
|
+
/** Number of core and memory to be used for driver allocated in the specified Spark pool for the session, which will be used for overriding 'driverCores' and 'driverMemory' of the notebook you provide. Type: string (or Expression with resultType string). */
|
|
12646
|
+
driverSize?: any;
|
|
12647
|
+
/** Number of executors to launch for this session, which will override the 'numExecutors' of the notebook you provide. */
|
|
12648
|
+
numExecutors?: number;
|
|
12649
|
+
}
|
|
12650
|
+
|
|
12651
|
+
/** Synapse notebook reference type. */
|
|
12652
|
+
export declare interface SynapseNotebookReference {
|
|
12653
|
+
/** Synapse notebook reference type. */
|
|
12654
|
+
type: NotebookReferenceType;
|
|
12655
|
+
/** Reference notebook name. Type: string (or Expression with resultType string). */
|
|
12656
|
+
referenceName: any;
|
|
12657
|
+
}
|
|
12658
|
+
|
|
12659
|
+
/** Execute spark job activity. */
|
|
12660
|
+
export declare interface SynapseSparkJobDefinitionActivity extends ExecutionActivity {
|
|
12661
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
12662
|
+
type: "SparkJob";
|
|
12663
|
+
/** Synapse spark job reference. */
|
|
12664
|
+
sparkJob: SynapseSparkJobReference;
|
|
12665
|
+
/** User specified arguments to SynapseSparkJobDefinitionActivity. */
|
|
12666
|
+
arguments?: any[];
|
|
12667
|
+
/** The main file used for the job, which will override the 'file' of the spark job definition you provide. Type: string (or Expression with resultType string). */
|
|
12668
|
+
file?: any;
|
|
12669
|
+
/** 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
|
+
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. */
|
|
12672
|
+
files?: any[];
|
|
12673
|
+
/** 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
|
+
targetBigDataPool?: BigDataPoolParametrizationReference;
|
|
12675
|
+
/** 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). */
|
|
12676
|
+
executorSize?: any;
|
|
12677
|
+
/** Spark configuration properties, which will override the 'conf' of the spark job definition you provide. */
|
|
12678
|
+
conf?: any;
|
|
12679
|
+
/** Number of core and memory to be used for driver allocated in the specified Spark pool for the job, which will be used for overriding 'driverCores' and 'driverMemory' of the spark job definition you provide. Type: string (or Expression with resultType string). */
|
|
12680
|
+
driverSize?: any;
|
|
12681
|
+
/** Number of executors to launch for this job, which will override the 'numExecutors' of the spark job definition you provide. */
|
|
12682
|
+
numExecutors?: number;
|
|
12683
|
+
}
|
|
12684
|
+
|
|
12685
|
+
/** Synapse spark job reference type. */
|
|
12686
|
+
export declare interface SynapseSparkJobReference {
|
|
12687
|
+
/** Synapse spark job reference type. */
|
|
12688
|
+
type: SparkJobReferenceType;
|
|
12689
|
+
/** Reference spark job name. */
|
|
12690
|
+
referenceName: string;
|
|
12691
|
+
}
|
|
12692
|
+
|
|
12524
12693
|
/** Copy activity sources of tabular type. */
|
|
12525
12694
|
export declare interface TabularSource extends CopySource {
|
|
12526
12695
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -13484,7 +13653,7 @@ export declare interface WebLinkedService extends LinkedService {
|
|
|
13484
13653
|
export declare interface WebLinkedServiceTypeProperties {
|
|
13485
13654
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
13486
13655
|
authenticationType: "Anonymous" | "Basic" | "ClientCertificate";
|
|
13487
|
-
/** The URL of the web service endpoint, e.g.
|
|
13656
|
+
/** The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string). */
|
|
13488
13657
|
url: any;
|
|
13489
13658
|
}
|
|
13490
13659
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sampleTest.d.ts","sourceRoot":"","sources":["../../test/sampleTest.ts"],"names":[],"mappings":""}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
import { __awaiter } from "tslib";
|
|
9
|
-
import { Recorder } from "@azure-tools/test-recorder";
|
|
10
|
-
const replaceableVariables = {
|
|
11
|
-
AZURE_CLIENT_ID: "azure_client_id",
|
|
12
|
-
AZURE_CLIENT_SECRET: "azure_client_secret",
|
|
13
|
-
AZURE_TENANT_ID: "88888888-8888-8888-8888-888888888888",
|
|
14
|
-
SUBSCRIPTION_ID: "azure_subscription_id"
|
|
15
|
-
};
|
|
16
|
-
const recorderOptions = {
|
|
17
|
-
envSetupForPlayback: replaceableVariables
|
|
18
|
-
};
|
|
19
|
-
describe("My test", () => {
|
|
20
|
-
let recorder;
|
|
21
|
-
beforeEach(function () {
|
|
22
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
23
|
-
recorder = new Recorder(this.currentTest);
|
|
24
|
-
yield recorder.start(recorderOptions);
|
|
25
|
-
});
|
|
26
|
-
});
|
|
27
|
-
afterEach(function () {
|
|
28
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
29
|
-
yield recorder.stop();
|
|
30
|
-
});
|
|
31
|
-
});
|
|
32
|
-
it("sample test", function () {
|
|
33
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
34
|
-
console.log("Hi, I'm a test!");
|
|
35
|
-
});
|
|
36
|
-
});
|
|
37
|
-
});
|
|
38
|
-
//# sourceMappingURL=sampleTest.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sampleTest.js","sourceRoot":"","sources":["../../test/sampleTest.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;;AAEH,OAAO,EACL,QAAQ,EAGT,MAAM,4BAA4B,CAAC;AAIpC,MAAM,oBAAoB,GAA2B;IACnD,eAAe,EAAE,iBAAiB;IAClC,mBAAmB,EAAE,qBAAqB;IAC1C,eAAe,EAAE,sCAAsC;IACvD,eAAe,EAAE,uBAAuB;CACzC,CAAC;AAEF,MAAM,eAAe,GAAyB;IAC5C,mBAAmB,EAAE,oBAAoB;CAC1C,CAAC;AAEF,QAAQ,CAAC,SAAS,EAAE,GAAG,EAAE;IACvB,IAAI,QAAkB,CAAC;IAEvB,UAAU,CAAC;;YACT,QAAQ,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;YAC1C,MAAM,QAAQ,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;QACxC,CAAC;KAAA,CAAC,CAAC;IAEH,SAAS,CAAC;;YACR,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;QACxB,CAAC;KAAA,CAAC,CAAC;IAEH,EAAE,CAAC,aAAa,EAAE;;YAChB,OAAO,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC;QACjC,CAAC;KAAA,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
|