@azure/synapse-artifacts 1.0.0-beta.11 → 1.0.0-beta.12
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/dist/index.js +808 -469
- package/dist/index.js.map +1 -1
- package/dist-esm/src/artifactsClient.js +20 -15
- package/dist-esm/src/artifactsClient.js.map +1 -1
- package/dist-esm/src/index.js +1 -0
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/models/index.js +10 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.js +406 -308
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.js +1 -1
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/dataFlowDebugSession.js +19 -8
- package/dist-esm/src/operations/dataFlowDebugSession.js.map +1 -1
- package/dist-esm/src/operations/dataFlowOperations.js +19 -8
- package/dist-esm/src/operations/dataFlowOperations.js.map +1 -1
- package/dist-esm/src/operations/datasetOperations.js +19 -8
- package/dist-esm/src/operations/datasetOperations.js.map +1 -1
- package/dist-esm/src/operations/kqlScripts.js +19 -8
- package/dist-esm/src/operations/kqlScripts.js.map +1 -1
- package/dist-esm/src/operations/library.js +19 -8
- package/dist-esm/src/operations/library.js.map +1 -1
- package/dist-esm/src/operations/linkConnectionOperations.js +102 -40
- package/dist-esm/src/operations/linkConnectionOperations.js.map +1 -1
- package/dist-esm/src/operations/linkedServiceOperations.js +19 -8
- package/dist-esm/src/operations/linkedServiceOperations.js.map +1 -1
- package/dist-esm/src/operations/notebookOperations.js +37 -16
- package/dist-esm/src/operations/notebookOperations.js.map +1 -1
- package/dist-esm/src/operations/pipelineOperations.js +19 -8
- package/dist-esm/src/operations/pipelineOperations.js.map +1 -1
- package/dist-esm/src/operations/sparkConfigurationOperations.js +19 -8
- package/dist-esm/src/operations/sparkConfigurationOperations.js.map +1 -1
- package/dist-esm/src/operations/sparkJobDefinitionOperations.js +19 -8
- package/dist-esm/src/operations/sparkJobDefinitionOperations.js.map +1 -1
- package/dist-esm/src/operations/sqlScriptOperations.js +19 -8
- package/dist-esm/src/operations/sqlScriptOperations.js.map +1 -1
- package/dist-esm/src/operations/triggerOperations.js +19 -8
- package/dist-esm/src/operations/triggerOperations.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/linkConnectionOperations.js.map +1 -1
- package/dist-esm/src/pagingHelper.js +32 -0
- package/dist-esm/src/pagingHelper.js.map +1 -0
- package/dist-esm/src/tracing.js +1 -1
- package/dist-esm/src/tracing.js.map +1 -1
- package/package.json +5 -5
- package/types/synapse-artifacts.d.ts +118 -28
|
@@ -1602,6 +1602,8 @@ export declare interface AzureSynapseArtifactsLinkedService extends LinkedServic
|
|
|
1602
1602
|
endpoint: any;
|
|
1603
1603
|
/** Required to specify MSI, if using system assigned managed identity as authentication method. Type: string (or Expression with resultType string). */
|
|
1604
1604
|
authentication?: any;
|
|
1605
|
+
/** 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). */
|
|
1606
|
+
workspaceResourceId?: any;
|
|
1605
1607
|
}
|
|
1606
1608
|
|
|
1607
1609
|
/** The Azure Table storage dataset. */
|
|
@@ -2075,6 +2077,17 @@ export declare interface ConcurSource extends TabularSource {
|
|
|
2075
2077
|
query?: any;
|
|
2076
2078
|
}
|
|
2077
2079
|
|
|
2080
|
+
/**
|
|
2081
|
+
* Defines values for ConfigurationType. \
|
|
2082
|
+
* {@link KnownConfigurationType} can be used interchangeably with ConfigurationType,
|
|
2083
|
+
* this enum contains the known values that the service supports.
|
|
2084
|
+
* ### Known values supported by the service
|
|
2085
|
+
* **Default** \
|
|
2086
|
+
* **Customized** \
|
|
2087
|
+
* **Artifact**
|
|
2088
|
+
*/
|
|
2089
|
+
export declare type ConfigurationType = string;
|
|
2090
|
+
|
|
2078
2091
|
/** Base class for all control activities like IfCondition, ForEach , Until. */
|
|
2079
2092
|
export declare interface ControlActivity extends Activity {
|
|
2080
2093
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -2912,7 +2925,7 @@ export declare interface DataFlowStagingInfo {
|
|
|
2912
2925
|
/** Staging linked service reference. */
|
|
2913
2926
|
linkedService?: LinkedServiceReference;
|
|
2914
2927
|
/** Folder path for staging blob. */
|
|
2915
|
-
folderPath?:
|
|
2928
|
+
folderPath?: any;
|
|
2916
2929
|
}
|
|
2917
2930
|
|
|
2918
2931
|
export declare type DataFlowUnion = DataFlow | MappingDataFlow | Flowlet;
|
|
@@ -4208,6 +4221,15 @@ export declare interface FtpServerLocation extends DatasetLocation {
|
|
|
4208
4221
|
type: "FtpServerLocation";
|
|
4209
4222
|
}
|
|
4210
4223
|
|
|
4224
|
+
/**
|
|
4225
|
+
* Given the last `.value` produced by the `byPage` iterator,
|
|
4226
|
+
* returns a continuation token that can be used to begin paging from
|
|
4227
|
+
* that point later.
|
|
4228
|
+
* @param page An object from accessing `value` on the IteratorResult from a `byPage` iterator.
|
|
4229
|
+
* @returns The continuation token that can be passed into byPage() during future calls.
|
|
4230
|
+
*/
|
|
4231
|
+
export declare function getContinuationToken(page: unknown): string | undefined;
|
|
4232
|
+
|
|
4211
4233
|
/** Activity to get metadata of dataset */
|
|
4212
4234
|
export declare interface GetMetadataActivity extends ExecutionActivity {
|
|
4213
4235
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -5649,6 +5671,16 @@ export declare enum KnownCompressionCodec {
|
|
|
5649
5671
|
TarGZip = "tarGZip"
|
|
5650
5672
|
}
|
|
5651
5673
|
|
|
5674
|
+
/** Known values of {@link ConfigurationType} that the service accepts. */
|
|
5675
|
+
export declare enum KnownConfigurationType {
|
|
5676
|
+
/** Default */
|
|
5677
|
+
Default = "Default",
|
|
5678
|
+
/** Customized */
|
|
5679
|
+
Customized = "Customized",
|
|
5680
|
+
/** Artifact */
|
|
5681
|
+
Artifact = "Artifact"
|
|
5682
|
+
}
|
|
5683
|
+
|
|
5652
5684
|
/** Known values of {@link CopyBehaviorType} that the service accepts. */
|
|
5653
5685
|
export declare enum KnownCopyBehaviorType {
|
|
5654
5686
|
/** PreserveHierarchy */
|
|
@@ -7149,14 +7181,14 @@ export declare interface LinkConnectionCompute {
|
|
|
7149
7181
|
}
|
|
7150
7182
|
|
|
7151
7183
|
/** Optional parameters. */
|
|
7152
|
-
export declare interface
|
|
7184
|
+
export declare interface LinkConnectionCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
7153
7185
|
}
|
|
7154
7186
|
|
|
7155
|
-
/** Contains response data for the
|
|
7156
|
-
export declare type
|
|
7187
|
+
/** Contains response data for the createOrUpdate operation. */
|
|
7188
|
+
export declare type LinkConnectionCreateOrUpdateResponse = LinkConnectionResource;
|
|
7157
7189
|
|
|
7158
7190
|
/** Optional parameters. */
|
|
7159
|
-
export declare interface
|
|
7191
|
+
export declare interface LinkConnectionDeleteOptionalParams extends coreClient.OperationOptions {
|
|
7160
7192
|
}
|
|
7161
7193
|
|
|
7162
7194
|
export declare interface LinkConnectionDetailedStatus {
|
|
@@ -7172,7 +7204,7 @@ export declare interface LinkConnectionDetailedStatus {
|
|
|
7172
7204
|
startTime?: any;
|
|
7173
7205
|
/** Link connection stop time */
|
|
7174
7206
|
stopTime?: any;
|
|
7175
|
-
/** Link connection status */
|
|
7207
|
+
/** Link connection status, please refer to this [articles](https://learn.microsoft.com/azure/synapse-analytics/synapse-link/sql-database-synapse-link#monitoring) for details. */
|
|
7176
7208
|
status?: string;
|
|
7177
7209
|
/** Link connection's corresponding continuous run id */
|
|
7178
7210
|
continuousRunId?: string;
|
|
@@ -7196,11 +7228,11 @@ export declare interface LinkConnectionGetDetailedStatusOptionalParams extends c
|
|
|
7196
7228
|
export declare type LinkConnectionGetDetailedStatusResponse = LinkConnectionDetailedStatus;
|
|
7197
7229
|
|
|
7198
7230
|
/** Optional parameters. */
|
|
7199
|
-
export declare interface
|
|
7231
|
+
export declare interface LinkConnectionGetOptionalParams extends coreClient.OperationOptions {
|
|
7200
7232
|
}
|
|
7201
7233
|
|
|
7202
|
-
/** Contains response data for the
|
|
7203
|
-
export declare type
|
|
7234
|
+
/** Contains response data for the get operation. */
|
|
7235
|
+
export declare type LinkConnectionGetResponse = LinkConnectionResource;
|
|
7204
7236
|
|
|
7205
7237
|
export declare interface LinkConnectionLandingZone {
|
|
7206
7238
|
/** Linked service reference */
|
|
@@ -7214,18 +7246,18 @@ export declare interface LinkConnectionLandingZone {
|
|
|
7214
7246
|
}
|
|
7215
7247
|
|
|
7216
7248
|
/** Optional parameters. */
|
|
7217
|
-
export declare interface
|
|
7249
|
+
export declare interface LinkConnectionListByWorkspaceNextOptionalParams extends coreClient.OperationOptions {
|
|
7218
7250
|
}
|
|
7219
7251
|
|
|
7220
|
-
/** Contains response data for the
|
|
7221
|
-
export declare type
|
|
7252
|
+
/** Contains response data for the listByWorkspaceNext operation. */
|
|
7253
|
+
export declare type LinkConnectionListByWorkspaceNextResponse = LinkConnectionListResponse;
|
|
7222
7254
|
|
|
7223
7255
|
/** Optional parameters. */
|
|
7224
|
-
export declare interface
|
|
7256
|
+
export declare interface LinkConnectionListByWorkspaceOptionalParams extends coreClient.OperationOptions {
|
|
7225
7257
|
}
|
|
7226
7258
|
|
|
7227
|
-
/** Contains response data for the
|
|
7228
|
-
export declare type
|
|
7259
|
+
/** Contains response data for the listByWorkspace operation. */
|
|
7260
|
+
export declare type LinkConnectionListByWorkspaceResponse = LinkConnectionListResponse;
|
|
7229
7261
|
|
|
7230
7262
|
/** Optional parameters. */
|
|
7231
7263
|
export declare interface LinkConnectionListLinkTablesOptionalParams extends coreClient.OperationOptions {
|
|
@@ -7247,26 +7279,26 @@ export declare interface LinkConnectionOperations {
|
|
|
7247
7279
|
* List link connections
|
|
7248
7280
|
* @param options The options parameters.
|
|
7249
7281
|
*/
|
|
7250
|
-
|
|
7282
|
+
listByWorkspace(options?: LinkConnectionListByWorkspaceOptionalParams): PagedAsyncIterableIterator<LinkConnectionResource>;
|
|
7251
7283
|
/**
|
|
7252
7284
|
* Creates or updates a link connection
|
|
7253
7285
|
* @param linkConnectionName The link connection name
|
|
7254
7286
|
* @param linkConnection Link connection resource definition
|
|
7255
7287
|
* @param options The options parameters.
|
|
7256
7288
|
*/
|
|
7257
|
-
|
|
7289
|
+
createOrUpdate(linkConnectionName: string, linkConnection: LinkConnectionResource, options?: LinkConnectionCreateOrUpdateOptionalParams): Promise<LinkConnectionCreateOrUpdateResponse>;
|
|
7258
7290
|
/**
|
|
7259
7291
|
* Get a link connection
|
|
7260
7292
|
* @param linkConnectionName The link connection name
|
|
7261
7293
|
* @param options The options parameters.
|
|
7262
7294
|
*/
|
|
7263
|
-
|
|
7295
|
+
get(linkConnectionName: string, options?: LinkConnectionGetOptionalParams): Promise<LinkConnectionGetResponse>;
|
|
7264
7296
|
/**
|
|
7265
7297
|
* Delete a link connection
|
|
7266
7298
|
* @param linkConnectionName The link connection name
|
|
7267
7299
|
* @param options The options parameters.
|
|
7268
7300
|
*/
|
|
7269
|
-
|
|
7301
|
+
delete(linkConnectionName: string, options?: LinkConnectionDeleteOptionalParams): Promise<void>;
|
|
7270
7302
|
/**
|
|
7271
7303
|
* Edit tables for a link connection
|
|
7272
7304
|
* @param linkConnectionName The link connection name
|
|
@@ -7275,13 +7307,15 @@ export declare interface LinkConnectionOperations {
|
|
|
7275
7307
|
*/
|
|
7276
7308
|
editTables(linkConnectionName: string, editTablesRequest: EditTablesRequest, options?: LinkConnectionEditTablesOptionalParams): Promise<void>;
|
|
7277
7309
|
/**
|
|
7278
|
-
* Start a link connection
|
|
7310
|
+
* Start a link connection. It may take a few minutes from Starting to Running, monitor the status with
|
|
7311
|
+
* LinkConnection_GetDetailedStatus.
|
|
7279
7312
|
* @param linkConnectionName The link connection name
|
|
7280
7313
|
* @param options The options parameters.
|
|
7281
7314
|
*/
|
|
7282
7315
|
start(linkConnectionName: string, options?: LinkConnectionStartOptionalParams): Promise<void>;
|
|
7283
7316
|
/**
|
|
7284
|
-
* Stop a link connection
|
|
7317
|
+
* Stop a link connection. It may take a few minutes from Stopping to stopped, monitor the status with
|
|
7318
|
+
* LinkConnection_GetDetailedStatus.
|
|
7285
7319
|
* @param linkConnectionName The link connection name
|
|
7286
7320
|
* @param options The options parameters.
|
|
7287
7321
|
*/
|
|
@@ -7312,6 +7346,24 @@ export declare interface LinkConnectionOperations {
|
|
|
7312
7346
|
* @param options The options parameters.
|
|
7313
7347
|
*/
|
|
7314
7348
|
updateLandingZoneCredential(linkConnectionName: string, updateLandingZoneCredentialRequest: UpdateLandingZoneCredential, options?: LinkConnectionUpdateLandingZoneCredentialOptionalParams): Promise<void>;
|
|
7349
|
+
/**
|
|
7350
|
+
* Pause a link connection. It may take a few minutes from Pausing to Paused, monitor the status with
|
|
7351
|
+
* LinkConnection_GetDetailedStatus.
|
|
7352
|
+
* @param linkConnectionName The link connection name
|
|
7353
|
+
* @param options The options parameters.
|
|
7354
|
+
*/
|
|
7355
|
+
pause(linkConnectionName: string, options?: LinkConnectionPauseOptionalParams): Promise<void>;
|
|
7356
|
+
/**
|
|
7357
|
+
* Resume a link connection. It may take a few minutes from Resuming to Running, monitor the status
|
|
7358
|
+
* with LinkConnection_GetDetailedStatus.
|
|
7359
|
+
* @param linkConnectionName The link connection name
|
|
7360
|
+
* @param options The options parameters.
|
|
7361
|
+
*/
|
|
7362
|
+
resume(linkConnectionName: string, options?: LinkConnectionResumeOptionalParams): Promise<void>;
|
|
7363
|
+
}
|
|
7364
|
+
|
|
7365
|
+
/** Optional parameters. */
|
|
7366
|
+
export declare interface LinkConnectionPauseOptionalParams extends coreClient.OperationOptions {
|
|
7315
7367
|
}
|
|
7316
7368
|
|
|
7317
7369
|
export declare interface LinkConnectionQueryTableStatus {
|
|
@@ -7354,6 +7406,10 @@ export declare interface LinkConnectionResource {
|
|
|
7354
7406
|
description?: string;
|
|
7355
7407
|
}
|
|
7356
7408
|
|
|
7409
|
+
/** Optional parameters. */
|
|
7410
|
+
export declare interface LinkConnectionResumeOptionalParams extends coreClient.OperationOptions {
|
|
7411
|
+
}
|
|
7412
|
+
|
|
7357
7413
|
export declare interface LinkConnectionSourceDatabase {
|
|
7358
7414
|
/** Linked service reference */
|
|
7359
7415
|
linkedService?: LinkedServiceReference;
|
|
@@ -7421,7 +7477,7 @@ export declare type LinkedIntegrationRuntimeTypeUnion = LinkedIntegrationRuntime
|
|
|
7421
7477
|
/** The Azure Synapse nested object which contains the information and credential which can be used to connect with related store or compute resource. */
|
|
7422
7478
|
export declare interface LinkedService {
|
|
7423
7479
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7424
|
-
type: "AzureStorage" | "AzureBlobStorage" | "AzureTableStorage" | "AzureSqlDW" | "SqlServer" | "AmazonRdsForSqlServer" | "AzureSqlDatabase" | "AzureSqlMI" | "AzureBatch" | "AzureKeyVault" | "CosmosDb" | "Dynamics" | "DynamicsCrm" | "CommonDataServiceForApps" | "HDInsight" | "FileServer" | "AzureFileStorage" | "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";
|
|
7480
|
+
type: "AzureStorage" | "AzureBlobStorage" | "AzureTableStorage" | "AzureSqlDW" | "SqlServer" | "AmazonRdsForSqlServer" | "AzureSqlDatabase" | "AzureSqlMI" | "AzureBatch" | "AzureKeyVault" | "CosmosDb" | "Dynamics" | "DynamicsCrm" | "CommonDataServiceForApps" | "HDInsight" | "FileServer" | "AzureFileStorage" | "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" | "PowerBIWorkspace";
|
|
7425
7481
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
7426
7482
|
[property: string]: any;
|
|
7427
7483
|
/** The integration runtime reference. */
|
|
@@ -7575,7 +7631,7 @@ export declare interface LinkedServiceResource extends SubResource {
|
|
|
7575
7631
|
properties: LinkedServiceUnion;
|
|
7576
7632
|
}
|
|
7577
7633
|
|
|
7578
|
-
export declare type LinkedServiceUnion = LinkedService | AzureStorageLinkedService | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService | FileServerLinkedService | AzureFileStorageLinkedService | 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;
|
|
7634
|
+
export declare type LinkedServiceUnion = LinkedService | AzureStorageLinkedService | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService | FileServerLinkedService | AzureFileStorageLinkedService | 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 | PowerBIWorkspaceLinkedService;
|
|
7579
7635
|
|
|
7580
7636
|
export declare interface LinkTableListResponse {
|
|
7581
7637
|
/** List link table value */
|
|
@@ -7637,7 +7693,7 @@ export declare interface LinkTableResource {
|
|
|
7637
7693
|
export declare interface LinkTableStatus {
|
|
7638
7694
|
/** ID provided by the client */
|
|
7639
7695
|
id?: string;
|
|
7640
|
-
/** Link table status */
|
|
7696
|
+
/** Link table status, please refer to this [articles](https://learn.microsoft.com/azure/synapse-analytics/synapse-link/sql-database-synapse-link#monitoring) for details. */
|
|
7641
7697
|
status?: string;
|
|
7642
7698
|
/** Link table error message */
|
|
7643
7699
|
errorMessage?: string;
|
|
@@ -9505,6 +9561,16 @@ export declare interface PostgreSqlTableDataset extends Dataset {
|
|
|
9505
9561
|
schemaTypePropertiesSchema?: any;
|
|
9506
9562
|
}
|
|
9507
9563
|
|
|
9564
|
+
/** Power BI Workspace linked service. */
|
|
9565
|
+
export declare interface PowerBIWorkspaceLinkedService extends LinkedService {
|
|
9566
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
9567
|
+
type: "PowerBIWorkspace";
|
|
9568
|
+
/** The Power BI workspace id. */
|
|
9569
|
+
workspaceId: string;
|
|
9570
|
+
/** The tenant id to which the Power BI workspace belongs. */
|
|
9571
|
+
tenantId: string;
|
|
9572
|
+
}
|
|
9573
|
+
|
|
9508
9574
|
/**
|
|
9509
9575
|
* Defines values for PrestoAuthenticationType. \
|
|
9510
9576
|
* {@link KnownPrestoAuthenticationType} can be used interchangeably with PrestoAuthenticationType,
|
|
@@ -9922,6 +9988,8 @@ export declare interface RestServiceLinkedService extends LinkedService {
|
|
|
9922
9988
|
userName?: any;
|
|
9923
9989
|
/** The password used in Basic authentication type. */
|
|
9924
9990
|
password?: SecretBaseUnion;
|
|
9991
|
+
/** The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object). */
|
|
9992
|
+
authHeaders?: any;
|
|
9925
9993
|
/** The application's client ID used in AadServicePrincipal authentication type. */
|
|
9926
9994
|
servicePrincipalId?: any;
|
|
9927
9995
|
/** The application's key used in AadServicePrincipal authentication type. */
|
|
@@ -11119,7 +11187,7 @@ export declare interface SnowflakeSource extends CopySource {
|
|
|
11119
11187
|
/** Snowflake Sql query. Type: string (or Expression with resultType string). */
|
|
11120
11188
|
query?: any;
|
|
11121
11189
|
/** Snowflake export settings. */
|
|
11122
|
-
exportSettings
|
|
11190
|
+
exportSettings: SnowflakeExportCopyCommand;
|
|
11123
11191
|
}
|
|
11124
11192
|
|
|
11125
11193
|
/**
|
|
@@ -11337,6 +11405,14 @@ export declare interface SparkConfigurationOperations {
|
|
|
11337
11405
|
beginRenameSparkConfigurationAndWait(sparkConfigurationName: string, request: ArtifactRenameRequest, options?: SparkConfigurationRenameSparkConfigurationOptionalParams): Promise<void>;
|
|
11338
11406
|
}
|
|
11339
11407
|
|
|
11408
|
+
/** Spark configuration reference. */
|
|
11409
|
+
export declare interface SparkConfigurationParametrizationReference {
|
|
11410
|
+
/** Spark configuration reference type. */
|
|
11411
|
+
type: SparkConfigurationReferenceType;
|
|
11412
|
+
/** Reference spark configuration name. Type: string (or Expression with resultType string). */
|
|
11413
|
+
referenceName: any;
|
|
11414
|
+
}
|
|
11415
|
+
|
|
11340
11416
|
/** Spark configuration reference. */
|
|
11341
11417
|
export declare interface SparkConfigurationReference {
|
|
11342
11418
|
/** Spark configuration reference type. */
|
|
@@ -12627,10 +12703,16 @@ export declare interface SynapseSparkJobDefinitionActivity extends ExecutionActi
|
|
|
12627
12703
|
arguments?: any[];
|
|
12628
12704
|
/** 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). */
|
|
12629
12705
|
file?: any;
|
|
12706
|
+
/** Scanning subfolders from the root folder of the main definition file, these files will be added as reference files. The folders named 'jars', 'pyFiles', 'files' or 'archives' will be scanned, and the folders name are case sensitive. Type: boolean (or Expression with resultType boolean). */
|
|
12707
|
+
scanFolder?: any;
|
|
12630
12708
|
/** 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). */
|
|
12631
12709
|
className?: any;
|
|
12632
|
-
/** Additional files used for reference in the main definition file, which will override the 'files' of the spark job definition you provide. */
|
|
12710
|
+
/** (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. */
|
|
12633
12711
|
files?: any[];
|
|
12712
|
+
/** Additional python code files used for reference in the main definition file, which will override the 'pyFiles' of the spark job definition you provide. */
|
|
12713
|
+
pythonCodeReference?: any[];
|
|
12714
|
+
/** Additional files used for reference in the main definition file, which will override the 'jars' and 'files' of the spark job definition you provide. */
|
|
12715
|
+
filesV2?: any[];
|
|
12634
12716
|
/** 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. */
|
|
12635
12717
|
targetBigDataPool?: BigDataPoolParametrizationReference;
|
|
12636
12718
|
/** 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). */
|
|
@@ -12639,8 +12721,16 @@ export declare interface SynapseSparkJobDefinitionActivity extends ExecutionActi
|
|
|
12639
12721
|
conf?: any;
|
|
12640
12722
|
/** 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). */
|
|
12641
12723
|
driverSize?: any;
|
|
12642
|
-
/** Number of executors to launch for this job, which will override the 'numExecutors' of the spark job definition you provide. */
|
|
12643
|
-
numExecutors?:
|
|
12724
|
+
/** Number of executors to launch for this job, which will override the 'numExecutors' of the spark job definition you provide. Type: integer (or Expression with resultType integer). */
|
|
12725
|
+
numExecutors?: any;
|
|
12726
|
+
/** The type of the spark config. */
|
|
12727
|
+
configurationType?: ConfigurationType;
|
|
12728
|
+
/** The spark configuration of the spark job. */
|
|
12729
|
+
targetSparkConfiguration?: SparkConfigurationParametrizationReference;
|
|
12730
|
+
/** Spark configuration property. */
|
|
12731
|
+
sparkConfig?: {
|
|
12732
|
+
[propertyName: string]: any;
|
|
12733
|
+
};
|
|
12644
12734
|
}
|
|
12645
12735
|
|
|
12646
12736
|
/** Synapse spark job reference type. */
|