@azure/arm-datafactory 10.3.1-alpha.20220413.1 → 10.5.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 +18 -9
- package/dist/index.js +155 -1
- 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 +18 -1
- package/dist-esm/src/dataFactoryManagementClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +49 -2
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +9 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +131 -0
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/package.json +4 -4
- package/review/arm-datafactory.api.md +38 -2
- package/src/dataFactoryManagementClient.ts +25 -1
- package/src/models/index.ts +60 -0
- package/src/models/mappers.ts +154 -0
- package/types/arm-datafactory.d.ts +54 -2
- package/types/tsdoc-metadata.json +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "A generated SDK for DataFactoryManagementClient.",
|
|
6
|
-
"version": "10.
|
|
6
|
+
"version": "10.5.0",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=12.0.0"
|
|
9
9
|
},
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"@azure/core-lro": "^2.2.0",
|
|
12
12
|
"@azure/abort-controller": "^1.0.0",
|
|
13
13
|
"@azure/core-paging": "^1.2.0",
|
|
14
|
-
"@azure/core-client": "^1.
|
|
14
|
+
"@azure/core-client": "^1.5.0",
|
|
15
15
|
"@azure/core-auth": "^1.3.0",
|
|
16
|
-
"@azure/core-rest-pipeline": "^1.
|
|
16
|
+
"@azure/core-rest-pipeline": "^1.8.0",
|
|
17
17
|
"tslib": "^2.2.0"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"module": "./dist-esm/src/index.js",
|
|
29
29
|
"types": "./types/arm-datafactory.d.ts",
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@microsoft/api-extractor": "
|
|
31
|
+
"@microsoft/api-extractor": "7.18.11",
|
|
32
32
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
33
33
|
"@rollup/plugin-json": "^4.1.0",
|
|
34
34
|
"@rollup/plugin-multi-entry": "^4.1.0",
|
|
@@ -298,11 +298,26 @@ export type AppendVariableActivity = ControlActivity & {
|
|
|
298
298
|
value?: Record<string, unknown>;
|
|
299
299
|
};
|
|
300
300
|
|
|
301
|
+
// @public
|
|
302
|
+
export type AppFiguresLinkedService = LinkedService & {
|
|
303
|
+
type: "AppFigures";
|
|
304
|
+
userName: Record<string, unknown>;
|
|
305
|
+
password: SecretBaseUnion;
|
|
306
|
+
clientKey: SecretBaseUnion;
|
|
307
|
+
};
|
|
308
|
+
|
|
301
309
|
// @public
|
|
302
310
|
export interface ArmIdWrapper {
|
|
303
311
|
readonly id?: string;
|
|
304
312
|
}
|
|
305
313
|
|
|
314
|
+
// @public
|
|
315
|
+
export type AsanaLinkedService = LinkedService & {
|
|
316
|
+
type: "Asana";
|
|
317
|
+
apiToken: SecretBaseUnion;
|
|
318
|
+
encryptedCredential?: Record<string, unknown>;
|
|
319
|
+
};
|
|
320
|
+
|
|
306
321
|
// @public
|
|
307
322
|
export type AvroCompressionCodec = string;
|
|
308
323
|
|
|
@@ -1833,6 +1848,7 @@ export type DataFlowsGetResponse = DataFlowResource;
|
|
|
1833
1848
|
// @public
|
|
1834
1849
|
export type DataFlowSink = Transformation & {
|
|
1835
1850
|
schemaLinkedService?: LinkedServiceReference;
|
|
1851
|
+
rejectedDataLinkedService?: LinkedServiceReference;
|
|
1836
1852
|
};
|
|
1837
1853
|
|
|
1838
1854
|
// @public
|
|
@@ -2019,6 +2035,13 @@ export type DatasetStorageFormatUnion = DatasetStorageFormat | TextFormat | Json
|
|
|
2019
2035
|
// @public (undocumented)
|
|
2020
2036
|
export type DatasetUnion = Dataset | AmazonS3Dataset | AvroDataset | ExcelDataset | ParquetDataset | DelimitedTextDataset | JsonDataset | XmlDataset | OrcDataset | BinaryDataset | AzureBlobDataset | AzureTableDataset | AzureSqlTableDataset | AzureSqlMITableDataset | AzureSqlDWTableDataset | CassandraTableDataset | CustomDataset | CosmosDbSqlApiCollectionDataset | DocumentDbCollectionDataset | DynamicsEntityDataset | DynamicsCrmEntityDataset | CommonDataServiceForAppsEntityDataset | AzureDataLakeStoreDataset | AzureBlobFSDataset | Office365Dataset | FileShareDataset | MongoDbCollectionDataset | MongoDbAtlasCollectionDataset | MongoDbV2CollectionDataset | CosmosDbMongoDbApiCollectionDataset | ODataResourceDataset | OracleTableDataset | AmazonRdsForOracleTableDataset | TeradataTableDataset | AzureMySqlTableDataset | AmazonRedshiftTableDataset | Db2TableDataset | RelationalTableDataset | InformixTableDataset | OdbcTableDataset | MySqlTableDataset | PostgreSqlTableDataset | MicrosoftAccessTableDataset | SalesforceObjectDataset | SalesforceServiceCloudObjectDataset | SybaseTableDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SapHanaTableDataset | SapOpenHubTableDataset | SqlServerTableDataset | AmazonRdsForSqlServerTableDataset | RestResourceDataset | SapTableResourceDataset | WebTableDataset | AzureSearchIndexDataset | HttpDataset | AmazonMWSObjectDataset | AzurePostgreSqlTableDataset | ConcurObjectDataset | CouchbaseTableDataset | DrillTableDataset | EloquaObjectDataset | GoogleBigQueryObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HubspotObjectDataset | ImpalaObjectDataset | JiraObjectDataset | MagentoObjectDataset | MariaDBTableDataset | AzureMariaDBTableDataset | MarketoObjectDataset | PaypalObjectDataset | PhoenixObjectDataset | PrestoObjectDataset | QuickBooksObjectDataset | ServiceNowObjectDataset | ShopifyObjectDataset | SparkObjectDataset | SquareObjectDataset | XeroObjectDataset | ZohoObjectDataset | NetezzaTableDataset | VerticaTableDataset | SalesforceMarketingCloudObjectDataset | ResponsysObjectDataset | DynamicsAXResourceDataset | OracleServiceCloudObjectDataset | AzureDataExplorerTableDataset | GoogleAdWordsObjectDataset | SnowflakeDataset | SharePointOnlineListResourceDataset | AzureDatabricksDeltaLakeDataset;
|
|
2021
2037
|
|
|
2038
|
+
// @public
|
|
2039
|
+
export type DataworldLinkedService = LinkedService & {
|
|
2040
|
+
type: "Dataworld";
|
|
2041
|
+
apiToken: SecretBaseUnion;
|
|
2042
|
+
encryptedCredential?: Record<string, unknown>;
|
|
2043
|
+
};
|
|
2044
|
+
|
|
2022
2045
|
// @public
|
|
2023
2046
|
export type DayOfWeek = "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday";
|
|
2024
2047
|
|
|
@@ -5076,7 +5099,7 @@ export interface LinkedService {
|
|
|
5076
5099
|
parameters?: {
|
|
5077
5100
|
[propertyName: string]: ParameterSpecification;
|
|
5078
5101
|
};
|
|
5079
|
-
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" | "RestService" | "AmazonS3" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "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";
|
|
5102
|
+
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" | "RestService" | "AmazonS3" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "Dataworld" | "AppFigures" | "Asana" | "Twilio" | "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";
|
|
5080
5103
|
}
|
|
5081
5104
|
|
|
5082
5105
|
// @public
|
|
@@ -5147,7 +5170,7 @@ export interface LinkedServicesListByFactoryOptionalParams extends coreClient.Op
|
|
|
5147
5170
|
export type LinkedServicesListByFactoryResponse = LinkedServiceListResponse;
|
|
5148
5171
|
|
|
5149
5172
|
// @public (undocumented)
|
|
5150
|
-
export 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 | RestServiceLinkedService | AmazonS3LinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | 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;
|
|
5173
|
+
export 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 | RestServiceLinkedService | AmazonS3LinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | 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;
|
|
5151
5174
|
|
|
5152
5175
|
// @public
|
|
5153
5176
|
export interface LogLocationSettings {
|
|
@@ -6308,6 +6331,11 @@ export type PrestoSource = TabularSource & {
|
|
|
6308
6331
|
query?: Record<string, unknown>;
|
|
6309
6332
|
};
|
|
6310
6333
|
|
|
6334
|
+
// @public
|
|
6335
|
+
export interface PrivateEndpoint {
|
|
6336
|
+
id?: string;
|
|
6337
|
+
}
|
|
6338
|
+
|
|
6311
6339
|
// @public
|
|
6312
6340
|
export interface PrivateEndpointConnection {
|
|
6313
6341
|
createOrUpdate(resourceGroupName: string, factoryName: string, privateEndpointConnectionName: string, privateEndpointWrapper: PrivateLinkConnectionApprovalRequestResource, options?: PrivateEndpointConnectionCreateOrUpdateOptionalParams): Promise<PrivateEndpointConnectionCreateOrUpdateResponse>;
|
|
@@ -6367,6 +6395,7 @@ export type PrivateEndPointConnectionsListByFactoryResponse = PrivateEndpointCon
|
|
|
6367
6395
|
|
|
6368
6396
|
// @public
|
|
6369
6397
|
export interface PrivateLinkConnectionApprovalRequest {
|
|
6398
|
+
privateEndpoint?: PrivateEndpoint;
|
|
6370
6399
|
privateLinkServiceConnectionState?: PrivateLinkConnectionState;
|
|
6371
6400
|
}
|
|
6372
6401
|
|
|
@@ -8135,6 +8164,13 @@ export type TumblingWindowTriggerDependencyReference = TriggerDependencyReferenc
|
|
|
8135
8164
|
size?: string;
|
|
8136
8165
|
};
|
|
8137
8166
|
|
|
8167
|
+
// @public
|
|
8168
|
+
export type TwilioLinkedService = LinkedService & {
|
|
8169
|
+
type: "Twilio";
|
|
8170
|
+
userName: Record<string, unknown>;
|
|
8171
|
+
password: SecretBaseUnion;
|
|
8172
|
+
};
|
|
8173
|
+
|
|
8138
8174
|
// @public
|
|
8139
8175
|
export interface TypeConversionSettings {
|
|
8140
8176
|
allowDataTruncation?: Record<string, unknown>;
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
import * as coreClient from "@azure/core-client";
|
|
10
|
+
import * as coreRestPipeline from "@azure/core-rest-pipeline";
|
|
10
11
|
import * as coreAuth from "@azure/core-auth";
|
|
11
12
|
import {
|
|
12
13
|
OperationsImpl,
|
|
@@ -86,7 +87,7 @@ export class DataFactoryManagementClient extends coreClient.ServiceClient {
|
|
|
86
87
|
credential: credentials
|
|
87
88
|
};
|
|
88
89
|
|
|
89
|
-
const packageDetails = `azsdk-js-arm-datafactory/10.
|
|
90
|
+
const packageDetails = `azsdk-js-arm-datafactory/10.5.0`;
|
|
90
91
|
const userAgentPrefix =
|
|
91
92
|
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
92
93
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
@@ -105,6 +106,29 @@ export class DataFactoryManagementClient extends coreClient.ServiceClient {
|
|
|
105
106
|
options.endpoint ?? options.baseUri ?? "https://management.azure.com"
|
|
106
107
|
};
|
|
107
108
|
super(optionsWithDefaults);
|
|
109
|
+
|
|
110
|
+
if (options?.pipeline && options.pipeline.getOrderedPolicies().length > 0) {
|
|
111
|
+
const pipelinePolicies: coreRestPipeline.PipelinePolicy[] = options.pipeline.getOrderedPolicies();
|
|
112
|
+
const bearerTokenAuthenticationPolicyFound = pipelinePolicies.some(
|
|
113
|
+
(pipelinePolicy) =>
|
|
114
|
+
pipelinePolicy.name ===
|
|
115
|
+
coreRestPipeline.bearerTokenAuthenticationPolicyName
|
|
116
|
+
);
|
|
117
|
+
if (!bearerTokenAuthenticationPolicyFound) {
|
|
118
|
+
this.pipeline.removePolicy({
|
|
119
|
+
name: coreRestPipeline.bearerTokenAuthenticationPolicyName
|
|
120
|
+
});
|
|
121
|
+
this.pipeline.addPolicy(
|
|
122
|
+
coreRestPipeline.bearerTokenAuthenticationPolicy({
|
|
123
|
+
scopes: `${optionsWithDefaults.baseUri}/.default`,
|
|
124
|
+
challengeCallbacks: {
|
|
125
|
+
authorizeRequestOnChallenge:
|
|
126
|
+
coreClient.authorizeRequestOnClaimChallenge
|
|
127
|
+
}
|
|
128
|
+
})
|
|
129
|
+
);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
108
132
|
// Parameter assignments
|
|
109
133
|
this.subscriptionId = subscriptionId;
|
|
110
134
|
|
package/src/models/index.ts
CHANGED
|
@@ -83,6 +83,10 @@ export type LinkedServiceUnion =
|
|
|
83
83
|
| QuickbaseLinkedService
|
|
84
84
|
| SmartsheetLinkedService
|
|
85
85
|
| ZendeskLinkedService
|
|
86
|
+
| DataworldLinkedService
|
|
87
|
+
| AppFiguresLinkedService
|
|
88
|
+
| AsanaLinkedService
|
|
89
|
+
| TwilioLinkedService
|
|
86
90
|
| AmazonRedshiftLinkedService
|
|
87
91
|
| CustomDataSourceLinkedService
|
|
88
92
|
| AzureSearchLinkedService
|
|
@@ -1283,6 +1287,10 @@ export interface LinkedService {
|
|
|
1283
1287
|
| "Quickbase"
|
|
1284
1288
|
| "Smartsheet"
|
|
1285
1289
|
| "Zendesk"
|
|
1290
|
+
| "Dataworld"
|
|
1291
|
+
| "AppFigures"
|
|
1292
|
+
| "Asana"
|
|
1293
|
+
| "Twilio"
|
|
1286
1294
|
| "AmazonRedshift"
|
|
1287
1295
|
| "CustomDataSource"
|
|
1288
1296
|
| "AzureSearch"
|
|
@@ -2253,6 +2261,14 @@ export interface PrivateLinkConnectionState {
|
|
|
2253
2261
|
export interface PrivateLinkConnectionApprovalRequest {
|
|
2254
2262
|
/** The state of a private link connection */
|
|
2255
2263
|
privateLinkServiceConnectionState?: PrivateLinkConnectionState;
|
|
2264
|
+
/** The resource of private endpoint. */
|
|
2265
|
+
privateEndpoint?: PrivateEndpoint;
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2268
|
+
/** Private endpoint which a connection belongs to. */
|
|
2269
|
+
export interface PrivateEndpoint {
|
|
2270
|
+
/** The resource Id for private endpoint */
|
|
2271
|
+
id?: string;
|
|
2256
2272
|
}
|
|
2257
2273
|
|
|
2258
2274
|
/** Wrapper for a collection of private link resources */
|
|
@@ -4985,6 +5001,48 @@ export type ZendeskLinkedService = LinkedService & {
|
|
|
4985
5001
|
encryptedCredential?: Record<string, unknown>;
|
|
4986
5002
|
};
|
|
4987
5003
|
|
|
5004
|
+
/** Linked service for Dataworld. */
|
|
5005
|
+
export type DataworldLinkedService = LinkedService & {
|
|
5006
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
5007
|
+
type: "Dataworld";
|
|
5008
|
+
/** The api token for the Dataworld source. */
|
|
5009
|
+
apiToken: SecretBaseUnion;
|
|
5010
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
|
|
5011
|
+
encryptedCredential?: Record<string, unknown>;
|
|
5012
|
+
};
|
|
5013
|
+
|
|
5014
|
+
/** Linked service for AppFigures. */
|
|
5015
|
+
export type AppFiguresLinkedService = LinkedService & {
|
|
5016
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
5017
|
+
type: "AppFigures";
|
|
5018
|
+
/** The username of the Appfigures source. */
|
|
5019
|
+
userName: Record<string, unknown>;
|
|
5020
|
+
/** The password of the AppFigures source. */
|
|
5021
|
+
password: SecretBaseUnion;
|
|
5022
|
+
/** The client key for the AppFigures source. */
|
|
5023
|
+
clientKey: SecretBaseUnion;
|
|
5024
|
+
};
|
|
5025
|
+
|
|
5026
|
+
/** Linked service for Asana. */
|
|
5027
|
+
export type AsanaLinkedService = LinkedService & {
|
|
5028
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
5029
|
+
type: "Asana";
|
|
5030
|
+
/** The api token for the Asana source. */
|
|
5031
|
+
apiToken: SecretBaseUnion;
|
|
5032
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
|
|
5033
|
+
encryptedCredential?: Record<string, unknown>;
|
|
5034
|
+
};
|
|
5035
|
+
|
|
5036
|
+
/** Linked service for Twilio. */
|
|
5037
|
+
export type TwilioLinkedService = LinkedService & {
|
|
5038
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
5039
|
+
type: "Twilio";
|
|
5040
|
+
/** The Account SID of Twilio service. */
|
|
5041
|
+
userName: Record<string, unknown>;
|
|
5042
|
+
/** The auth token of Twilio service. */
|
|
5043
|
+
password: SecretBaseUnion;
|
|
5044
|
+
};
|
|
5045
|
+
|
|
4988
5046
|
/** Linked service for Amazon Redshift. */
|
|
4989
5047
|
export type AmazonRedshiftLinkedService = LinkedService & {
|
|
4990
5048
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
@@ -7368,6 +7426,8 @@ export type DataFlowSource = Transformation & {
|
|
|
7368
7426
|
export type DataFlowSink = Transformation & {
|
|
7369
7427
|
/** Schema linked service reference. */
|
|
7370
7428
|
schemaLinkedService?: LinkedServiceReference;
|
|
7429
|
+
/** Rejected data linked service reference. */
|
|
7430
|
+
rejectedDataLinkedService?: LinkedServiceReference;
|
|
7371
7431
|
};
|
|
7372
7432
|
|
|
7373
7433
|
/** The location of azure blob dataset. */
|
package/src/models/mappers.ts
CHANGED
|
@@ -3641,6 +3641,28 @@ export const PrivateLinkConnectionApprovalRequest: coreClient.CompositeMapper =
|
|
|
3641
3641
|
name: "Composite",
|
|
3642
3642
|
className: "PrivateLinkConnectionState"
|
|
3643
3643
|
}
|
|
3644
|
+
},
|
|
3645
|
+
privateEndpoint: {
|
|
3646
|
+
serializedName: "privateEndpoint",
|
|
3647
|
+
type: {
|
|
3648
|
+
name: "Composite",
|
|
3649
|
+
className: "PrivateEndpoint"
|
|
3650
|
+
}
|
|
3651
|
+
}
|
|
3652
|
+
}
|
|
3653
|
+
}
|
|
3654
|
+
};
|
|
3655
|
+
|
|
3656
|
+
export const PrivateEndpoint: coreClient.CompositeMapper = {
|
|
3657
|
+
type: {
|
|
3658
|
+
name: "Composite",
|
|
3659
|
+
className: "PrivateEndpoint",
|
|
3660
|
+
modelProperties: {
|
|
3661
|
+
id: {
|
|
3662
|
+
serializedName: "id",
|
|
3663
|
+
type: {
|
|
3664
|
+
name: "String"
|
|
3665
|
+
}
|
|
3644
3666
|
}
|
|
3645
3667
|
}
|
|
3646
3668
|
}
|
|
@@ -11163,6 +11185,127 @@ export const ZendeskLinkedService: coreClient.CompositeMapper = {
|
|
|
11163
11185
|
}
|
|
11164
11186
|
};
|
|
11165
11187
|
|
|
11188
|
+
export const DataworldLinkedService: coreClient.CompositeMapper = {
|
|
11189
|
+
serializedName: "Dataworld",
|
|
11190
|
+
type: {
|
|
11191
|
+
name: "Composite",
|
|
11192
|
+
className: "DataworldLinkedService",
|
|
11193
|
+
uberParent: "LinkedService",
|
|
11194
|
+
additionalProperties: { type: { name: "Object" } },
|
|
11195
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
11196
|
+
modelProperties: {
|
|
11197
|
+
...LinkedService.type.modelProperties,
|
|
11198
|
+
apiToken: {
|
|
11199
|
+
serializedName: "typeProperties.apiToken",
|
|
11200
|
+
type: {
|
|
11201
|
+
name: "Composite",
|
|
11202
|
+
className: "SecretBase"
|
|
11203
|
+
}
|
|
11204
|
+
},
|
|
11205
|
+
encryptedCredential: {
|
|
11206
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
11207
|
+
type: {
|
|
11208
|
+
name: "Dictionary",
|
|
11209
|
+
value: { type: { name: "any" } }
|
|
11210
|
+
}
|
|
11211
|
+
}
|
|
11212
|
+
}
|
|
11213
|
+
}
|
|
11214
|
+
};
|
|
11215
|
+
|
|
11216
|
+
export const AppFiguresLinkedService: coreClient.CompositeMapper = {
|
|
11217
|
+
serializedName: "AppFigures",
|
|
11218
|
+
type: {
|
|
11219
|
+
name: "Composite",
|
|
11220
|
+
className: "AppFiguresLinkedService",
|
|
11221
|
+
uberParent: "LinkedService",
|
|
11222
|
+
additionalProperties: { type: { name: "Object" } },
|
|
11223
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
11224
|
+
modelProperties: {
|
|
11225
|
+
...LinkedService.type.modelProperties,
|
|
11226
|
+
userName: {
|
|
11227
|
+
serializedName: "typeProperties.userName",
|
|
11228
|
+
required: true,
|
|
11229
|
+
type: {
|
|
11230
|
+
name: "Dictionary",
|
|
11231
|
+
value: { type: { name: "any" } }
|
|
11232
|
+
}
|
|
11233
|
+
},
|
|
11234
|
+
password: {
|
|
11235
|
+
serializedName: "typeProperties.password",
|
|
11236
|
+
type: {
|
|
11237
|
+
name: "Composite",
|
|
11238
|
+
className: "SecretBase"
|
|
11239
|
+
}
|
|
11240
|
+
},
|
|
11241
|
+
clientKey: {
|
|
11242
|
+
serializedName: "typeProperties.clientKey",
|
|
11243
|
+
type: {
|
|
11244
|
+
name: "Composite",
|
|
11245
|
+
className: "SecretBase"
|
|
11246
|
+
}
|
|
11247
|
+
}
|
|
11248
|
+
}
|
|
11249
|
+
}
|
|
11250
|
+
};
|
|
11251
|
+
|
|
11252
|
+
export const AsanaLinkedService: coreClient.CompositeMapper = {
|
|
11253
|
+
serializedName: "Asana",
|
|
11254
|
+
type: {
|
|
11255
|
+
name: "Composite",
|
|
11256
|
+
className: "AsanaLinkedService",
|
|
11257
|
+
uberParent: "LinkedService",
|
|
11258
|
+
additionalProperties: { type: { name: "Object" } },
|
|
11259
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
11260
|
+
modelProperties: {
|
|
11261
|
+
...LinkedService.type.modelProperties,
|
|
11262
|
+
apiToken: {
|
|
11263
|
+
serializedName: "typeProperties.apiToken",
|
|
11264
|
+
type: {
|
|
11265
|
+
name: "Composite",
|
|
11266
|
+
className: "SecretBase"
|
|
11267
|
+
}
|
|
11268
|
+
},
|
|
11269
|
+
encryptedCredential: {
|
|
11270
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
11271
|
+
type: {
|
|
11272
|
+
name: "Dictionary",
|
|
11273
|
+
value: { type: { name: "any" } }
|
|
11274
|
+
}
|
|
11275
|
+
}
|
|
11276
|
+
}
|
|
11277
|
+
}
|
|
11278
|
+
};
|
|
11279
|
+
|
|
11280
|
+
export const TwilioLinkedService: coreClient.CompositeMapper = {
|
|
11281
|
+
serializedName: "Twilio",
|
|
11282
|
+
type: {
|
|
11283
|
+
name: "Composite",
|
|
11284
|
+
className: "TwilioLinkedService",
|
|
11285
|
+
uberParent: "LinkedService",
|
|
11286
|
+
additionalProperties: { type: { name: "Object" } },
|
|
11287
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
11288
|
+
modelProperties: {
|
|
11289
|
+
...LinkedService.type.modelProperties,
|
|
11290
|
+
userName: {
|
|
11291
|
+
serializedName: "typeProperties.userName",
|
|
11292
|
+
required: true,
|
|
11293
|
+
type: {
|
|
11294
|
+
name: "Dictionary",
|
|
11295
|
+
value: { type: { name: "any" } }
|
|
11296
|
+
}
|
|
11297
|
+
},
|
|
11298
|
+
password: {
|
|
11299
|
+
serializedName: "typeProperties.password",
|
|
11300
|
+
type: {
|
|
11301
|
+
name: "Composite",
|
|
11302
|
+
className: "SecretBase"
|
|
11303
|
+
}
|
|
11304
|
+
}
|
|
11305
|
+
}
|
|
11306
|
+
}
|
|
11307
|
+
};
|
|
11308
|
+
|
|
11166
11309
|
export const AmazonRedshiftLinkedService: coreClient.CompositeMapper = {
|
|
11167
11310
|
serializedName: "AmazonRedshift",
|
|
11168
11311
|
type: {
|
|
@@ -18351,6 +18494,13 @@ export const DataFlowSink: coreClient.CompositeMapper = {
|
|
|
18351
18494
|
name: "Composite",
|
|
18352
18495
|
className: "LinkedServiceReference"
|
|
18353
18496
|
}
|
|
18497
|
+
},
|
|
18498
|
+
rejectedDataLinkedService: {
|
|
18499
|
+
serializedName: "rejectedDataLinkedService",
|
|
18500
|
+
type: {
|
|
18501
|
+
name: "Composite",
|
|
18502
|
+
className: "LinkedServiceReference"
|
|
18503
|
+
}
|
|
18354
18504
|
}
|
|
18355
18505
|
}
|
|
18356
18506
|
}
|
|
@@ -27400,6 +27550,10 @@ export let discriminators = {
|
|
|
27400
27550
|
"LinkedService.Quickbase": QuickbaseLinkedService,
|
|
27401
27551
|
"LinkedService.Smartsheet": SmartsheetLinkedService,
|
|
27402
27552
|
"LinkedService.Zendesk": ZendeskLinkedService,
|
|
27553
|
+
"LinkedService.Dataworld": DataworldLinkedService,
|
|
27554
|
+
"LinkedService.AppFigures": AppFiguresLinkedService,
|
|
27555
|
+
"LinkedService.Asana": AsanaLinkedService,
|
|
27556
|
+
"LinkedService.Twilio": TwilioLinkedService,
|
|
27403
27557
|
"LinkedService.AmazonRedshift": AmazonRedshiftLinkedService,
|
|
27404
27558
|
"LinkedService.CustomDataSource": CustomDataSourceLinkedService,
|
|
27405
27559
|
"LinkedService.AzureSearch": AzureSearchLinkedService,
|
|
@@ -498,12 +498,34 @@ export declare type AppendVariableActivity = ControlActivity & {
|
|
|
498
498
|
value?: Record<string, unknown>;
|
|
499
499
|
};
|
|
500
500
|
|
|
501
|
+
/** Linked service for AppFigures. */
|
|
502
|
+
export declare type AppFiguresLinkedService = LinkedService & {
|
|
503
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
504
|
+
type: "AppFigures";
|
|
505
|
+
/** The username of the Appfigures source. */
|
|
506
|
+
userName: Record<string, unknown>;
|
|
507
|
+
/** The password of the AppFigures source. */
|
|
508
|
+
password: SecretBaseUnion;
|
|
509
|
+
/** The client key for the AppFigures source. */
|
|
510
|
+
clientKey: SecretBaseUnion;
|
|
511
|
+
};
|
|
512
|
+
|
|
501
513
|
/** A wrapper for an ARM resource id */
|
|
502
514
|
export declare interface ArmIdWrapper {
|
|
503
515
|
/** NOTE: This property will not be serialized. It can only be populated by the server. */
|
|
504
516
|
readonly id?: string;
|
|
505
517
|
}
|
|
506
518
|
|
|
519
|
+
/** Linked service for Asana. */
|
|
520
|
+
export declare type AsanaLinkedService = LinkedService & {
|
|
521
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
522
|
+
type: "Asana";
|
|
523
|
+
/** The api token for the Asana source. */
|
|
524
|
+
apiToken: SecretBaseUnion;
|
|
525
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
|
|
526
|
+
encryptedCredential?: Record<string, unknown>;
|
|
527
|
+
};
|
|
528
|
+
|
|
507
529
|
/**
|
|
508
530
|
* Defines values for AvroCompressionCodec. \
|
|
509
531
|
* {@link KnownAvroCompressionCodec} can be used interchangeably with AvroCompressionCodec,
|
|
@@ -2903,6 +2925,8 @@ export declare type DataFlowsGetResponse = DataFlowResource;
|
|
|
2903
2925
|
export declare type DataFlowSink = Transformation & {
|
|
2904
2926
|
/** Schema linked service reference. */
|
|
2905
2927
|
schemaLinkedService?: LinkedServiceReference;
|
|
2928
|
+
/** Rejected data linked service reference. */
|
|
2929
|
+
rejectedDataLinkedService?: LinkedServiceReference;
|
|
2906
2930
|
};
|
|
2907
2931
|
|
|
2908
2932
|
/** Optional parameters. */
|
|
@@ -3169,6 +3193,16 @@ export declare type DatasetStorageFormatUnion = DatasetStorageFormat | TextForma
|
|
|
3169
3193
|
|
|
3170
3194
|
export declare type DatasetUnion = Dataset | AmazonS3Dataset | AvroDataset | ExcelDataset | ParquetDataset | DelimitedTextDataset | JsonDataset | XmlDataset | OrcDataset | BinaryDataset | AzureBlobDataset | AzureTableDataset | AzureSqlTableDataset | AzureSqlMITableDataset | AzureSqlDWTableDataset | CassandraTableDataset | CustomDataset | CosmosDbSqlApiCollectionDataset | DocumentDbCollectionDataset | DynamicsEntityDataset | DynamicsCrmEntityDataset | CommonDataServiceForAppsEntityDataset | AzureDataLakeStoreDataset | AzureBlobFSDataset | Office365Dataset | FileShareDataset | MongoDbCollectionDataset | MongoDbAtlasCollectionDataset | MongoDbV2CollectionDataset | CosmosDbMongoDbApiCollectionDataset | ODataResourceDataset | OracleTableDataset | AmazonRdsForOracleTableDataset | TeradataTableDataset | AzureMySqlTableDataset | AmazonRedshiftTableDataset | Db2TableDataset | RelationalTableDataset | InformixTableDataset | OdbcTableDataset | MySqlTableDataset | PostgreSqlTableDataset | MicrosoftAccessTableDataset | SalesforceObjectDataset | SalesforceServiceCloudObjectDataset | SybaseTableDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SapHanaTableDataset | SapOpenHubTableDataset | SqlServerTableDataset | AmazonRdsForSqlServerTableDataset | RestResourceDataset | SapTableResourceDataset | WebTableDataset | AzureSearchIndexDataset | HttpDataset | AmazonMWSObjectDataset | AzurePostgreSqlTableDataset | ConcurObjectDataset | CouchbaseTableDataset | DrillTableDataset | EloquaObjectDataset | GoogleBigQueryObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HubspotObjectDataset | ImpalaObjectDataset | JiraObjectDataset | MagentoObjectDataset | MariaDBTableDataset | AzureMariaDBTableDataset | MarketoObjectDataset | PaypalObjectDataset | PhoenixObjectDataset | PrestoObjectDataset | QuickBooksObjectDataset | ServiceNowObjectDataset | ShopifyObjectDataset | SparkObjectDataset | SquareObjectDataset | XeroObjectDataset | ZohoObjectDataset | NetezzaTableDataset | VerticaTableDataset | SalesforceMarketingCloudObjectDataset | ResponsysObjectDataset | DynamicsAXResourceDataset | OracleServiceCloudObjectDataset | AzureDataExplorerTableDataset | GoogleAdWordsObjectDataset | SnowflakeDataset | SharePointOnlineListResourceDataset | AzureDatabricksDeltaLakeDataset;
|
|
3171
3195
|
|
|
3196
|
+
/** Linked service for Dataworld. */
|
|
3197
|
+
export declare type DataworldLinkedService = LinkedService & {
|
|
3198
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3199
|
+
type: "Dataworld";
|
|
3200
|
+
/** The api token for the Dataworld source. */
|
|
3201
|
+
apiToken: SecretBaseUnion;
|
|
3202
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
|
|
3203
|
+
encryptedCredential?: Record<string, unknown>;
|
|
3204
|
+
};
|
|
3205
|
+
|
|
3172
3206
|
/** Defines values for DayOfWeek. */
|
|
3173
3207
|
export declare type DayOfWeek = "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday";
|
|
3174
3208
|
|
|
@@ -7268,7 +7302,7 @@ export declare type LinkedIntegrationRuntimeTypeUnion = LinkedIntegrationRuntime
|
|
|
7268
7302
|
/** The Azure Data Factory nested object which contains the information and credential which can be used to connect with related store or compute resource. */
|
|
7269
7303
|
export declare interface LinkedService {
|
|
7270
7304
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
7271
|
-
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" | "RestService" | "AmazonS3" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "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";
|
|
7305
|
+
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" | "RestService" | "AmazonS3" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "Dataworld" | "AppFigures" | "Asana" | "Twilio" | "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";
|
|
7272
7306
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
7273
7307
|
[property: string]: any;
|
|
7274
7308
|
/** The integration runtime reference. */
|
|
@@ -7387,7 +7421,7 @@ export declare interface LinkedServicesListByFactoryOptionalParams extends coreC
|
|
|
7387
7421
|
/** Contains response data for the listByFactory operation. */
|
|
7388
7422
|
export declare type LinkedServicesListByFactoryResponse = LinkedServiceListResponse;
|
|
7389
7423
|
|
|
7390
|
-
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 | RestServiceLinkedService | AmazonS3LinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | 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;
|
|
7424
|
+
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 | RestServiceLinkedService | AmazonS3LinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | 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;
|
|
7391
7425
|
|
|
7392
7426
|
/** Log location settings. */
|
|
7393
7427
|
export declare interface LogLocationSettings {
|
|
@@ -9344,6 +9378,12 @@ export declare type PrestoSource = TabularSource & {
|
|
|
9344
9378
|
query?: Record<string, unknown>;
|
|
9345
9379
|
};
|
|
9346
9380
|
|
|
9381
|
+
/** Private endpoint which a connection belongs to. */
|
|
9382
|
+
export declare interface PrivateEndpoint {
|
|
9383
|
+
/** The resource Id for private endpoint */
|
|
9384
|
+
id?: string;
|
|
9385
|
+
}
|
|
9386
|
+
|
|
9347
9387
|
/** Interface representing a PrivateEndpointConnection. */
|
|
9348
9388
|
export declare interface PrivateEndpointConnection {
|
|
9349
9389
|
/**
|
|
@@ -9438,6 +9478,8 @@ export declare type PrivateEndPointConnectionsListByFactoryResponse = PrivateEnd
|
|
|
9438
9478
|
export declare interface PrivateLinkConnectionApprovalRequest {
|
|
9439
9479
|
/** The state of a private link connection */
|
|
9440
9480
|
privateLinkServiceConnectionState?: PrivateLinkConnectionState;
|
|
9481
|
+
/** The resource of private endpoint. */
|
|
9482
|
+
privateEndpoint?: PrivateEndpoint;
|
|
9441
9483
|
}
|
|
9442
9484
|
|
|
9443
9485
|
/** Private Endpoint Connection Approval ARM resource. */
|
|
@@ -12620,6 +12662,16 @@ export declare type TumblingWindowTriggerDependencyReference = TriggerDependency
|
|
|
12620
12662
|
size?: string;
|
|
12621
12663
|
};
|
|
12622
12664
|
|
|
12665
|
+
/** Linked service for Twilio. */
|
|
12666
|
+
export declare type TwilioLinkedService = LinkedService & {
|
|
12667
|
+
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
12668
|
+
type: "Twilio";
|
|
12669
|
+
/** The Account SID of Twilio service. */
|
|
12670
|
+
userName: Record<string, unknown>;
|
|
12671
|
+
/** The auth token of Twilio service. */
|
|
12672
|
+
password: SecretBaseUnion;
|
|
12673
|
+
};
|
|
12674
|
+
|
|
12623
12675
|
/** Type conversion settings */
|
|
12624
12676
|
export declare interface TypeConversionSettings {
|
|
12625
12677
|
/** Whether to allow data truncation when converting the data. Type: boolean (or Expression with resultType boolean). */
|